We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6fe188 + 75db2bf commit 87bcef3Copy full SHA for 87bcef3
framework/modules/saf_utilities/saf_utility_filters.c
@@ -66,7 +66,7 @@ static void applyWindowingFunction
66
67
case WINDOWING_FUNCTION_BARTLETT:
68
for(i=0; i<winlength; i++)
69
- x[i] *= 1.0f - 2.0f * fabsf((float)i-((float)N/2.0f))/(float)N;
+ x[i] *= 1.0f - 2.0f * (fabsf((float)i-((float)N/2.0f))/(float)N);
70
break;
71
72
case WINDOWING_FUNCTION_BLACKMAN:
0 commit comments