Commit 37921ffd authored by Michael Niedermayer's avatar Michael Niedermayer

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

Originally committed as revision 5290 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5616f85d
...@@ -639,9 +639,9 @@ static int rv10_decode_packet(AVCodecContext *avctx, ...@@ -639,9 +639,9 @@ static int rv10_decode_packet(AVCodecContext *avctx,
if(s->mb_y==0) s->first_slice_line=1; if(s->mb_y==0) s->first_slice_line=1;
}else{ }else{
s->first_slice_line=1; 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){ if(s->h263_aic){
s->y_dc_scale_table= s->y_dc_scale_table=
s->c_dc_scale_table= ff_aic_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