diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2018-08-04 02:19:15 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-08-12 21:48:08 +0200 |
commit | 6d8a289c98b80ddf596028ccae73cbc3c53dc7cf (patch) | |
tree | 55a97aa518d318c201cd4b9fbc7e0182bdbbfec4 | |
parent | f91e7ec9dfb32dd27c2474de4f98a2e47126f7a7 (diff) | |
download | ffmpeg-6d8a289c98b80ddf596028ccae73cbc3c53dc7cf.tar.gz |
avcodec/indeo5: require initial valid intra/gop headers not just later
Fixes: Timeout
Fixes: 9308/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_INDEO5_fuzzer-5284853581873152
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/indeo5.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/indeo5.c b/libavcodec/indeo5.c index b39cffd9a9..7b9da53df4 100644 --- a/libavcodec/indeo5.c +++ b/libavcodec/indeo5.c @@ -642,6 +642,8 @@ static av_cold int decode_init(AVCodecContext *avctx) IVI45DecContext *ctx = avctx->priv_data; int result; + ctx->gop_invalid = 1; + ff_ivi_init_static_vlc(); /* copy rvmap tables in our context so we can apply changes to them */ |