summaryrefslogtreecommitdiff
path: root/soundlib/plugins/PlugInterface.cpp
diff options
context:
space:
mode:
authorJames Cowgill <jcowgill@debian.org>2017-06-07 11:25:42 +0100
committerJames Cowgill <jcowgill@debian.org>2017-06-07 11:25:42 +0100
commit75940443899c935dee48383c8ad138c5cd96ec63 (patch)
treee9c88051e13824cf2acbdf95c4477c402e57ed22 /soundlib/plugins/PlugInterface.cpp
parent0536b303d5ad97218f0644de9cd59e7f4aee7434 (diff)
New upstream version 0.2.8190~beta24
Diffstat (limited to 'soundlib/plugins/PlugInterface.cpp')
-rw-r--r--soundlib/plugins/PlugInterface.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/soundlib/plugins/PlugInterface.cpp b/soundlib/plugins/PlugInterface.cpp
index 2b20775..7776fca 100644
--- a/soundlib/plugins/PlugInterface.cpp
+++ b/soundlib/plugins/PlugInterface.cpp
@@ -237,8 +237,8 @@ double IMixPlugin::GetOutputLatency() const
}
-void IMixPlugin::ProcessMixOps(float *pOutL, float *pOutR, float *leftPlugOutput, float *rightPlugOutput, uint32 numFrames) const
-//-------------------------------------------------------------------------------------------------------------------------------
+void IMixPlugin::ProcessMixOps(float * MPT_RESTRICT pOutL, float * MPT_RESTRICT pOutR, float * MPT_RESTRICT leftPlugOutput, float * MPT_RESTRICT rightPlugOutput, uint32 numFrames) const
+//---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
{
/* float *leftPlugOutput;
float *rightPlugOutput;
@@ -290,8 +290,8 @@ void IMixPlugin::ProcessMixOps(float *pOutL, float *pOutR, float *leftPlugOutput
wetRatio *= m_fGain;
dryRatio *= m_fGain;
- float *plugInputL = m_mixBuffer.GetInputBuffer(0);
- float *plugInputR = m_mixBuffer.GetInputBuffer(1);
+ float * MPT_RESTRICT plugInputL = m_mixBuffer.GetInputBuffer(0);
+ float * MPT_RESTRICT plugInputR = m_mixBuffer.GetInputBuffer(1);
// Mix operation
switch(mixop)