# HG changeset patch # User vitor # Date 1217082950 0 # Node ID 649496faa1d29a0783940f6958d34b91ccc3f3cd # Parent 5d1378447a0759b30a4e9ed03f068fb02e85ffb1 Move colmult() function to the beginning of file to group DSP-related functions. diff -r 5d1378447a07 -r 649496faa1d2 ra288.c --- a/ra288.c Sat Jul 26 14:33:53 2008 +0000 +++ b/ra288.c Sat Jul 26 14:35:50 2008 +0000 @@ -48,6 +48,12 @@ return res; } +static void colmult(float *tgt, const float *m1, const float *m2, int n) +{ + while (n--) + *(tgt++) = (*(m1++)) * (*(m2++)); +} + /* Decode and produce output */ static void decode(RA288Context *ractx, float gain, int cb_coef) { @@ -90,12 +96,6 @@ } } -static void colmult(float *tgt, const float *m1, const float *m2, int n) -{ - while (n--) - *(tgt++) = (*(m1++)) * (*(m2++)); -} - /** * Converts autocorrelation coefficients to LPC coefficients using the * Levinson-Durbin algorithm. See blocks 37 and 50 of the G.728 specification.