mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-19 05:49:09 +02:00
avcodec/vp56: Consider the alpha start as end of the prior header
Fixes: Timeout (23sec -> 71ms) Fixes: 15661/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VP6A_fuzzer-6257865947348992 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Peter Ross <pross@xvid.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit db78bc1297ebaa51cfe5c80775808ec11ed7512b) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6eef056cf5
commit
94242dd739
@ -548,7 +548,7 @@ int ff_vp56_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
|
||||
VP56Context *s = avctx->priv_data;
|
||||
AVFrame *const p = s->frames[VP56_FRAME_CURRENT];
|
||||
int remaining_buf_size = avpkt->size;
|
||||
int av_uninit(alpha_offset);
|
||||
int alpha_offset = remaining_buf_size;
|
||||
int i, res;
|
||||
int ret;
|
||||
|
||||
@ -561,7 +561,7 @@ int ff_vp56_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
res = s->parse_header(s, buf, remaining_buf_size);
|
||||
res = s->parse_header(s, buf, alpha_offset);
|
||||
if (res < 0)
|
||||
return res;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user