[FFmpeg-cvslog] r15386 - trunk/libavformat/rmdec.c
vitor
subversion
Tue Sep 23 08:24:00 CEST 2008
Author: vitor
Date: Tue Sep 23 08:24:00 2008
New Revision: 15386
Log:
Add support for RVTR fourCC
Modified:
trunk/libavformat/rmdec.c
Modified: trunk/libavformat/rmdec.c
==============================================================================
--- trunk/libavformat/rmdec.c (original)
+++ trunk/libavformat/rmdec.c Tue Sep 23 08:24:00 2008
@@ -216,7 +216,8 @@ ff_rm_read_mdpr_codecdata (AVFormatConte
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);
More information about the ffmpeg-cvslog
mailing list