summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-03-18 18:05:18 +0100
committerMax Kellermann <max@musicpd.org>2019-03-18 18:05:18 +0100
commit8158bd218c49f724245540c4b47f107c1bbe61ca (patch)
treed435223edb2bc6b5c07da10bc656310ab750357e
parentaa1d867b72f8ea749625f53a5c6d7ed779f1288c (diff)
doc/plugins.rst: add filter plugin reference
-rw-r--r--doc/plugins.rst35
-rw-r--r--doc/user.rst3
2 files changed, 37 insertions, 1 deletions
diff --git a/doc/plugins.rst b/doc/plugins.rst
index 08d4d1345..21f8f1f2d 100644
--- a/doc/plugins.rst
+++ b/doc/plugins.rst
@@ -1039,8 +1039,41 @@ The "Solaris" plugin runs only on SUN Solaris, and plays via /dev/audio.
* - **device PATH**
- Sets the path of the audio device, defaults to /dev/audio.
+
+.. _filter_plugins:
+
+Filter plugins
+--------------
+
+normalize
+~~~~~~~~~
+
+Normalize the volume during playback (at the expensve of quality).
+
+
+null
+~~~~
+
+A no-op filter. Audio data is returned as-is.
+
+
+route
+~~~~~
+
+Reroute channels.
+
+.. list-table::
+ :widths: 20 80
+ :header-rows: 1
+
+ * - Setting
+ - Description
+ * - **routes "0>0, 1>1, ..."**
+ - Specifies the channel mapping.
+
+
.. _playlist_plugins:
-
+
Playlist plugins
----------------
diff --git a/doc/user.rst b/doc/user.rst
index cdcb94bd5..ea65442b2 100644
--- a/doc/user.rst
+++ b/doc/user.rst
@@ -465,6 +465,9 @@ The following table lists the filter options valid for all plugins:
* - **name**
- The name of the filter
+More information can be found in the :ref:`filter_plugins` reference.
+
+
Configuring playlist plugins
----------------------------