mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-18 21:07:01 +00:00
avcodec/r210enc: Use av_rescale for bitrate
Fixes: signed integer overflow: 281612954574848 * 65344 cannot be represented in type 'long' Fixes: 68956/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_R210_fuzzer-6459074458746880 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 d34d4b6a7ce7fa72239c47d22ab6592d0687ac86) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
da915126bf
commit
0258d8302d
@ -31,7 +31,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
|
||||
|
||||
avctx->bits_per_coded_sample = 32;
|
||||
if (avctx->width > 0)
|
||||
avctx->bit_rate = ff_guess_coded_bitrate(avctx) * aligned_width / avctx->width;
|
||||
avctx->bit_rate = av_rescale(ff_guess_coded_bitrate(avctx), aligned_width, avctx->width);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user