cmProc2.c : changes abs() to fabsf() in cmExpanderExec().

This commit is contained in:
kevin 2015-06-01 12:51:18 -04:00
parent 346915b450
commit cc5aade968

View File

@ -5711,7 +5711,7 @@ cmRC_t cmExpanderExec( cmExpander* p, cmSample_t* x, cmSample_t* y, unsigne
for(i=0; i<xyN; ++i) for(i=0; i<xyN; ++i)
{ {
// NOTE: using abs() instead of pow(x,2) // NOTE: using abs() instead of pow(x,2)
p->rmsV[p->rmsIdx] = abs(x[i]); p->rmsV[p->rmsIdx] = fabsf(x[i]);
if( ++p->rmsIdx >= p->rmsN ) if( ++p->rmsIdx >= p->rmsN )
p->rmsIdx = 0; p->rmsIdx = 0;