summaryrefslogtreecommitdiffstats
path: root/scripts/generate_sample_functions.py
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2015-01-30 01:15:07 +0100
committerDaniel Schürmann <daschuer@mixxx.org>2015-01-30 01:15:07 +0100
commitd2471dccf0d51b89a9b888df8c38e10baab18b66 (patch)
tree12ea702e858528c3945bb2e4fed27a5aacd65c22 /scripts/generate_sample_functions.py
parent08f422398dace4784ef527041c563668a793b9f7 (diff)
User FastVector for GainCache
Diffstat (limited to 'scripts/generate_sample_functions.py')
-rwxr-xr-xscripts/generate_sample_functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generate_sample_functions.py b/scripts/generate_sample_functions.py
index 786f41f7c3..d84dc9b837 100755
--- a/scripts/generate_sample_functions.py
+++ b/scripts/generate_sample_functions.py
@@ -40,7 +40,7 @@ def write_channelmixer_autogen(output, num_channels):
header = 'void ChannelMixer::mixChannels('
args = ['const EngineMaster::GainCalculator& gainCalculator',
'EngineMaster::FastVector<EngineMaster::ChannelInfo*, kMaxChannels>* activeChannels',
- 'QList<CSAMPLE>* channelGainCache',
+ 'EngineMaster::FastVector<CSAMPLE, kMaxChannels>* channelGainCache',
'CSAMPLE* pOutput',
'unsigned int iBufferSize']
output.extend(hanging_indent(header, args, ',', ') {'))