Commit e1f2ea17 authored by michael's avatar michael

rv20 demuxing fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3691 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0f213978
...@@ -653,19 +653,11 @@ static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -653,19 +653,11 @@ static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap)
get_be16(pb); get_be16(pb);
/* modification of h263 codec version (!) */ /* modification of h263 codec version (!) */
h263_hack_version = get_be32(pb); h263_hack_version = get_be32(pb);
switch(h263_hack_version) { st->codec.sub_id = h263_hack_version;
case 0x10000000: if((h263_hack_version>>28)==1)
case 0x10003000:
case 0x10003001:
default:
st->codec.sub_id = h263_hack_version;
st->codec.codec_id = CODEC_ID_RV10; st->codec.codec_id = CODEC_ID_RV10;
break; else
// default: st->codec.codec_id = CODEC_ID_RV20;
/* not handled */
st->codec.codec_id = CODEC_ID_NONE;
break;
}
} }
/* skip codec info */ /* skip codec info */
size = url_ftell(pb) - codec_pos; size = url_ftell(pb) - codec_pos;
......
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