diff options
author | ami_stuff <ami_stuff@o2.pl> | 2012-01-19 14:16:41 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-01-19 17:20:50 +0100 |
commit | ef9623f670f57014fab0651cc2132baac7c8e981 (patch) | |
tree | f8d846524d8159b62315a7bd6757891be71f2af8 | |
parent | 1406d9ddc62ddb941c71395ae55858e5a33a8012 (diff) | |
download | ffmpeg-ef9623f670f57014fab0651cc2132baac7c8e981.tar.gz |
Add "S263" FourCC
fixes ticket #923
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 0bfee5a983..4efd1ad756 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -240,6 +240,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { CODEC_ID_SNOW, MKTAG('S', 'N', 'O', 'W') }, { CODEC_ID_4XM, MKTAG('4', 'X', 'M', 'V') }, { CODEC_ID_FLV1, MKTAG('F', 'L', 'V', '1') }, + { CODEC_ID_FLV1, MKTAG('S', '2', '6', '3') }, { CODEC_ID_FLASHSV, MKTAG('F', 'S', 'V', '1') }, { CODEC_ID_SVQ1, MKTAG('s', 'v', 'q', '1') }, { CODEC_ID_TSCC, MKTAG('t', 's', 'c', 'c') }, |