Skip to content

Commit

Permalink
src/amy.c: Correct comment describing echo.filter_coef.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpwe committed Sep 6, 2024
1 parent a688916 commit a82e9a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/amy.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ typedef struct echo_config {
uint32_t delay_samples; // Current delay, quantized to samples.
uint32_t max_delay_samples; // Maximum delay, i.e. size of allocated delay line.
SAMPLE feedback; // Gain applied when feeding back output to input.
SAMPLE filter_coef; // Echo is filtered by a single real zero, this is its location. 1 = max higpass, -1 = max lowpass.
SAMPLE filter_coef; // Echo is filtered by a single real zero, this is its location. -1 = max higpass, 1 = max lowpass.
} echo_config_t;

echo_config_t echo = {ECHO_DEFAULT_LEVEL, ECHO_DEFAULT_DELAY, ECHO_DEFAULT_MAX_DELAY, ECHO_DEFAULT_FEEDBACK, ECHO_DEFAULT_FILTER_COEF};
Expand Down

0 comments on commit a82e9a2

Please sign in to comment.