diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-23 19:47:29 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-08-24 10:45:39 +0100 |
commit | 081bab5ee3fcd6f958c009704ea34f49176d7619 (patch) | |
tree | 82b8069c9bdb104c31f5111c9912776d40e07446 | |
parent | 0c88e7a2552d985c2b35561091004fd2b01c5ef9 (diff) | |
download | ffmpeg-streaming-081bab5ee3fcd6f958c009704ea34f49176d7619.zip ffmpeg-streaming-081bab5ee3fcd6f958c009704ea34f49176d7619.tar.gz |
truespeech: drop useless casts
These values already have the correct types.
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavcodec/truespeech.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/truespeech.c b/libavcodec/truespeech.c index 29ff90d..bbee146 100644 --- a/libavcodec/truespeech.c +++ b/libavcodec/truespeech.c @@ -182,7 +182,7 @@ static void truespeech_apply_twopoint_filter(TSContext *dec, int quart) off = av_clip(off, 0, 145); ptr0 = tmp + 145 - off; ptr1 = tmp + 146; - filter = (const int16_t*)ts_order2_coeffs + (t % 25) * 2; + filter = ts_order2_coeffs + (t % 25) * 2; for(i = 0; i < 60; i++){ t = (ptr0[0] * filter[0] + ptr0[1] * filter[1] + 0x2000) >> 14; ptr0++; @@ -207,7 +207,7 @@ static void truespeech_place_pulses(TSContext *dec, int16_t *out, int quart) } coef = dec->pulsepos[quart] >> 15; - ptr1 = (const int16_t*)ts_pulse_values + 30; + ptr1 = ts_pulse_values + 30; ptr2 = tmp; for(i = 0, j = 3; (i < 30) && (j > 0); i++){ t = *ptr1++; @@ -220,7 +220,7 @@ static void truespeech_place_pulses(TSContext *dec, int16_t *out, int quart) } } coef = dec->pulsepos[quart] & 0x7FFF; - ptr1 = (const int16_t*)ts_pulse_values; + ptr1 = ts_pulse_values; for(i = 30, j = 4; (i < 60) && (j > 0); i++){ t = *ptr1++; if(coef >= t) |