Mercurial > libavformat.hg
diff nsvdec.c @ 1677:2a85c82b8538 libavformat
add codec_id <-> codec_tag tables to AVIn/OutputFormat
| author | michael |
|---|---|
| date | Sun, 21 Jan 2007 01:39:17 +0000 |
| parents | 6f13826a5037 |
| children | 70b741fa63eb |
line wrap: on
line diff
--- a/nsvdec.c Sat Jan 20 23:09:27 2007 +0000 +++ b/nsvdec.c Sun Jan 21 01:39:17 2007 +0000 @@ -183,7 +183,7 @@ //DVDemuxContext* dv_demux; } NSVContext; -static const CodecTag nsv_codec_video_tags[] = { +static const AVCodecTag nsv_codec_video_tags[] = { { CODEC_ID_VP3, MKTAG('V', 'P', '3', ' ') }, { CODEC_ID_VP3, MKTAG('V', 'P', '3', '0') }, { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') }, @@ -202,7 +202,7 @@ { 0, 0 }, }; -static const CodecTag nsv_codec_audio_tags[] = { +static const AVCodecTag nsv_codec_audio_tags[] = { { CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') }, { CODEC_ID_AAC, MKTAG('A', 'A', 'C', ' ') }, { CODEC_ID_AAC, MKTAG('A', 'A', 'C', 'P') }, /* _CUTTED__MUXED_2 Heads - Out Of The City.nsv */
