diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-01-21 01:39:17 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-01-21 01:39:17 +0000 |
commit | 7caf0cc62cad8a5548c3e7e0b35ead00584100c8 (patch) | |
tree | e1562ae2a42534630673125d7f7712da466f43be /libavformat/flvenc.c | |
parent | 5c4e1928c0e79438be23cbec9ce579d790bb985a (diff) | |
download | ffmpeg-7caf0cc62cad8a5548c3e7e0b35ead00584100c8.tar.gz |
add codec_id <-> codec_tag tables to AVIn/OutputFormat
Originally committed as revision 7593 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/flvenc.c')
-rw-r--r-- | libavformat/flvenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index ef618db42e..c8c527a8f9 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -25,7 +25,7 @@ #undef NDEBUG #include <assert.h> -static const CodecTag flv_video_codec_ids[] = { +static const AVCodecTag flv_video_codec_ids[] = { {CODEC_ID_FLV1, FLV_CODECID_H263 }, {CODEC_ID_FLASHSV, FLV_CODECID_SCREEN}, {CODEC_ID_VP6F, FLV_CODECID_VP6 }, @@ -33,7 +33,7 @@ static const CodecTag flv_video_codec_ids[] = { {CODEC_ID_NONE, 0} }; -static const CodecTag flv_audio_codec_ids[] = { +static const AVCodecTag flv_audio_codec_ids[] = { {CODEC_ID_MP3, FLV_CODECID_MP3 >> FLV_AUDIO_CODECID_OFFSET}, {CODEC_ID_PCM_S8, FLV_CODECID_PCM_BE >> FLV_AUDIO_CODECID_OFFSET}, {CODEC_ID_PCM_S16BE, FLV_CODECID_PCM_BE >> FLV_AUDIO_CODECID_OFFSET}, |