avcodec/cfhd: Avoid signed integer overflow in coeff
Fixes: signed integer overflow: 15244032 * 256 cannot be represented in type 'int' Fixes: 43504/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CFHD_fuzzer-4865014842916864 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -838,7 +838,7 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame,
|
|||||||
const uint16_t q = s->quantisation;
|
const uint16_t q = s->quantisation;
|
||||||
|
|
||||||
for (i = 0; i < run; i++) {
|
for (i = 0; i < run; i++) {
|
||||||
*coeff_data |= coeff * 256;
|
*coeff_data |= coeff * 256U;
|
||||||
*coeff_data++ *= q;
|
*coeff_data++ *= q;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -869,7 +869,7 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame,
|
|||||||
const uint16_t q = s->quantisation;
|
const uint16_t q = s->quantisation;
|
||||||
|
|
||||||
for (i = 0; i < run; i++) {
|
for (i = 0; i < run; i++) {
|
||||||
*coeff_data |= coeff * 256;
|
*coeff_data |= coeff * 256U;
|
||||||
*coeff_data++ *= q;
|
*coeff_data++ *= q;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user