示例#1
0
static void dca_lfe_fir0_c(float *out, const float *in, const float *coefs)
{
    dca_lfe_fir(out, in, coefs, 32);
}
示例#2
0
文件: dcadsp.c 项目: WilliamRen/libav
static void dca_lfe_fir1_c(float *out, const float *in, const float *coefs,
                           float scale)
{
    dca_lfe_fir(out, in, coefs, 64, scale);
}