avcodec/error_resilience: Fix mbskip_table==NULL codepath
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b37b0a58e3
commit
dd186b5825
@ -1024,7 +1024,7 @@ void ff_er_frame_end(ERContext *s)
|
|||||||
const int mb_xy = s->mb_index2xy[i];
|
const int mb_xy = s->mb_index2xy[i];
|
||||||
int error = s->error_status_table[mb_xy];
|
int error = s->error_status_table[mb_xy];
|
||||||
|
|
||||||
if (s->mbskip_table && !s->mbskip_table[mb_xy]) // FIXME partition specific
|
if (!s->mbskip_table || !s->mbskip_table[mb_xy]) // FIXME partition specific
|
||||||
distance++;
|
distance++;
|
||||||
if (error & (1 << error_type))
|
if (error & (1 << error_type))
|
||||||
distance = 0;
|
distance = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user