diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-07-10 15:04:07 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-07-10 15:04:07 +0000 |
| commit | fc498ec398073b5a9ecb8cf6c14336a2278567c2 (patch) | |
| tree | 3dacc2d62468ec108b99330294fc2e2fb7716c4e /src/plugins/Effect | |
| parent | ab272e2fd7577d069ab07c8b9a056ff76ae1b4f4 (diff) | |
| download | qmmp-fc498ec398073b5a9ecb8cf6c14336a2278567c2.tar.gz qmmp-fc498ec398073b5a9ecb8cf6c14336a2278567c2.tar.bz2 qmmp-fc498ec398073b5a9ecb8cf6c14336a2278567c2.zip | |
fixed regression
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5241 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Effect')
| -rw-r--r-- | src/plugins/Effect/srconverter/srconverter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/Effect/srconverter/srconverter.cpp b/src/plugins/Effect/srconverter/srconverter.cpp index 885c1dac1..239d426ad 100644 --- a/src/plugins/Effect/srconverter/srconverter.cpp +++ b/src/plugins/Effect/srconverter/srconverter.cpp @@ -119,11 +119,11 @@ void SRConverter::configure(quint32 freq, ChannelMap map, Qmmp::AudioFormat for else qDebug("SRConverter: src_new(): %s", src_strerror(m_srcError)); - Effect::configure(m_overSamplingFs, map, format); m_sz = audioParameters().sampleSize(); m_src_data.data_in = new float[QMMP_BLOCK_FRAMES * channels() * 2]; m_src_data.data_out = new float[int(m_src_data.src_ratio * QMMP_BLOCK_FRAMES * channels() * 2 + 2)]; } + Effect::configure(m_overSamplingFs, map, format); } void SRConverter::freeSRC() |
