From acf7f6f74e3b5d133fd121093e8ccf301a8697cd Mon Sep 17 00:00:00 2001
From: Chris Robinson <chris.kcat@gmail.com>
Date: Thu, 20 Feb 2020 19:18:07 -0800
Subject: Add a voice flag to indicate a voice has a pending stop

Pending/asynchronous stops to be implemented soon.
---
 al/source.cpp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

(limited to 'al/source.cpp')

diff --git a/al/source.cpp b/al/source.cpp
index b18ebe5d..54705e6a 100644
--- a/al/source.cpp
+++ b/al/source.cpp
@@ -2682,7 +2682,8 @@ START_API_FUNC
     auto count_free_voices = [](const ALuint count, const ALvoice &voice) noexcept -> ALuint
     {
         if(voice.mPlayState.load(std::memory_order_acquire) == ALvoice::Stopped
-            && voice.mSourceID.load(std::memory_order_relaxed) == 0u)
+            && voice.mSourceID.load(std::memory_order_relaxed) == 0u
+            && voice.mPendingStop.load(std::memory_order_relaxed) == false)
             return count + 1;
         return count;
     };
@@ -2760,7 +2761,8 @@ START_API_FUNC
         auto find_voice = [](const ALvoice &v) noexcept -> bool
         {
             return v.mPlayState.load(std::memory_order_acquire) == ALvoice::Stopped
-                && v.mSourceID.load(std::memory_order_relaxed) == 0u;
+                && v.mSourceID.load(std::memory_order_relaxed) == 0u
+                && v.mPendingStop.load(std::memory_order_relaxed) == false;
         };
         auto voices_end = context->mVoices.data() + context->mVoices.size();
         voice = std::find_if(context->mVoices.data(), voices_end, find_voice);
-- 
cgit v1.2.3