diff options
author | Ben Littler <tempn@twmi.rr.com> | 2008-12-03 13:53:13 +0000 |
---|---|---|
committer | Ben Littler <tempn@twmi.rr.com> | 2008-12-03 13:53:13 +0000 |
commit | 26ae363e06722389964dae79e1f19a0a7f66b6d0 (patch) | |
tree | e842f5d378e3f8f437ab41f0ec6c1080154d39b3 | |
parent | c8b4365258b2d1eabc3429865f342302e973695b (diff) | |
download | ffmpeg-26ae363e06722389964dae79e1f19a0a7f66b6d0.tar.gz |
add FFDS fourcc, ok'd by kostya
fixes FFDS files in http://tranquillity.ath.cx/uncommon_video_codecs_final.txt
Originally committed as revision 15989 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/riff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index ae6b7baca8..0c9c274bf0 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -53,6 +53,7 @@ const AVCodecTag codec_bmp_tags[] = { { CODEC_ID_MPEG4, MKTAG('S', 'E', 'D', 'G') }, { CODEC_ID_MPEG4, MKTAG('R', 'M', 'P', '4') }, { CODEC_ID_MPEG4, MKTAG('3', 'I', 'V', '2') }, + { CODEC_ID_MPEG4, MKTAG('F', 'F', 'D', 'S') }, { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '3') }, /* default signature when using MSMPEG4 */ { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', '4', '3') }, { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', 'G', '3') }, |