# HG changeset patch # User vitor # Date 1221160014 0 # Node ID f29ec8e5d186f90df4dace105a7d73db2f1004fc # Parent 5a114f24632a67611db77368af40e81356975f28 Rename function: s/colmult/apply_window/ diff -r 5a114f24632a -r f29ec8e5d186 ra288.c --- a/ra288.c Thu Sep 11 08:13:23 2008 +0000 +++ b/ra288.c Thu Sep 11 19:06:54 2008 +0000 @@ -60,7 +60,7 @@ return res; } -static void colmult(float *tgt, const float *m1, const float *m2, int n) +static void apply_window(float *tgt, const float *m1, const float *m2, int n) { while (n--) *tgt++ = *m1++ * *m2++; @@ -148,7 +148,7 @@ memmove(hist , hist + n, (order + non_rec)*sizeof(*hist)); memcpy (hist + order + non_rec, in , n *sizeof(*hist)); - colmult(work, window, hist, order + n + non_rec); + apply_window(work, window, hist, order + n + non_rec); convolve(buffer1, work + order , n , order); convolve(buffer2, work + order + n, non_rec, order); @@ -174,13 +174,13 @@ ractx->sp_rec, syn_window); if (!compute_lpc_coefs(temp1, 36, ractx->sp_lpc, 0, 1, 1)) - colmult(ractx->sp_lpc, ractx->sp_lpc, syn_bw_tab, 36); + apply_window(ractx->sp_lpc, ractx->sp_lpc, syn_bw_tab, 36); do_hybrid_window(10, 8, 20, ractx->gain_block+2, temp2, ractx->gain_hist, ractx->gain_rec, gain_window); if (!compute_lpc_coefs(temp2, 10, ractx->gain_lpc, 0, 1, 1)) - colmult(ractx->gain_lpc, ractx->gain_lpc, gain_bw_tab, 10); + apply_window(ractx->gain_lpc, ractx->gain_lpc, gain_bw_tab, 10); } static int ra288_decode_frame(AVCodecContext * avctx, void *data,