avcodec/g723_1dec: Fix several integer related cases of undefined behaviour

Fixes: 1412/clusterfuzz-testcase-minimized-6561308772139008

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/202/merge
Michael Niedermayer 8 years ago
parent 7f7ee86d5a
commit d3088e0fd8
  1. 8
      libavcodec/g723_1dec.c

@ -664,7 +664,7 @@ static int estimate_sid_gain(G723_1_Context *p)
t = p->sid_gain << shift; t = p->sid_gain << shift;
else else
t = p->sid_gain >> -shift; t = p->sid_gain >> -shift;
x = t * cng_filt[0] >> 16; x = av_clipl_int32(t * (int64_t)cng_filt[0] >> 16);
if (x >= cng_bseg[2]) if (x >= cng_bseg[2])
return 0x3F; return 0x3F;
@ -733,7 +733,7 @@ static void generate_noise(G723_1_Context *p)
off[i * 2 + 1] = ((t >> 1) & 1) + SUBFRAME_LEN; off[i * 2 + 1] = ((t >> 1) & 1) + SUBFRAME_LEN;
t >>= 2; t >>= 2;
for (j = 0; j < 11; j++) { for (j = 0; j < 11; j++) {
signs[i * 11 + j] = (t & 1) * 2 - 1 << 14; signs[i * 11 + j] = ((t & 1) * 2 - 1) * (1 << 14);
t >>= 1; t >>= 1;
} }
} }
@ -777,7 +777,7 @@ static void generate_noise(G723_1_Context *p)
sum = 0; sum = 0;
if (shift < 0) { if (shift < 0) {
for (j = 0; j < SUBFRAME_LEN * 2; j++) { for (j = 0; j < SUBFRAME_LEN * 2; j++) {
t = vector_ptr[j] << -shift; t = vector_ptr[j] * (1 << -shift);
sum += t * t; sum += t * t;
tmp[j] = t; tmp[j] = t;
} }
@ -815,7 +815,7 @@ static void generate_noise(G723_1_Context *p)
if (shift < 0) if (shift < 0)
x >>= -shift; x >>= -shift;
else else
x <<= shift; x *= 1 << shift;
x = av_clip(x, -10000, 10000); x = av_clip(x, -10000, 10000);
for (j = 0; j < 11; j++) { for (j = 0; j < 11; j++) {

Loading…
Cancel
Save