*tgt++ = *m1++ * *m2++;
}
+static void convolve(float *tgt, const float *src, int len, int n)
+{
+ for (; n >= 0; n--)
+ tgt[n] = scalar_product_float(src, src - n, len);
+
+}
+
static void decode(RA288Context *ractx, float gain, int cb_coef)
{
int i, j;
block[i] = av_clipf(block[i], -4095, 4095);
}
-static void convolve(float *tgt, const float *src, int len, int n)
-{
- for (; n >= 0; n--)
- tgt[n] = scalar_product_float(src, src - n, len);
-
-}
-
/**
* Hybrid window filtering, see blocks 36 and 49 of the G.728 specification.
*