diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-09-23 06:24:00 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-09-23 06:24:00 +0000 |
commit | b93dd8383a9ed6f11c6140e2a075c254a3c4969b (patch) | |
tree | 590e768a475889f6a3517b2a65ffade11f8b06eb | |
parent | aa617518b9e2161f33d7115a76a15200a9a041e9 (diff) | |
download | ffmpeg-b93dd8383a9ed6f11c6140e2a075c254a3c4969b.tar.gz |
Add support for RVTR fourCC
Originally committed as revision 15386 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/rmdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index ee68ac1fae..07daa9d4d3 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -216,7 +216,8 @@ ff_rm_read_mdpr_codecdata (AVFormatContext *s, AVStream *st, int codec_data_size if ( st->codec->codec_tag != MKTAG('R', 'V', '1', '0') && st->codec->codec_tag != MKTAG('R', 'V', '2', '0') && st->codec->codec_tag != MKTAG('R', 'V', '3', '0') - && st->codec->codec_tag != MKTAG('R', 'V', '4', '0')) + && st->codec->codec_tag != MKTAG('R', 'V', '4', '0') + && st->codec->codec_tag != MKTAG('R', 'V', 'T', 'R')) goto fail1; st->codec->width = get_be16(pb); st->codec->height = get_be16(pb); |