From e53ca368a5448291ca2783b8061727635084618f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 23 Oct 2009 10:55:52 +0200 Subject: output_plugin: added methods enable() and disable() With these methods, an output plugin can allocate some global resources only if it is actually enabled. The method enable() is called after daemonization, which allows for more sophisticated resource allocation during that method. --- src/player_thread.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/player_thread.c') diff --git a/src/player_thread.c b/src/player_thread.c index f68f61a04..1794ad404 100644 --- a/src/player_thread.c +++ b/src/player_thread.c @@ -350,6 +350,11 @@ static void player_process_command(struct player *player) case PLAYER_COMMAND_CLOSE_AUDIO: break; + case PLAYER_COMMAND_UPDATE_AUDIO: + audio_output_all_enable_disable(); + player_command_finished(); + break; + case PLAYER_COMMAND_QUEUE: assert(pc.next_song != NULL); assert(!player->queued); @@ -805,6 +810,11 @@ static gpointer player_task(G_GNUC_UNUSED gpointer arg) break; + case PLAYER_COMMAND_UPDATE_AUDIO: + audio_output_all_enable_disable(); + player_command_finished(); + break; + case PLAYER_COMMAND_EXIT: dc_quit(); audio_output_all_close(); -- cgit v1.2.3