Mercurial > hg > svcore
diff data/fileio/WavFileReader.h @ 1326:54af1e21705c 3.0-integration
Update to use bqvec allocator for float vectors
author | Chris Cannam |
---|---|
date | Tue, 13 Dec 2016 15:23:21 +0000 |
parents | 4d9816ba0ebe |
children | b3cb0edc25cd |
line wrap: on
line diff
--- a/data/fileio/WavFileReader.h Tue Dec 13 12:03:48 2016 +0000 +++ b/data/fileio/WavFileReader.h Tue Dec 13 15:23:21 2016 +0000 @@ -50,7 +50,7 @@ * Must be safe to call from multiple threads with different * arguments on the same object at the same time. */ - virtual std::vector<float> getInterleavedFrames(sv_frame_t start, sv_frame_t count) const; + virtual floatvec_t getInterleavedFrames(sv_frame_t start, sv_frame_t count) const; static void getSupportedExtensions(std::set<QString> &extensions); static bool supportsExtension(QString ext); @@ -75,7 +75,7 @@ bool m_seekable; mutable QMutex m_mutex; - mutable std::vector<float> m_buffer; + mutable floatvec_t m_buffer; mutable sv_frame_t m_lastStart; mutable sv_frame_t m_lastCount;