diff options
author | Max Kellermann <max@duempel.org> | 2009-03-02 23:08:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-02 23:08:17 +0100 |
commit | cfb350f4f01f28cdd6fa973602bd45681a64cf46 (patch) | |
tree | e2614273f1c259ff2d0bf7703057ee9e2ea165df /src/conf.c | |
parent | 9a350acf0497acd19e05b77e6aa985552c13a94a (diff) | |
download | mpd-cfb350f4f01f28cdd6fa973602bd45681a64cf46.tar.gz mpd-cfb350f4f01f28cdd6fa973602bd45681a64cf46.tar.xz mpd-cfb350f4f01f28cdd6fa973602bd45681a64cf46.zip |
input: pass config_param to input_plugin.init()
Allow input plugins to configure with an "input" block in mpd.conf.
Also allow the user to disable a plugin completely.
Diffstat (limited to 'src/conf.c')
-rw-r--r-- | src/conf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/conf.c b/src/conf.c index 2f022411e..a79276185 100644 --- a/src/conf.c +++ b/src/conf.c @@ -214,6 +214,7 @@ void config_global_init(void) registerConfigParam(CONF_METADATA_TO_USE, 0, 0); registerConfigParam(CONF_SAVE_ABSOLUTE_PATHS, 0, 0); registerConfigParam(CONF_DECODER, true, true); + registerConfigParam(CONF_INPUT, true, true); registerConfigParam(CONF_GAPLESS_MP3_PLAYBACK, 0, 0); } |