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

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