Skip to content

Commit

Permalink
Remove two incorrect asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul committed Jan 16, 2025
1 parent d9823c7 commit 9bffc36
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/synth/synth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ void Synth::process(const clap_output_events_t *outq)
d.end_of_input = 0;
d.src_ratio = sampleRateRatio;

assert(d.input_frames_used == blockSize);
src_process(lState, &d);
auto lgen = d.output_frames_gen;

Expand All @@ -231,7 +230,6 @@ void Synth::process(const clap_output_events_t *outq)
d.end_of_input = 0;
d.src_ratio = sampleRateRatio;

assert(d.input_frames_used == blockSize);
src_process(rState, &d);
auto rgen = d.output_frames_gen;

Expand Down

0 comments on commit 9bffc36

Please sign in to comment.