diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2012-11-10 02:11:49 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-10 13:16:14 +0100 |
commit | cc5c2ef09da76066366792d0a6fb1e4f47f7cd9a (patch) | |
tree | 5721ee49244a721767fa2d69ec21f8f359a28624 /libavformat/riff.c | |
parent | 2ce64413e2b7f60041ff3e929e58242004c7921d (diff) | |
download | ffmpeg-cc5c2ef09da76066366792d0a6fb1e4f47f7cd9a.tar.gz |
riff: add SMV2 FourCC for H264
sample:
http://samples.mplayerhq.hu/V-codecs/smv2.avi
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/riff.c')
-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 17dd736537..89296e81c9 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -39,6 +39,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_H264, MKTAG('x', '2', '6', '4') }, { AV_CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') }, { AV_CODEC_ID_H264, MKTAG('D', 'A', 'V', 'C') }, + { AV_CODEC_ID_H264, MKTAG('S', 'M', 'V', '2') }, { AV_CODEC_ID_H264, MKTAG('V', 'S', 'S', 'H') }, { AV_CODEC_ID_H264, MKTAG('Q', '2', '6', '4') }, /* QNAP surveillance system */ { AV_CODEC_ID_H263, MKTAG('H', '2', '6', '3') }, |