Skip to content

Commit

Permalink
Fix stale comment in eq.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
Themaister committed May 28, 2014
1 parent 66d4148 commit 748cd81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion audio/filters/eq.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ static void create_filter(struct eq_data *eq, unsigned size_log2,
// Apply a window to smooth out the frequency repsonse.
for (i = 0; i < (int)eq->block_size; i++)
{
// Simple cosine window.
// Kaiser window.
double phase = (double)i / (eq->block_size - 1);
phase = 2.0 * (phase - 0.5);
time_filter[i] *= window_mod * kaiser_window(phase, beta);
Expand Down

0 comments on commit 748cd81

Please sign in to comment.