kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit 6d8923feb4f7b538289b58674c3b54a85932915c
parent a58ba61f6867c6ae088dff891459753e6025cef8
Author: [email protected] <[email protected]>
Date:   Mon,  1 Apr 2019 17:14:35 +0000

Sample Rate Converter: use read_channels/write_channels

Diffstat:
Mtools/sample_rate_converter.cpp | 17++++-------------
1 file changed, 4 insertions(+), 13 deletions(-)

diff --git a/tools/sample_rate_converter.cpp b/tools/sample_rate_converter.cpp @@ -30,14 +30,8 @@ int main(int argc, char** argv) audio_reader_wav<double> reader(open_file_for_reading(argv[1])); const size_t input_sr = reader.format().samplerate; - // Read interleaved audio - univector<double> input_interleaved(reader.format().length * reader.format().channels); - reader.read(input_interleaved.data(), input_interleaved.size()); - - // Deinterleave audio - univector2d<double> input_channels( - reader.format().channels, univector<double>(input_interleaved.size() / reader.format().channels)); - deinterleave(input_channels, input_interleaved); + // Read channels of audio + univector2d<double> input_channels = reader.read_channels(reader.format().length); // Prepare conversion univector2d<double> output_channels; @@ -85,16 +79,13 @@ int main(int argc, char** argv) output_channels.push_back(std::move(output)); } - // Interleave channels - univector<double> output_interleved = interleave(output_channels); - // Initialize WAV writer audio_writer_wav<double> writer( open_file_for_writing(argv[2]), audio_format{ reader.format().channels, reader.format().type, kfr::fmax(output_sr) }); - // Write interleaved audio - writer.write(output_interleved.data(), output_interleved.size()); + // Write audio + writer.write_channels(output_channels); return 0; }