mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 01:02:33 +00:00
avcodec/pixlet: Simplify nbits computation
Fixes multiple integer overflows Fixes: runtime error: signed integer overflow: 1 + 2147483647 cannot be represented in type 'int' Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
58fbcf885d
commit
aeddb3607b
@ -206,8 +206,8 @@ static int read_high_coeffs(AVCodecContext *avctx, uint8_t *src, int16_t *dst, i
|
||||
if ((ret = init_get_bits8(b, src, bytestream2_get_bytes_left(&ctx->gb))) < 0)
|
||||
return ret;
|
||||
|
||||
if ((a >= 0) + (a ^ (a >> 31)) - (a >> 31) != 1) {
|
||||
nbits = 33 - ff_clz((a >= 0) + (a ^ (a >> 31)) - (a >> 31) - 1);
|
||||
if (a ^ (a >> 31)) {
|
||||
nbits = 33 - ff_clz(a ^ (a >> 31));
|
||||
if (nbits > 16)
|
||||
return AVERROR_INVALIDDATA;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user