mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
ucm: Don't log errors during normal operation
It's completely normal to not have explicit channel configuration for stereo devices. In fact, the ALSA developers actively avoid configuring the channels for stereo devices. I also dropped the word "duplex" from the messages, because "stereo duplex" implies bidirectionality, but most devices use one direction only.
This commit is contained in:
parent
60531aef82
commit
9d36210bec
1 changed files with 4 additions and 4 deletions
|
|
@ -379,8 +379,8 @@ static int ucm_get_device_property(
|
|||
|
||||
if (pa_proplist_gets(device->proplist, PA_ALSA_PROP_UCM_SINK) &&
|
||||
device->playback_channels == 0) {
|
||||
pa_log("UCM file does not specify 'PlaybackChannels' "
|
||||
"for device %s, assuming stereo duplex.", device_name);
|
||||
pa_log_info("UCM file does not specify 'PlaybackChannels' "
|
||||
"for device %s, assuming stereo.", device_name);
|
||||
device->playback_channels = 2;
|
||||
}
|
||||
|
||||
|
|
@ -400,8 +400,8 @@ static int ucm_get_device_property(
|
|||
|
||||
if (pa_proplist_gets(device->proplist, PA_ALSA_PROP_UCM_SOURCE) &&
|
||||
device->capture_channels == 0) {
|
||||
pa_log("UCM file does not specify 'CaptureChannels' "
|
||||
"for device %s, assuming stereo duplex.", device_name);
|
||||
pa_log_info("UCM file does not specify 'CaptureChannels' "
|
||||
"for device %s, assuming stereo.", device_name);
|
||||
device->capture_channels = 2;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue