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/playlist_state.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/playlist_state.c') diff --git a/src/playlist_state.c b/src/playlist_state.c index d97fb1369..b0cf961f7 100644 --- a/src/playlist_state.c +++ b/src/playlist_state.c @@ -187,6 +187,12 @@ playlist_state_restore(const char *line, FILE *fp, struct playlist *playlist) if (!queue_valid_position(&playlist->queue, current)) current = 0; + /* enable all devices for the first time; this must be + called here, after the audio output states were + restored, before playback begins */ + if (state != PLAYER_STATE_STOP) + pc_update_audio(); + if (state == PLAYER_STATE_STOP /* && config_option */) playlist->current = current; else if (seek_time == 0) -- cgit v1.2.3