While there, also improve the short description of this option in the OSS backend part of usage help and jack_control.tags/v1.9.20
@@ -1288,7 +1288,7 @@ SERVER_EXPORT jack_driver_desc_t* driver_get_descriptor() | |||||
jack_driver_descriptor_add_parameter(desc, &filler, "outchannels", 'o', JackDriverParamUInt, &value, NULL, "Playback channels", NULL); | jack_driver_descriptor_add_parameter(desc, &filler, "outchannels", 'o', JackDriverParamUInt, &value, NULL, "Playback channels", NULL); | ||||
value.i = false; | value.i = false; | ||||
jack_driver_descriptor_add_parameter(desc, &filler, "excl", 'e', JackDriverParamBool, &value, NULL, "Exclusif (O_EXCL) access mode", NULL); | |||||
jack_driver_descriptor_add_parameter(desc, &filler, "excl", 'e', JackDriverParamBool, &value, NULL, "Exclusive and direct device access", NULL); | |||||
strcpy(value.str, OSS_DRIVER_DEF_DEV); | strcpy(value.str, OSS_DRIVER_DEF_DEV); | ||||
jack_driver_descriptor_add_parameter(desc, &filler, "capture", 'C', JackDriverParamString, &value, NULL, "Input device", NULL); | jack_driver_descriptor_add_parameter(desc, &filler, "capture", 'C', JackDriverParamString, &value, NULL, "Input device", NULL); | ||||
@@ -582,6 +582,13 @@ Output device for playback. | |||||
Whether or not to ignore hardware period size. | Whether or not to ignore hardware period size. | ||||
(default: false) | (default: false) | ||||
.TP | |||||
\fB\-e, \-\-excl \fIboolean\fR | |||||
Request exclusive and direct access to the sound device. | |||||
This avoids mixing and automatic audio conversion in the | |||||
OSS driver, and the extra latency that comes with that. | |||||
(default: false) | |||||
.TP | .TP | ||||
\fB\-I, \-\-input\-latency\fR | \fB\-I, \-\-input\-latency\fR | ||||
Extra input latency (frames). | Extra input latency (frames). | ||||
@@ -759,7 +759,7 @@ SERVER_EXPORT jack_driver_desc_t* driver_get_descriptor() | |||||
jack_driver_descriptor_add_parameter(desc, &filler, "outchannels", 'o', JackDriverParamUInt, &value, NULL, "Playback channels", NULL); | jack_driver_descriptor_add_parameter(desc, &filler, "outchannels", 'o', JackDriverParamUInt, &value, NULL, "Playback channels", NULL); | ||||
value.i = false; | value.i = false; | ||||
jack_driver_descriptor_add_parameter(desc, &filler, "excl", 'e', JackDriverParamBool, &value, NULL, "Exclusif (O_EXCL) access mode", NULL); | |||||
jack_driver_descriptor_add_parameter(desc, &filler, "excl", 'e', JackDriverParamBool, &value, NULL, "Exclusive and direct device access", NULL); | |||||
strcpy(value.str, OSS_DRIVER_DEF_DEV); | strcpy(value.str, OSS_DRIVER_DEF_DEV); | ||||
jack_driver_descriptor_add_parameter(desc, &filler, "capture", 'C', JackDriverParamString, &value, NULL, "Input device", NULL); | jack_driver_descriptor_add_parameter(desc, &filler, "capture", 'C', JackDriverParamString, &value, NULL, "Input device", NULL); | ||||