summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-09-20 20:16:54 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2019-09-24 12:25:48 +0200
commitc7c0229bebbb2ea6eec6eddb75774eca3e33d075 (patch)
treeb82a6d2c2df346c8d630f6a89d354c942ac0f4ee /libavcodec
parent74bbf9bc8279e0b8eba89c8cca68e8ad7ff547ed (diff)
avcodec/truespeech: Eliminate some left shifts
This avoids some invalid shifts Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/truespeech.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/truespeech.c b/libavcodec/truespeech.c
index d4ddfcbf9c..54352851b3 100644
--- a/libavcodec/truespeech.c
+++ b/libavcodec/truespeech.c
@@ -132,8 +132,7 @@ static void truespeech_correlate_filter(TSContext *dec)
if(i > 0){
memcpy(tmp, dec->cvector, i * sizeof(*tmp));
for(j = 0; j < i; j++)
- dec->cvector[j] = ((tmp[i - j - 1] * dec->vector[i]) +
- (dec->cvector[j] << 15) + 0x4000) >> 15;
+ dec->cvector[j] += (tmp[i - j - 1] * dec->vector[i] + 0x4000) >> 15;
}
dec->cvector[i] = (8 - dec->vector[i]) >> 3;
}
@@ -256,7 +255,7 @@ static void truespeech_synth(TSContext *dec, int16_t *out, int quart)
int sum = 0;
for(k = 0; k < 8; k++)
sum += ptr0[k] * ptr1[k];
- sum = (sum + (out[i] << 12) + 0x800) >> 12;
+ sum = out[i] + ((sum + 0x800) >> 12);
out[i] = av_clip(sum, -0x7FFE, 0x7FFE);
for(k = 7; k > 0; k--)
ptr0[k] = ptr0[k - 1];
@@ -274,7 +273,7 @@ static void truespeech_synth(TSContext *dec, int16_t *out, int quart)
for(k = 7; k > 0; k--)
ptr0[k] = ptr0[k - 1];
ptr0[0] = out[i];
- out[i] = ((out[i] << 12) - sum) >> 12;
+ out[i] += (- sum) >> 12;
}
for(i = 0; i < 8; i++)