Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-02 18:33:56 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-05-04 15:24:40 +0400
commit336901e0601ed8067018e1c51c53b5114b887cf2 (patch)
tree0bfd698e9cf4ebdf3df23232e0e0e216cd80c189 /libavcodec/h263dec.c
parente94b08f00217d54976d16d53d7eb820960e9cd4a (diff)
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.c2
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;
}