mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec/osq: fix integer overflow when applying factor
Fixes: signed integer overflow: -35511773 * 256 cannot be represented in type 'int' Fixes: 70406/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_OSQ_fuzzer-6545326804434944 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 6420c1bf30884d5feb69d0a6f116eaceac02dacc) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
354d5b9737
commit
71dc382513
@ -355,7 +355,7 @@ static int osq_decode_block(AVCodecContext *avctx, AVFrame *frame)
|
||||
const int nb_channels = avctx->ch_layout.nb_channels;
|
||||
const int nb_samples = frame->nb_samples;
|
||||
OSQContext *s = avctx->priv_data;
|
||||
const int factor = s->factor;
|
||||
const unsigned factor = s->factor;
|
||||
int ret, decorrelate, downsample;
|
||||
GetBitContext *gb = &s->gb;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user