Skip to content

Commit

Permalink
Slightly lower latency for Poly Octave down
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Mar 14, 2024
1 parent 20be8f6 commit 639ecdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/processors/other/poly_octave/DelayPitchShifter.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ struct Delay

void prepare (double sample_rate, T initial_phase_offset_01 = {})
{
N_int = static_cast<size_t> (sample_rate * 0.075);
N_int = static_cast<size_t> (sample_rate * 0.06);
delay_buffer.resize (2 * N_int, T {});
N = static_cast<T> (N_int);
write_pointer = 0;
Expand Down

0 comments on commit 639ecdc

Please sign in to comment.