Re: [FFmpeg-devel] [PATCH] avcodec/osq: avoid signed overflow in downsample path

2024-07-12 Thread Michael Niedermayer
On Fri, Jun 21, 2024 at 09:35:48PM +0200, Michael Niedermayer wrote: > Fixes: signed integer overflow: 865309950 * 256 cannot be represented in type > 'int' > Fixes: > 69191/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_OSQ_fuzzer-6310214413385728 > > Found-by: continuous fuzzing process >

[FFmpeg-devel] [PATCH] avcodec/osq: avoid signed overflow in downsample path

2024-06-21 Thread Michael Niedermayer
Fixes: signed integer overflow: 865309950 * 256 cannot be represented in type 'int' Fixes: 69191/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_OSQ_fuzzer-6310214413385728 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Micha