Re: [FFmpeg-devel] [PATCH 2/7] avcodec/vc2enc: basic sanity check on slice_max_bytes

2024-09-18 Thread Michael Niedermayer
On Fri, Sep 13, 2024 at 01:33:32AM +0200, Michael Niedermayer wrote: > Fixes: left shift of 896021632 by 3 places cannot be represented in type 'int' > Fixes: > 70544/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VC2_fuzzer-6685593652756480 > > Found-by: continuous fuzzing process > https://

[FFmpeg-devel] [PATCH 2/7] avcodec/vc2enc: basic sanity check on slice_max_bytes

2024-09-12 Thread Michael Niedermayer
Fixes: left shift of 896021632 by 3 places cannot be represented in type 'int' Fixes: 70544/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VC2_fuzzer-6685593652756480 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Nie