From b93dd8383a9ed6f11c6140e2a075c254a3c4969b Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Tue, 23 Sep 2008 06:24:00 +0000 Subject: [PATCH] Add support for RVTR fourCC Originally committed as revision 15386 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rmdec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);