Commit 403f1099 authored by Michael Niedermayer's avatar Michael Niedermayer

more tolerance for dc=0

Originally committed as revision 2716 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 20f155ed
......@@ -4432,7 +4432,8 @@ static int h263_decode_block(MpegEncContext * s, DCTELEM * block,
level = get_bits(&s->gb, 8);
if((level&0x7F) == 0){
av_log(s->avctx, AV_LOG_ERROR, "illegal dc %d at %d %d\n", level, s->mb_x, s->mb_y);
return -1;
if(s->error_resilience >= FF_ER_COMPLIANT)
return -1;
}
if (level == 255)
level = 128;
......
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