From 644fc4877642078c63cf13d6e65d6a3e7272996b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 5 Jul 2009 06:54:45 +0200 Subject: conf: registered option "filter" Add this option to the user's manual. --- doc/user.xml | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/conf.c | 1 + 2 files changed, 58 insertions(+) diff --git a/doc/user.xml b/doc/user.xml index e230f3837..787f3e3bd 100644 --- a/doc/user.xml +++ b/doc/user.xml @@ -302,6 +302,63 @@ cd mpd-0.14.2 + +
+ Configuring filters + + + Filters are plugins which modify an audio stream. + + + + To configure a filter, add a filter block + to mpd.conf: + + + filter { + plugin "volume" + name "software volume" +} + + + + The following table lists the filter + options valid for all plugins: + + + + + + + + Name + + + Description + + + + + + + plugin + + + The name of the plugin. + + + + + name + + + The name of the filter. + + + + + +
diff --git a/src/conf.c b/src/conf.c index 385dff4d4..6209335d3 100644 --- a/src/conf.c +++ b/src/conf.c @@ -94,6 +94,7 @@ static struct config_entry config_entries[] = { { .name = CONF_DECODER, true, true }, { .name = CONF_INPUT, true, true }, { .name = CONF_GAPLESS_MP3_PLAYBACK, false, false }, + { .name = "filter", true, true }, }; static bool -- cgit v1.2.3