diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-02 16:33:56 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-04 13:24:40 +0200 |
commit | 336901e0601ed8067018e1c51c53b5114b887cf2 (patch) | |
tree | 0bfd698e9cf4ebdf3df23232e0e0e216cd80c189 /libavcodec/h263dec.c | |
parent | e94b08f00217d54976d16d53d7eb820960e9cd4a (diff) | |
download | ffmpeg-336901e0601ed8067018e1c51c53b5114b887cf2.tar.gz |
avcodec/h263dec: use AV_EF_IGNORE_ERR
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 523fca9e7f..474714ed77 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -273,6 +273,8 @@ static int decode_slice(MpegEncContext *s) ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y, s->mb_x, s->mb_y, ER_MB_ERROR & part_mask); + if (s->err_recognition & AV_EF_IGNORE_ERR) + continue; return AVERROR_INVALIDDATA; } |