Commit cea56e3b authored by michael's avatar michael

fix "concealing 0 DC, 0 AC, 0 MV errors" bug


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5290 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 92fc7bd8
......@@ -639,9 +639,9 @@ static int rv10_decode_packet(AVCodecContext *avctx,
if(s->mb_y==0) s->first_slice_line=1;
}else{
s->first_slice_line=1;
s->resync_mb_x= s->mb_x;
s->resync_mb_y= s->mb_y;
}
s->resync_mb_x= s->mb_x;
s->resync_mb_y= s->mb_y;
if(s->h263_aic){
s->y_dc_scale_table=
s->c_dc_scale_table= ff_aic_dc_scale_table;
......
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