add new paramter ignore_dB= to alsa modules

This commit is contained in:
Lennart Poettering 2009-01-27 17:55:50 +01:00
parent d5f46e824e
commit 0ca16caff7
5 changed files with 25 additions and 9 deletions

View file

@ -51,7 +51,8 @@ PA_MODULE_USAGE(
"tsched=<enable system timer based scheduling mode?> "
"tsched_buffer_size=<buffer size when using timer based scheduling> "
"tsched_buffer_watermark=<lower fill watermark> "
"profile=<profile name>");
"profile=<profile name> "
"ignore_dB=<ignore dB information from the device?>");
static const char* const valid_modargs[] = {
"name",
@ -68,6 +69,7 @@ static const char* const valid_modargs[] = {
"tsched_buffer_size",
"tsched_buffer_watermark",
"profile",
"ignore_dB",
NULL
};