aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-25 13:44:27 +0100
committerMax Kellermann <max@duempel.org>2009-01-25 13:44:27 +0100
commitac0e799965afef198e3cba1eb11f018cae680ac3 (patch)
treed63667b1e2f26a4b1b29d1f2724fae7504a6ed0e /src
parent2c45224be72e06463ddd48956ecaef61da9dfecb (diff)
downloadmpd-ac0e799965afef198e3cba1eb11f018cae680ac3.tar.gz
mpd-ac0e799965afef198e3cba1eb11f018cae680ac3.tar.xz
mpd-ac0e799965afef198e3cba1eb11f018cae680ac3.zip
decoder_control: added decoder_control.thread
decoder_control.thread contains the handle of the decoder thread, or NULL if the decoder thread isn't running.
Diffstat (limited to 'src')
-rw-r--r--src/decoder_control.c9
-rw-r--r--src/decoder_control.h6
-rw-r--r--src/decoder_thread.c6
-rw-r--r--src/player_thread.c2
4 files changed, 17 insertions, 6 deletions
diff --git a/src/decoder_control.c b/src/decoder_control.c
index b934d516f..6d2efd0d7 100644
--- a/src/decoder_control.c
+++ b/src/decoder_control.c
@@ -102,8 +102,13 @@ dc_seek(struct notify *notify, double where)
}
void
-dc_quit(struct notify *notify)
+dc_quit(void)
{
+ assert(dc.thread != NULL);
+
dc.quit = true;
- dc_command(notify, DECODE_COMMAND_STOP);
+ dc_command_async(DECODE_COMMAND_STOP);
+
+ g_thread_join(dc.thread);
+ dc.thread = NULL;
}
diff --git a/src/decoder_control.h b/src/decoder_control.h
index 4fd0f9edc..542cfe78a 100644
--- a/src/decoder_control.h
+++ b/src/decoder_control.h
@@ -45,6 +45,10 @@ enum decoder_state {
};
struct decoder_control {
+ /** the handle of the decoder thread, or NULL if the decoder
+ thread isn't running */
+ GThread *thread;
+
struct notify notify;
volatile enum decoder_state state;
@@ -124,6 +128,6 @@ bool
dc_seek(struct notify *notify, double where);
void
-dc_quit(struct notify *notify);
+dc_quit(void);
#endif
diff --git a/src/decoder_thread.c b/src/decoder_thread.c
index 12449237f..97555f44d 100644
--- a/src/decoder_thread.c
+++ b/src/decoder_thread.c
@@ -258,8 +258,10 @@ static gpointer decoder_task(G_GNUC_UNUSED gpointer arg)
void decoder_thread_start(void)
{
GError *e = NULL;
- GThread *t;
- if (!(t = g_thread_create(decoder_task, NULL, FALSE, &e)))
+ assert(dc.thread == NULL);
+
+ dc.thread = g_thread_create(decoder_task, NULL, true, &e);
+ if (dc.thread == NULL)
FATAL("Failed to spawn decoder task: %s\n", e->message);
}
diff --git a/src/player_thread.c b/src/player_thread.c
index c5060fcb4..dc263b6ad 100644
--- a/src/player_thread.c
+++ b/src/player_thread.c
@@ -526,7 +526,7 @@ static gpointer player_task(G_GNUC_UNUSED gpointer arg)
break;
case PLAYER_COMMAND_EXIT:
- dc_quit(&pc.notify);
+ dc_quit();
closeAudioDevice();
player_command_finished();
g_thread_exit(NULL);