Mercurial > hg > svcore
diff data/fileio/WavFileWriter.cpp @ 1520:954d0cf29ca7 import-audio-data
Switch the normalisation option in WritableWaveFileModel from normalising on read to normalising on write, so that the saved file is already normalised and therefore can be read again without having to remember to normalise it
author | Chris Cannam |
---|---|
date | Wed, 12 Sep 2018 13:56:56 +0100 |
parents | b837ccdd4946 |
children | 8988b27ebf38 |
line wrap: on
line diff
--- a/data/fileio/WavFileWriter.cpp Tue Sep 11 14:36:51 2018 +0100 +++ b/data/fileio/WavFileWriter.cpp Wed Sep 12 13:56:56 2018 +0100 @@ -21,6 +21,9 @@ #include "base/Exceptions.h" #include "base/Debug.h" +#include <bqvec/Allocators.h> +#include <bqvec/VectorOps.h> + #include <QFileInfo> #include <iostream> @@ -196,7 +199,18 @@ return isOK(); } - + +bool +WavFileWriter::putInterleavedFrames(const floatvec_t &frames) +{ + sv_frame_t count = frames.size() / m_channels; + float **samples = breakfastquay::allocate_channels<float>(m_channels, count); + breakfastquay::v_deinterleave(samples, frames.data(), m_channels, count); + bool result = writeSamples(samples, count); + breakfastquay::deallocate_channels(samples, m_channels); + return result; +} + bool WavFileWriter::close() {