diff options
author | Max Kellermann <max@duempel.org> | 2009-02-15 18:40:47 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-15 18:40:47 +0100 |
commit | 1f88cd73d43b4b67b27a5b0ba48cfa990e628244 (patch) | |
tree | f77ed49991dfc89bbf7efa382bae5d79136383d1 /src/decoder_list.c | |
parent | 6cfacc778c11565adc5af75cfa4579c1b6925c93 (diff) | |
download | mpd-1f88cd73d43b4b67b27a5b0ba48cfa990e628244.tar.gz mpd-1f88cd73d43b4b67b27a5b0ba48cfa990e628244.tar.xz mpd-1f88cd73d43b4b67b27a5b0ba48cfa990e628244.zip |
decoder_list: added configuration option to disable decoder plugins
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r-- | src/decoder_list.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c index a644a6370..34dc779c5 100644 --- a/src/decoder_list.c +++ b/src/decoder_list.c @@ -218,6 +218,10 @@ void decoder_plugin_init_all(void) const struct config_param *param = decoder_plugin_config(plugin->name); + if (!config_get_block_bool(param, "enabled", true)) + /* the plugin is disabled in mpd.conf */ + continue; + if (decoder_plugin_init(plugin, param)) decoder_plugins_enabled[i] = true; } |