mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
fixing decoding of http://mplayerhq.hu/~atmos4/ffrv20-crashing-atmos.rm
Originally committed as revision 3808 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f4e2c4b134
commit
f6d5112387
@ -438,12 +438,12 @@ static int rv20_decode_picture_header(MpegEncContext *s)
|
||||
}
|
||||
seq= get_bits(&s->gb, 14)<<1;
|
||||
|
||||
if(v>1){
|
||||
if(v>1 || (s->avctx->sub_id < 0x20201002 && v>0)){
|
||||
f= get_bits(&s->gb, av_log2(v-1)+1);
|
||||
}
|
||||
|
||||
if(s->avctx->debug & FF_DEBUG_PICT_INFO){
|
||||
av_log(s->avctx, AV_LOG_DEBUG, "F %d\n", f);
|
||||
av_log(s->avctx, AV_LOG_DEBUG, "F %d/%d\n", f, v);
|
||||
}
|
||||
|
||||
mb_pos= get_bits(&s->gb, av_log2(s->mb_num-1)+1);
|
||||
|
Loading…
Reference in New Issue
Block a user