Commit 207786ff authored by Max Kellermann's avatar Max Kellermann

output_all: synchronize playback with player_control.notify

This patch fixes a longer delay when moving around songs in the playlist. The main thread wants to enqueue a new "next" song into the player thread, but the player thread is waiting inside audio_output_all_wait() for the output threads. Use player_control.notify there, so audio_output_all_wait() gets woken up by the main thread, too.
parent ed483766
......@@ -24,6 +24,7 @@
#include "conf.h"
#include "pipe.h"
#include "buffer.h"
#include "player_control.h"
#ifndef NDEBUG
#include "chunk.h"
......@@ -414,7 +415,7 @@ audio_output_all_wait(unsigned threshold)
if (audio_output_all_check() < threshold)
return true;
notify_wait(&audio_output_client_notify);
notify_wait(&pc.notify);
return audio_output_all_check() < threshold;
}
......
......@@ -22,6 +22,7 @@
#include "output_internal.h"
#include "chunk.h"
#include "pipe.h"
#include "player_control.h"
#include <glib.h>
......@@ -156,7 +157,7 @@ static void ao_play(struct audio_output *ao)
ao->chunk_finished = true;
g_mutex_unlock(ao->mutex);
notify_signal(&audio_output_client_notify);
notify_signal(&pc.notify);
}
static void ao_pause(struct audio_output *ao)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment