summaryrefslogtreecommitdiffstats
path: root/libavcodec/ffv1dec_template.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2018-10-08 03:35:58 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2018-10-12 00:53:14 +0200
commitccd2b20ad96c9d26ed27b4dabc08ea937987963e (patch)
treec604a04ea347ca05af1d143aa8e4a8867250b20c /libavcodec/ffv1dec_template.c
parent8f1524802469cb701040561cd05a9a924dec3627 (diff)
downloadffmpeg-streaming-ccd2b20ad96c9d26ed27b4dabc08ea937987963e.zip
ffmpeg-streaming-ccd2b20ad96c9d26ed27b4dabc08ea937987963e.tar.gz
avcodec/ffv1dec_template: Check for the end of input after 1024 pixels
Fixes: Timeout Fixes: 10385/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFV1_fuzzer-5689206987292672 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/ffv1dec_template.c')
-rw-r--r--libavcodec/ffv1dec_template.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/ffv1dec_template.c b/libavcodec/ffv1dec_template.c
index fecdbd0..25032fe 100644
--- a/libavcodec/ffv1dec_template.c
+++ b/libavcodec/ffv1dec_template.c
@@ -50,6 +50,11 @@ static av_always_inline int RENAME(decode_line)(FFV1Context *s, int w,
for (x = 0; x < w; x++) {
int diff, context, sign;
+ if (!(x & 1023)) {
+ if (is_input_end(s))
+ return AVERROR_INVALIDDATA;
+ }
+
context = RENAME(get_context)(p, sample[1] + x, sample[0] + x, sample[1] + x);
if (context < 0) {
context = -context;
OpenPOWER on IntegriCloud