MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / convolve

Function convolve

libavcodec/ra288.c:63–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63static 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
70static void decode(RA288Context *ractx, float gain, int cb_coef)
71{

Callers 1

do_hybrid_windowFunction · 0.85

Calls 1

ff_dot_productfFunction · 0.85

Tested by

no test coverage detected