Must lock/unlock around wait
This commit is contained in:
parent
9835a2545d
commit
5617521380
@ -614,6 +614,7 @@ osx_output_play(AudioOutput *ao, const void *chunk, size_t size,
|
|||||||
{
|
{
|
||||||
OSXOutput *od = (OSXOutput *)ao;
|
OSXOutput *od = (OSXOutput *)ao;
|
||||||
|
|
||||||
|
od->mutex.lock();
|
||||||
while (true) {
|
while (true) {
|
||||||
if (od->ring_buffer->write_available() > 0)
|
if (od->ring_buffer->write_available() > 0)
|
||||||
break;
|
break;
|
||||||
@ -621,6 +622,7 @@ osx_output_play(AudioOutput *ao, const void *chunk, size_t size,
|
|||||||
/* wait for some free space in the buffer */
|
/* wait for some free space in the buffer */
|
||||||
od->condition.wait(od->mutex);
|
od->condition.wait(od->mutex);
|
||||||
}
|
}
|
||||||
|
od->mutex.unlock();
|
||||||
|
|
||||||
return od->ring_buffer->push((uint8_t *) chunk, size);
|
return od->ring_buffer->push((uint8_t *) chunk, size);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user