From 7caf0cc62cad8a5548c3e7e0b35ead00584100c8 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 21 Jan 2007 01:39:17 +0000 Subject: add codec_id <-> codec_tag tables to AVIn/OutputFormat Originally committed as revision 7593 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/mov.c') diff --git a/libavformat/mov.c b/libavformat/mov.c index 1658b6d244..74fc0ef326 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -66,7 +66,7 @@ #undef NDEBUG #include -static const CodecTag mov_video_tags[] = { +static const AVCodecTag mov_video_tags[] = { /* { CODEC_ID_, MKTAG('c', 'v', 'i', 'd') }, *//* Cinepak */ /* { CODEC_ID_H263, MKTAG('r', 'a', 'w', ' ') }, *//* Uncompressed RGB */ /* { CODEC_ID_H263, MKTAG('Y', 'u', 'v', '2') }, *//* Uncompressed YUV422 */ @@ -127,7 +127,7 @@ static const CodecTag mov_video_tags[] = { { CODEC_ID_NONE, 0 }, }; -static const CodecTag mov_audio_tags[] = { +static const AVCodecTag mov_audio_tags[] = { { CODEC_ID_PCM_S32BE, MKTAG('i', 'n', '3', '2') }, { CODEC_ID_PCM_S24BE, MKTAG('i', 'n', '2', '4') }, { CODEC_ID_PCM_S16BE, MKTAG('N', 'O', 'N', 'E') }, /* uncompressed */ -- cgit v1.2.3