aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-04-28 20:33:06 +0200
committerMax Kellermann <max@duempel.org>2009-04-28 20:33:06 +0200
commite7100377608e282424fde43a196ffdc059d9c4fa (patch)
tree17836c944adf9a044df91eafba1f7e6a5353ebde
parent61b083551265c78110855e79b5f12adcd422affb (diff)
output_init: added option to disable the hardware mixer
Added the per-device option "mixer_enabled" which allows users to disable the hardware mixer of an audio output.
-rw-r--r--doc/user.xml11
-rw-r--r--src/output_init.c3
2 files changed, 13 insertions, 1 deletions
diff --git a/doc/user.xml b/doc/user.xml
index 2fb27fc4..63f5c9f6 100644
--- a/doc/user.xml
+++ b/doc/user.xml
@@ -285,6 +285,17 @@ cd mpd-0.14.2</programlisting>
enabled.
</entry>
</row>
+ <row>
+ <entry>
+ <varname>mixer_enabled</varname>
+ <parameter>yes|no</parameter>
+ </entry>
+ <entry>
+ Specifies whether the hardware mixer of this audio
+ output should be used. By default, all hardware
+ mixers are enabled if available.
+ </entry>
+ </row>
</tbody>
</tgroup>
</informaltable>
diff --git a/src/output_init.c b/src/output_init.c
index 8ec1e014..04609bb7 100644
--- a/src/output_init.c
+++ b/src/output_init.c
@@ -135,7 +135,8 @@ audio_output_init(struct audio_output *ao, const struct config_param *param,
if (ao->data == NULL)
return false;
- if (plugin->mixer_plugin != NULL)
+ if (plugin->mixer_plugin != NULL &&
+ config_get_block_bool(param, "mixer_enabled", true))
ao->mixer = mixer_new(plugin->mixer_plugin, param);
else
ao->mixer = NULL;