summaryrefslogtreecommitdiff
path: root/libavcodec/rv10.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-04-14 20:45:08 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-04-14 20:45:08 +0000
commit37921ffde81284f4cc8b69d99d4f39f593c65542 (patch)
tree965a80b1a186bb09d01837ca8bde78e104141e24 /libavcodec/rv10.c
parent5616f85deb729d181e2a923b2c74371fae6e8398 (diff)
fix "concealing 0 DC, 0 AC, 0 MV errors" bug
Originally committed as revision 5290 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r--libavcodec/rv10.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c
index d48e0df2f0..dbc7b62847 100644
--- a/libavcodec/rv10.c
+++ b/libavcodec/rv10.c
@@ -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;