output: added option to disable audio outputs by default
The option "enabled" is on by default. If you specify "enabled no" in an audio_output section, then this device is disabled by default.
This commit is contained in:
@@ -91,7 +91,7 @@ audio_output_init(struct audio_output *ao, const struct config_param *param)
|
||||
|
||||
ao->name = name;
|
||||
ao->plugin = plugin;
|
||||
ao->enabled = true;
|
||||
ao->enabled = config_get_block_bool(param, "enabled", true);
|
||||
ao->open = false;
|
||||
ao->reopen_after = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user