diff options
Diffstat (limited to 'sms/filters.c')
-rw-r--r-- | sms/filters.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sms/filters.c b/sms/filters.c index 98ab246..b1ca9fc 100644 --- a/sms/filters.c +++ b/sms/filters.c @@ -65,14 +65,14 @@ sfloat sms_deEmphasis(sfloat fInput, SMS_SynthParams *pSynthParams) * \param fInput input sample * \return value is the filtered sample */ -static sfloat ZeroPoleFilter (float *pFa, sfloat *pFb, int nCoeff, sfloat fInput ) +static sfloat ZeroPoleFilter (sfloat *pFa, sfloat *pFb, int nCoeff, sfloat fInput ) { double fOut = 0; int iSection; /* static sfloat *pD = NULL; */ /* if (pD == NULL) */ -/* pD = (sfloat *) calloc(5, sizeof(float)); */ +/* pD = (sfloat *) calloc(5, sizeof(sfloat)); */ static sfloat pD[5] = {0, 0, 0, 0, 0}; pD[0] = fInput; |