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 930818a commit 8818535Copy full SHA for 8818535
src/AudioTools/CoreAudio/AudioStreamsConverter.h
@@ -863,12 +863,6 @@ class FormatConverterStream : public ReformatBaseStream {
863
ResampleStream sampleRateConverter;
864
bool is_buffered = true;
865
866
- /// e.g if we do channels 2->1 we nead to double the input data
867
- /// @return
868
- float byteFactor() {
869
- return (float)from_cfg.channels / (float)to_cfg.channels *
870
- (float)from_cfg.bits_per_sample / (float)to_cfg.bits_per_sample;
871
- }
872
};
873
874
} // namespace audio_tools
0 commit comments