Skip to content

Commit ec5b1e8

Browse files
committed
Add mix_down_sample to echo output.
1 parent 05db339 commit ec5b1e8

File tree

1 file changed

+1
-0
lines changed
  • shared-module/audiodelays

1 file changed

+1
-0
lines changed

shared-module/audiodelays/Echo.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,7 @@ audioio_get_buffer_result_t audiodelays_echo_get_buffer(audiodelays_echo_obj_t *
478478
}
479479

480480
word = echo + sample_word;
481+
word = mix_down_sample(word);
481482

482483
if (MP_LIKELY(self->bits_per_sample == 16)) {
483484
word_buffer[i] = (int16_t)((sample_word * (MICROPY_FLOAT_CONST(1.0) - mix)) + (word * mix));

0 commit comments

Comments
 (0)