From e218999b4f408b7fd35daa9d021288b68f5b4ab5 Mon Sep 17 00:00:00 2001
From: Chris Robinson <chris.kcat@gmail.com>
Date: Sat, 22 Dec 2018 22:14:25 -0800
Subject: Dynamically sort the effect slots when mixing

This is to be able to support effects that output to other effects. When an
effect outputs to another effect, the former needs to process first, so the
former mixes to the latter's buffer before the latter is processed.

This sorting needs to happen in the mixer because the effect slot's "Target"
property changes asynchronously.
---
 OpenAL32/alAuxEffectSlot.cpp | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

(limited to 'OpenAL32/alAuxEffectSlot.cpp')

diff --git a/OpenAL32/alAuxEffectSlot.cpp b/OpenAL32/alAuxEffectSlot.cpp
index db22ca4c..ca279aee 100644
--- a/OpenAL32/alAuxEffectSlot.cpp
+++ b/OpenAL32/alAuxEffectSlot.cpp
@@ -71,10 +71,11 @@ void AddActiveEffectSlots(const ALuint *slotids, ALsizei count, ALCcontext *cont
     ALsizei newcount{curarray->count + count};
 
     /* Insert the new effect slots into the head of the array, followed by the
-     * existing ones.
+     * existing ones. Allocate twice as much space for effect slots so the
+     * mixer has a place to sort them.
      */
     auto newarray = static_cast<ALeffectslotArray*>(al_calloc(DEF_ALIGN,
-        FAM_SIZE(ALeffectslotArray, slot, newcount)));
+        FAM_SIZE(ALeffectslotArray, slot, newcount*2)));
     newarray->count = newcount;
     auto slotiter = std::transform(slotids, slotids+count, newarray->slot,
         [context](ALuint id) noexcept -> ALeffectslot*
@@ -99,7 +100,7 @@ void AddActiveEffectSlots(const ALuint *slotids, ALsizei count, ALCcontext *cont
     {
         curarray = newarray;
         newarray = static_cast<ALeffectslotArray*>(al_calloc(DEF_ALIGN,
-            FAM_SIZE(ALeffectslotArray, slot, newcount)));
+            FAM_SIZE(ALeffectslotArray, slot, newcount*2)));
         newarray->count = newcount;
         std::copy_n(curarray->slot, newcount, newarray->slot);
         al_free(curarray);
@@ -122,7 +123,7 @@ void RemoveActiveEffectSlots(const ALuint *slotids, ALsizei count, ALCcontext *c
      * any) of the effect slots to remove are in the array.
      */
     auto newarray = static_cast<ALeffectslotArray*>(al_calloc(DEF_ALIGN,
-        FAM_SIZE(ALeffectslotArray, slot, curarray->count)));
+        FAM_SIZE(ALeffectslotArray, slot, curarray->count*2)));
 
     /* Copy each element in curarray to newarray whose ID is not in slotids. */
     const ALuint *slotids_end{slotids + count};
-- 
cgit v1.2.3