diff options
author | Michael Niedermayer | 2003-04-10 01:39:53 +0000 |
---|---|---|
committer | Michael Niedermayer | 2003-04-10 01:39:53 +0000 |
commit | 0aae3f43e48bbe4b3933db83f75b30685ee8015c (patch) | |
tree | c93b59dfd767f9006ed11b366d48782edc35ef9a /libavcodec/error_resilience.c | |
parent | e322ea480b42e741ff49c827a298d5d26d0b5a25 (diff) |
fixing slice decoding, dunno why the regression tests didnt catch that ...
Originally committed as revision 1744 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/error_resilience.c')
-rw-r--r-- | libavcodec/error_resilience.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/error_resilience.c b/libavcodec/error_resilience.c index 77488cd589..486f5670a2 100644 --- a/libavcodec/error_resilience.c +++ b/libavcodec/error_resilience.c @@ -614,13 +614,13 @@ void ff_er_add_slice(MpegEncContext *s, int startx, int starty, int endx, int en s->error_status_table[i] &= mask; } } - - s->error_status_table[start_xy] |= VP_START; - + if(end_xy < s->mb_num){ s->error_status_table[end_xy] &= mask; s->error_status_table[end_xy] |= status; } + + s->error_status_table[start_xy] |= VP_START; } void ff_er_frame_end(MpegEncContext *s){ |