mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
module-jackdbus-detect: Allow omitting channels argument
module-jackdbus-detect documents the channels argument as optional and "if omitted, the sink wil use the number of physical output port and the source will use the number of physical input ports registered in the JACK server." However, although it would correctly omit the channels argument to module-jack-sink and module-jack-source if its channel argument was omitted, its argument validation was broken to consider omitting channels an error. This commit properly validates the channels argument so omitting it is accepted.
This commit is contained in:
parent
de66644776
commit
64211b8f59
1 changed files with 1 additions and 1 deletions
|
|
@ -234,7 +234,7 @@ int pa__init(pa_module *m) {
|
|||
goto fail;
|
||||
}
|
||||
|
||||
if (pa_modargs_get_value_u32(ma, "channels", &u->channels) < 0 || !pa_channels_valid(u->channels)) {
|
||||
if (pa_modargs_get_value_u32(ma, "channels", &u->channels) < 0 || (u->channels > 0 && !pa_channels_valid(u->channels))) {
|
||||
pa_log("Failed to parse channels= argument.");
|
||||
goto fail;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue