Mercurial > libavformat.hg
changeset 3930:77b99eddf88a libavformat
Add support for RVTR fourCC
author | vitor |
---|---|
date | Tue, 23 Sep 2008 06:24:00 +0000 |
parents | e0eb33b98f43 |
children | b1deda6b74c3 |
files | rmdec.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/rmdec.c Fri Sep 19 12:37:38 2008 +0000 +++ b/rmdec.c Tue Sep 23 06:24:00 2008 +0000 @@ -216,7 +216,8 @@ 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);