~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavformat/vocenc.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
}
91
91
 
92
92
AVOutputFormat ff_voc_muxer = {
93
 
    "voc",
94
 
    NULL_IF_CONFIG_SMALL("Creative Voice file format"),
95
 
    "audio/x-voc",
96
 
    "voc",
97
 
    sizeof(VocEncContext),
98
 
    CODEC_ID_PCM_U8,
99
 
    CODEC_ID_NONE,
100
 
    voc_write_header,
101
 
    voc_write_packet,
102
 
    voc_write_trailer,
 
93
    .name              = "voc",
 
94
    .long_name         = NULL_IF_CONFIG_SMALL("Creative Voice file format"),
 
95
    .mime_type         = "audio/x-voc",
 
96
    .extensions        = "voc",
 
97
    .priv_data_size    = sizeof(VocEncContext),
 
98
    .audio_codec       = CODEC_ID_PCM_U8,
 
99
    .video_codec       = CODEC_ID_NONE,
 
100
    .write_header      = voc_write_header,
 
101
    .write_packet      = voc_write_packet,
 
102
    .write_trailer     = voc_write_trailer,
103
103
    .codec_tag=(const AVCodecTag* const []){ff_voc_codec_tags, 0},
104
104
};