aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer_c.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-05-04 00:13:19 -0700
committerChris Robinson <[email protected]>2014-05-04 00:13:19 -0700
commita2bb4c3f1344ad5876181fd0c3131e018915276e (patch)
treeab376924a6b9fb23a453d910c69a8168ae6475b8 /Alc/mixer_c.c
parentd066c7b124a7efa771996bc7ba09e0e074683739 (diff)
Always use the current gains when mixing
The current gain gets explicitly set to the target when the stepping is finished to ensure the target is still used. This way, however, will allow for asynchronously 'canceling' a fade by setting the counter to 0.
Diffstat (limited to 'Alc/mixer_c.c')
-rw-r--r--Alc/mixer_c.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/Alc/mixer_c.c b/Alc/mixer_c.c
index efbbf9cb..2b8325ae 100644
--- a/Alc/mixer_c.c
+++ b/Alc/mixer_c.c
@@ -93,19 +93,20 @@ void MixDirect_C(DirectParams *params, const ALfloat *restrict data, ALuint srcc
for(c = 0;c < MaxChannels;c++)
{
ALuint pos = 0;
+ DrySend = params->Mix.Gains.Current[srcchan][c];
Step = params->Mix.Gains.Step[srcchan][c];
if(Step != 1.0f && Counter > 0)
{
- DrySend = params->Mix.Gains.Current[srcchan][c];
for(;pos < BufferSize && pos < Counter;pos++)
{
OutBuffer[c][OutPos+pos] += data[pos]*DrySend;
DrySend *= Step;
}
+ if(pos == Counter)
+ DrySend = params->Mix.Gains.Target[srcchan][c];
params->Mix.Gains.Current[srcchan][c] = DrySend;
}
- DrySend = params->Mix.Gains.Target[srcchan][c];
if(!(DrySend > GAIN_SILENCE_THRESHOLD))
continue;
for(;pos < BufferSize;pos++)
@@ -123,19 +124,20 @@ void MixSend_C(SendParams *params, const ALfloat *restrict data,
{
ALuint pos = 0;
+ WetSend = params->Gain.Current;
Step = params->Gain.Step;
if(Step != 1.0f && Counter > 0)
{
- WetSend = params->Gain.Current;
for(;pos < BufferSize && pos < Counter;pos++)
{
OutBuffer[0][OutPos+pos] += data[pos]*WetSend;
WetSend *= Step;
}
+ if(pos == Counter)
+ WetSend = params->Gain.Target;
params->Gain.Current = WetSend;
}
- WetSend = params->Gain.Target;
if(!(WetSend > GAIN_SILENCE_THRESHOLD))
return;
for(;pos < BufferSize;pos++)