| 61 | } |
| 62 | |
| 63 | static void convolve(float *tgt, const float *src, int len, int n) |
| 64 | { |
| 65 | for (; n >= 0; n--) |
| 66 | tgt[n] = ff_dot_productf(src, src - n, len); |
| 67 | |
| 68 | } |
| 69 | |
| 70 | static void decode(RA288Context *ractx, float gain, int cb_coef) |
| 71 | { |
no test coverage detected