Skip to content

Commit

Permalink
Fix implement cassert in resampler.h
Browse files Browse the repository at this point in the history
  • Loading branch information
brummer10 committed Feb 22, 2024
1 parent acfb4eb commit 3a0e14b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion trunk/src/gx_head/engine/gx_resampler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ int StreamingResampler::flush(float *output)
if (Resampler::process() != 0) {
return 0;
}
assert(inp_count == 0);
//assert(inp_count == 0);
return olen - out_count;
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/src/zita-resampler-1.1.0/zita-resampler/resampler.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


#include <zita-resampler/resampler-table.h>

#include <cassert>

class Resampler
{
Expand Down

0 comments on commit 3a0e14b

Please sign in to comment.