We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55de438 commit 96dbae2Copy full SHA for 96dbae2
src/AudioTools/Filter.h
@@ -404,7 +404,7 @@ class ConverterNChannels : public BaseConverter<T> {
404
int count = size / channels;
405
T *sample = (T *)src;
406
for (size_t j = 0; j < count; j++) {
407
- for (int channel = 0; j < channels; j++) {
+ for (int channel = 0; channel < channels; channel++) {
408
if (filters[channel]!=nullptr){
409
*sample = filters[channel]->process(*sample);
410
}
0 commit comments