Use a ScopeLock around condition.wait()
This commit is contained in:
parent
9f1ada898e
commit
4d6192adcd
@ -618,15 +618,17 @@ osx_output_play(AudioOutput *ao, const void *chunk, size_t size,
|
||||
{
|
||||
OSXOutput *od = (OSXOutput *)ao;
|
||||
|
||||
od->mutex.lock();
|
||||
while (true) {
|
||||
if (od->ring_buffer->write_available() > 0)
|
||||
break;
|
||||
{
|
||||
const ScopeLock protect(od->mutex);
|
||||
|
||||
/* wait for some free space in the buffer */
|
||||
od->condition.wait(od->mutex);
|
||||
while (true) {
|
||||
if (od->ring_buffer->write_available() > 0)
|
||||
break;
|
||||
|
||||
/* wait for some free space in the buffer */
|
||||
od->condition.wait(od->mutex);
|
||||
}
|
||||
}
|
||||
od->mutex.unlock();
|
||||
|
||||
return od->ring_buffer->push((uint8_t *) chunk, size);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user