Merge branch 'bugfix/soundstream_contention'
This commit is contained in:
commit
274b9331f0
@ -274,17 +274,21 @@ void SoundStream::streamData()
|
||||
m_isStreaming = false;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Create the buffers
|
||||
alCheck(alGenBuffers(BufferCount, m_buffers));
|
||||
for (int i = 0; i < BufferCount; ++i)
|
||||
m_endBuffers[i] = false;
|
||||
// Create the buffers
|
||||
alCheck(alGenBuffers(BufferCount, m_buffers));
|
||||
for (int i = 0; i < BufferCount; ++i)
|
||||
m_endBuffers[i] = false;
|
||||
|
||||
// Fill the queue
|
||||
requestStop = fillQueue();
|
||||
// Fill the queue
|
||||
requestStop = fillQueue();
|
||||
|
||||
// Play the sound
|
||||
alCheck(alSourcePlay(m_source));
|
||||
// Play the sound
|
||||
alCheck(alSourcePlay(m_source));
|
||||
|
||||
{
|
||||
Lock lock(m_threadMutex);
|
||||
|
||||
// Check if the thread was launched Paused
|
||||
if (m_threadStartState == Paused)
|
||||
|
Loading…
Reference in New Issue
Block a user