aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-10 09:39:23 +0100
committerMax Kellermann <max@duempel.org>2013-01-10 10:01:18 +0100
commitad15ca7104ca299c87b6ac86441573a00c589fef (patch)
tree2b939699f60a1b929d3948fcd57933b10a6a95f0
parent53117ac204cd99d9695dc317a78527b43c8e87b7 (diff)
DecoderControl: take ownership of client_cond
Don't let the "client" pass its own GCond. This was not used consistently.
-rw-r--r--src/DecoderControl.cxx5
-rw-r--r--src/DecoderControl.hxx2
-rw-r--r--src/PlayerControl.cxx6
-rw-r--r--src/PlayerThread.cxx2
4 files changed, 8 insertions, 7 deletions
diff --git a/src/DecoderControl.cxx b/src/DecoderControl.cxx
index 58d10948..2ffaf116 100644
--- a/src/DecoderControl.cxx
+++ b/src/DecoderControl.cxx
@@ -28,7 +28,7 @@
#define G_LOG_DOMAIN "decoder_control"
struct decoder_control *
-dc_new(GCond *client_cond)
+dc_new()
{
struct decoder_control *dc = g_new(struct decoder_control, 1);
@@ -36,7 +36,7 @@ dc_new(GCond *client_cond)
dc->mutex = g_mutex_new();
dc->cond = g_cond_new();
- dc->client_cond = client_cond;
+ dc->client_cond = g_cond_new();
dc->state = DECODE_STATE_STOP;
dc->command = DECODE_COMMAND_NONE;
@@ -60,6 +60,7 @@ dc_free(struct decoder_control *dc)
if (dc->song != NULL)
song_free(dc->song);
+ g_cond_free(dc->client_cond);
g_cond_free(dc->cond);
g_mutex_free(dc->mutex);
g_free(dc->mixramp_start);
diff --git a/src/DecoderControl.hxx b/src/DecoderControl.hxx
index f98a604f..42c28d78 100644
--- a/src/DecoderControl.hxx
+++ b/src/DecoderControl.hxx
@@ -133,7 +133,7 @@ struct decoder_control {
G_GNUC_MALLOC
struct decoder_control *
-dc_new(GCond *client_cond);
+dc_new();
void
dc_free(struct decoder_control *dc);
diff --git a/src/PlayerControl.cxx b/src/PlayerControl.cxx
index 1b5ca597..73230858 100644
--- a/src/PlayerControl.cxx
+++ b/src/PlayerControl.cxx
@@ -61,15 +61,15 @@ player_control::~player_control()
}
void
-player_wait_decoder(struct player_control *pc, struct decoder_control *dc)
+player_wait_decoder(gcc_unused struct player_control *pc,
+ struct decoder_control *dc)
{
assert(pc != NULL);
assert(dc != NULL);
- assert(dc->client_cond == pc->cond);
/* during this function, the decoder lock is held, because
we're waiting for the decoder thread */
- g_cond_wait(pc->cond, dc->mutex);
+ g_cond_wait(dc->client_cond, dc->mutex);
}
static void
diff --git a/src/PlayerThread.cxx b/src/PlayerThread.cxx
index 62b43739..31a9a2a8 100644
--- a/src/PlayerThread.cxx
+++ b/src/PlayerThread.cxx
@@ -1096,7 +1096,7 @@ player_task(gpointer arg)
{
struct player_control *pc = (struct player_control *)arg;
- struct decoder_control *dc = dc_new(pc->cond);
+ struct decoder_control *dc = dc_new();
decoder_thread_start(dc);
player_buffer = music_buffer_new(pc->buffer_chunks);