Remove unneeded add bias from 3 functions.

DSPContext.vector_fmul_window()
DCADSPContext.lfe_fir()
SynthFilterContext.synth_filter_float()

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Justin Ruggles
2011-01-31 19:26:02 +00:00
committed by Mans Rullgard
parent 8cb3c557a9
commit 80ba1ddb58
21 changed files with 59 additions and 80 deletions

View File

@@ -21,7 +21,7 @@
typedef struct DCADSPContext {
void (*lfe_fir)(float *out, const float *in, const float *coefs,
int decifactor, float scale, float bias);
int decifactor, float scale);
} DCADSPContext;
void ff_dcadsp_init(DCADSPContext *s);