aboutsummaryrefslogtreecommitdiffstats
path: root/src/filter_registry.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-07-03 01:06:17 +0200
committerMax Kellermann <max@duempel.org>2009-07-03 01:06:17 +0200
commite3c436f4113086b5bc478aa87c369741b2bfecd3 (patch)
tree33f4955edff10f85116abf0ddbc9cbf4c4c26b08 /src/filter_registry.c
parent48f3e13beccec63de5322e2cc0c241527efeabef (diff)
downloadmpd-e3c436f4113086b5bc478aa87c369741b2bfecd3.tar.gz
mpd-e3c436f4113086b5bc478aa87c369741b2bfecd3.tar.xz
mpd-e3c436f4113086b5bc478aa87c369741b2bfecd3.zip
filter: added "volume" plugin
The "volume" filter plugin will replace the current software volume code. One "volume" filter may be attached to each output device. This will allow the user to use hardware mixers for some devices, and software mixers for other devices at the same time. Currently, neither the filter API nor the "volume" plugin is integrated into MPD.
Diffstat (limited to 'src/filter_registry.c')
-rw-r--r--src/filter_registry.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/filter_registry.c b/src/filter_registry.c
index 90ba6fe1c..db47ab7df 100644
--- a/src/filter_registry.c
+++ b/src/filter_registry.c
@@ -25,6 +25,7 @@
const struct filter_plugin *const filter_plugins[] = {
&null_filter_plugin,
+ &volume_filter_plugin,
NULL,
};