diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-03-16 11:20:46 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-03-20 01:33:08 +0100 |
commit | 98da63b3f5f5a277c5c3a16860db9a9f6741e54c (patch) | |
tree | 2753309d6a878bbb24cdcac8a8a295037200a0fb /libavcodec | |
parent | a84d610b372c63e8a48a9ed7c038a2954097512c (diff) | |
download | ffmpeg-98da63b3f5f5a277c5c3a16860db9a9f6741e54c.tar.gz |
avcodec/vp56: Check avctx->error_concealment before enabling EC
Fixes timeout with 847/clusterfuzz-testcase-5291877358108672
Fixes timeout with 850/clusterfuzz-testcase-5721296509861888
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vp56.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp56.c b/libavcodec/vp56.c index 4751840943..b69fe6c176 100644 --- a/libavcodec/vp56.c +++ b/libavcodec/vp56.c @@ -712,7 +712,7 @@ static int ff_vp56_decode_mbs(AVCodecContext *avctx, void *data, int ret = vp56_decode_mb(s, mb_row, mb_col, is_alpha); if (ret < 0) { damaged = 1; - if (!s->have_undamaged_frame) { + if (!s->have_undamaged_frame || !avctx->error_concealment) { s->discard_frame = 1; return AVERROR_INVALIDDATA; } |