]> code.delx.au - pulseaudio/blobdiff - src/modules/alsa/module-alsa-sink.c
volume: Rename 'sync volume' to 'deferred volume'.
[pulseaudio] / src / modules / alsa / module-alsa-sink.c
index 465c8b9eb1a62177b68a78009358cdb85f465569..2a558a145b1bc292bd7e89fdbeb9d6c20e34ed60 100644 (file)
@@ -24,7 +24,6 @@
 #include <config.h>
 #endif
 
-#include <pulsecore/core.h>
 #include <pulsecore/module.h>
 #include <pulsecore/sink.h>
 #include <pulsecore/modargs.h>
@@ -41,7 +40,7 @@ PA_MODULE_USAGE(
         "name=<name of the sink, to be prefixed> "
         "sink_name=<name for the sink> "
         "sink_properties=<properties for the sink> "
-        "namereg_fail=<pa_namereg_register() fail parameter value> "
+        "namereg_fail=<when false attempt to synthesise new sink_name if it is already taken> "
         "device=<ALSA device> "
         "device_id=<ALSA card index> "
         "format=<sample format> "
@@ -57,9 +56,9 @@ PA_MODULE_USAGE(
         "ignore_dB=<ignore dB information from the device?> "
         "control=<name of mixer control> "
         "rewind_safeguard=<number of bytes that cannot be rewound> "
-        "sync_volume=<syncronize sw and hw voluchanges in IO-thread?> "
-        "sync_volume_safety_margin=<usec adjustment depending on volume direction> "
-        "sync_volume_extra_delay=<usec adjustment to HW volume changes>");
+        "deferred_volume=<Synchronize software and hardware volume changes to avoid momentary jumps?> "
+        "deferred_volume_safety_margin=<usec adjustment depending on volume direction> "
+        "deferred_volume_extra_delay=<usec adjustment to HW volume changes>");
 
 static const char* const valid_modargs[] = {
     "name",
@@ -81,9 +80,9 @@ static const char* const valid_modargs[] = {
     "ignore_dB",
     "control",
     "rewind_safeguard",
-    "sync_volume",
-    "sync_volume_safety_margin",
-    "sync_volume_extra_delay",
+    "deferred_volume",
+    "deferred_volume_safety_margin",
+    "deferred_volume_extra_delay",
     NULL
 };