Mercurial > hg > sonic-annotator
comparison runner/FeatureExtractionManager.cpp @ 258:857ce6ecb163 piper-nopiper
Align Sonic Annotator with the new Piper-ified subrepos (bearing in mind we want neither Piper nor the plugin load checker in Sonic Annotator itself)
author | Chris Cannam |
---|---|
date | Fri, 04 Nov 2016 14:16:01 +0000 |
parents | 9a10c3ffff47 |
children | 68dc2d99a5b1 |
comparison
equal
deleted
inserted
replaced
257:46d3a6461b4a | 258:857ce6ecb163 |
---|---|
833 for (int i = startFrame; i < endFrame; i += m_blockSize) { | 833 for (int i = startFrame; i < endFrame; i += m_blockSize) { |
834 | 834 |
835 //!!! inefficient, although much of the inefficiency may be | 835 //!!! inefficient, although much of the inefficiency may be |
836 // susceptible to compiler optimisation | 836 // susceptible to compiler optimisation |
837 | 837 |
838 SampleBlock frames = reader->getInterleavedFrames(i, m_blockSize); | 838 auto frames = reader->getInterleavedFrames(i, m_blockSize); |
839 | 839 |
840 // We have to do our own channel handling here; we can't just | 840 // We have to do our own channel handling here; we can't just |
841 // leave it to the plugin adapter because the same plugin | 841 // leave it to the plugin adapter because the same plugin |
842 // adapter may have to serve for input files with various | 842 // adapter may have to serve for input files with various |
843 // numbers of channels (so the adapter is simply configured | 843 // numbers of channels (so the adapter is simply configured |