Commit b93dd838 authored by Vitor Sessak's avatar Vitor Sessak

Add support for RVTR fourCC

Originally committed as revision 15386 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent aa617518
...@@ -216,7 +216,8 @@ ff_rm_read_mdpr_codecdata (AVFormatContext *s, AVStream *st, int codec_data_size ...@@ -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') 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', '2', '0')
&& st->codec->codec_tag != MKTAG('R', 'V', '3', '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; goto fail1;
st->codec->width = get_be16(pb); st->codec->width = get_be16(pb);
st->codec->height = get_be16(pb); st->codec->height = get_be16(pb);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment