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/input/mms_input_plugin.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/input/mms_input_plugin.c')
-rw-r--r-- | src/input/mms_input_plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/input/mms_input_plugin.c b/src/input/mms_input_plugin.c index d449d058a..168203a28 100644 --- a/src/input/mms_input_plugin.c +++ b/src/input/mms_input_plugin.c @@ -115,6 +115,7 @@ input_mms_seek(G_GNUC_UNUSED struct input_stream *is, } const struct input_plugin input_plugin_mms = { + .name = "mms", .open = input_mms_open, .close = input_mms_close, .buffer = input_mms_buffer, |