[pulseaudio-discuss] pulseaudio daemon toggling Alsa SPDIF setting every time

John Carlyle-Clarke john at wormdrive.net
Mon Sep 14 05:04:45 PDT 2009


Hi-

I have pulseaudio 0.9.15 and alsa 1.0.21 on Archlinux (x86_64).  
Everything was working fine, but recently I started getting no sound in 
pulse and - when I tried to debug - nothing in Alsa either.  I have two 
cards - an onboard nVidia device which I don't use, and a PCI 
Soundblaster Audigy 2 which I use as my default.  The problems may have 
coincided with an upgrade of Alsa from 1.0.20 -> 1.0.21 but I can't be sure.

I tracked down the exact problem, and it is that every time the pulse 
daemon starts, it toggles an SPDIF output flag on my sound card's Alsa 
setup.  This effectively disables analog audio.  I tried deleting the 
contents of ~/.pulse in case it was restoring some remembered settings 
each time, but no joy.

If I untoggle that setting after pulseaudio starts, everything is OK 
(until next time pulseaudio starts, that is).

If anyone can cast some light on the problem or suggest something else I 
can test, please do!

Thanks in advance.

John

[johncc at liberator]$ more /etc/asound.conf
# pcm.!default {
#     type hw
#     card Audigy2
# }
# ctl.!default {
#     type hw
#     card Audigy2
# }
#
 pcm {
     type pulse
 }
 ctl.pulse {
     type pulse
 }
 
 pcm.!default {
     type pulse
 }
 ctl.!default {
     type pulse
 }

[johncc at liberator]$ more /etc/pulse/default.pa
#!/usr/bin/pulseaudio -nF
#
# This file is part of PulseAudio.
#
# PulseAudio is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# PulseAudio is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with PulseAudio; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.

# This startup script is used only if PulseAudio is started per-user
# (i.e. not in system mode)

.nofail

### Load something into the sample cache
#load-sample-lazy x11-bell /usr/share/sounds/gtk-events/activate.wav
#load-sample-lazy pulse-hotplug /usr/share/sounds/startup3.wav
#load-sample-lazy pulse-coldplug /usr/share/sounds/startup3.wav
#load-sample-lazy pulse-access /usr/share/sounds/generic.wav

.fail

### Automatically restore the volume of streams and devices
load-module module-device-restore
load-module module-stream-restore
load-module module-card-restore

### Automatically augment property information from .desktop files
### stored in /usr/share/application
load-module module-augment-properties

### Load audio drivers statically (it's probably better to not load
### these drivers manually, but instead use module-hal-detect --
### see below -- for doing this automatically)
#load-module module-alsa-sink
#load-module module-alsa-source device=hw:1,0
#load-module module-oss device="/dev/dsp" sink_name=output source_name=input
#load-module module-oss-mmap device="/dev/dsp" sink_name=output 
source_name=input
#load-module module-null-sink
#load-module module-pipe-sink

### Automatically load driver modules depending on the hardware available
.ifexists module-hal-detect.so
load-module module-hal-detect
.else
### Alternatively use the static hardware detection module (for systems that
### lack HAL support)
load-module module-detect
.endif

### Automatically load driver modules for Bluetooth hardware
.ifexists module-bluetooth-discover.so
load-module module-bluetooth-discover
.endif

### Load several protocols
.ifexists module-esound-protocol-unix.so
load-module module-esound-protocol-unix
.endif
load-module module-native-protocol-unix

### Network access (may be configured with paprefs, so leave this commented
### here if you plan to use paprefs)
#load-module module-esound-protocol-tcp
#load-module module-native-protocol-tcp
#load-module module-zeroconf-publish

### Load the RTP reciever module (also configured via paprefs, see above)
#load-module module-rtp-recv

### Load the RTP sender module (also configured via paprefs, see above)
#load-module module-null-sink sink_name=rtp format=s16be channels=2 
rate=44100 description="RTP Multicast Sink"
#load-module module-rtp-send source=rtp.monitor

### Load additional modules from GConf settings. This can be configured 
with the paprefs tool.
### Please keep in mind that the modules configured by paprefs might 
conflict with manually
### loaded modules.
.ifexists module-gconf.so
.nofail
load-module module-gconf
.fail
.endif

### Automatically restore the default sink/source when changed by the 
user during runtime
load-module module-default-device-restore

### Automatically move streams to the default sink if the sink they are
### connected to dies, similar for sources
load-module module-rescue-streams

### Make sure we always have a sink around, even if it is a null sink.
load-module module-always-sink

### Automatically suspend sinks/sources that become idle for too long
load-module module-suspend-on-idle

### If autoexit on idle is enabled we want to make sure we only quit
### when no local session needs us anymore.
load-module module-console-kit

### Enable positioned event sounds
load-module module-position-event-sounds

### Cork music streams when a phone stream is active
load-module module-cork-music-on-phone

# X11 modules should not be started from default.pa so that one daemon
# can be shared by multiple sessions.

### Load X11 bell module
#load-module module-x11-bell sample=bell-windowing-system

### Register ourselves in the X11 session manager
#load-module module-x11-xsmp

### Publish connection data in the X11 root window
#.ifexists module-x11-publish.so
#.nofail
#load-module module-x11-publish
#.fail
#.endif

### Make some devices default
#set-default-sink output
#set-default-source input

[johncc at liberator .pulse]$ pulseaudio -vvv
D: main.c: Started as real root: no, suid root: yes
I: main.c: We're in the group 'pulse-rt', allowing high-priority scheduling.
I: main.c: RLIMIT_RTPRIO is set to 65, allowing real-time scheduling.
I: main.c: RLIMIT_NICE is set to 30, allowing high-priority scheduling.
I: main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted
I: core-util.c: Successfully gained nice level -11.
D: main.c: Can realtime: yes, can high-priority: yes
I: main.c: Giving up CAP_NICE
D: main.c: Can realtime: yes, can high-priority: yes
I: main.c: This is PulseAudio 0.9.15
D: main.c: Compilation host: x86_64-unknown-linux-gnu
D: main.c: Compilation CFLAGS: -march=x86-64 -mtune=generic -O2 -pipe 
-Wall -W -Wextra -pipe -Wno-long-long -Winline -Wvla 
-Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 
-Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs 
-Wformat-nonliteral -Wold-style-definition -Wpointer-arith -Winit-self 
-Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes 
-Wstrict-prototypes -Wredundant-decls -Wmissing-declarations 
-Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align 
-Wstrict-aliasing=2 -Wwrite-strings -Wno-unused-parameter -ffast-math 
-Wp,-D_FORTIFY_SOURCE=2 -fno-common -fdiagnostics-show-option
D: main.c: Running on host: Linux x86_64 2.6.30-ARCH #1 SMP PREEMPT Wed 
Sep 9 14:16:44 CEST 2009
D: main.c: Found 2 CPUs.
I: main.c: Page size is 4096 bytes
D: main.c: Compiled with Valgrind support: no
D: main.c: Running in valgrind mode: no
D: main.c: Optimized build: yes
D: main.c: All asserts enabled.
I: main.c: Machine ID is 6b6e80bf7f224b54582974214a0636c7.
I: main.c: Session ID is 
6b6e80bf7f224b54582974214a0636c7-1252918520.538422-2060047076.
I: main.c: Using runtime directory 
/home/johncc/.pulse/6b6e80bf7f224b54582974214a0636c7:runtime.
I: main.c: Using state directory /home/johncc/.pulse.
I: main.c: Running in system mode: no
I: main.c: Fresh high-resolution timers available! Bon appetit!
D: memblock.c: Using shared memory pool with 1024 slots of size 64.0 KiB 
each, total size is 64.0 MiB, maximum usable slot size is 65472
I: module-device-restore.c: Sucessfully opened database file 
'/home/johncc/.pulse/6b6e80bf7f224b54582974214a0636c7:device-volumes.x86_64-unknown-linux-gnu.gdbm'.
I: module.c: Loaded "module-device-restore" (index: #0; argument: "").
I: module-stream-restore.c: Sucessfully opened database file 
'/home/johncc/.pulse/6b6e80bf7f224b54582974214a0636c7:stream-volumes.x86_64-unknown-linux-gnu.gdbm'.
I: module.c: Loaded "module-stream-restore" (index: #1; argument: "").
I: module-card-restore.c: Sucessfully opened database file 
'/home/johncc/.pulse/6b6e80bf7f224b54582974214a0636c7:card-database.x86_64-unknown-linux-gnu.gdbm'.
I: module.c: Loaded "module-card-restore" (index: #2; argument: "").
I: module.c: Loaded "module-augment-properties" (index: #3; argument: "").
D: cli-command.c: Checking for existance of 
'/usr/lib/pulse-0.9.15/modules/module-hal-detect.so': success
D: dbus-util.c: Successfully connected to D-Bus system bus 
1d6476588c6d31960ea2c8cd4aae0449 as :1.25
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/computer_alsa_timer
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/computer_alsa_sequencer
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1_alsa_playback_3
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1_alsa_playback_2
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1_alsa_capture_2
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1_alsa_capture_1
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1_alsa_playback_0
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1_alsa_capture_0
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1_alsa_midi_1
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1_alsa_midi_0
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1_alsa_hw_specific_0
D: module-hal-detect.c: Loading module-alsa-card with arguments 
'device_id=1 name=pci_1102_8_sound_card_1 
card_name=alsa_card.pci_1102_8_sound_card_1 tsched=1'
D: dbus-util.c: Successfully connected to D-Bus session bus 
e142fc373aef4023eedc85d94aae04f8 as :1.38
D: reserve-wrap.c: Successfully acquired reservation lock on device 'Audio1'
D: alsa-util.c: Checking for playback on analog-mono (hw)
D: alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Output Analog Mono + Input 
Analog Mono'
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Output Analog Mono + Input 
Analog Stereo'
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Output Analog Mono + Input 
Digital Stereo (IEC958)'
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 1
I: (alsa-lib)pcm.c: Unknown PCM hdmi:1
I: alsa-util.c: Error opening PCM device hdmi:1: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround40:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround41:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround50:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround51:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround71:1: Device or 
resource busy
I: module-alsa-card.c: Found output profile 'Output Analog Mono'
D: alsa-util.c: Checking for playback on analog-stereo (front)
D: alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Output Analog Stereo + 
Input Analog Mono'
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:front:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:iec958:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 1
I: (alsa-lib)pcm.c: Unknown PCM hdmi:1
I: alsa-util.c: Error opening PCM device hdmi:1: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround40:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround41:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround50:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround51:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround71:1: Device or 
resource busy
I: module-alsa-card.c: Found output profile 'Output Analog Stereo'
D: alsa-util.c: Checking for playback on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Output Digital Stereo 
(IEC958) + Input Analog Mono'
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:front:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:iec958:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 1
I: (alsa-lib)pcm.c: Unknown PCM hdmi:1
I: alsa-util.c: Error opening PCM device hdmi:1: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround40:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround41:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround50:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround51:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround71:1: Device or 
resource busy
I: module-alsa-card.c: Found output profile 'Output Digital Stereo (IEC958)'
D: alsa-util.c: Checking for playback on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 1
I: (alsa-lib)pcm.c: Unknown PCM hdmi:1
I: alsa-util.c: Error opening PCM device hdmi:1: Invalid argument
D: alsa-util.c: Checking for playback on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Output Analog Surround 4.0 
+ Input Analog Mono'
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:front:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:iec958:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 1
I: (alsa-lib)pcm.c: Unknown PCM hdmi:1
I: alsa-util.c: Error opening PCM device hdmi:1: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround40:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround41:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround50:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround51:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround71:1: Device or 
resource busy
I: module-alsa-card.c: Found output profile 'Output Analog Surround 4.0'
D: alsa-util.c: Checking for playback on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for playback on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Output Analog Surround 4.1 
+ Input Analog Mono'
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:front:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:iec958:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 1
I: (alsa-lib)pcm.c: Unknown PCM hdmi:1
I: alsa-util.c: Error opening PCM device hdmi:1: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround40:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround41:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround50:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround51:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround71:1: Device or 
resource busy
I: module-alsa-card.c: Found output profile 'Output Analog Surround 4.1'
D: alsa-util.c: Checking for playback on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Output Analog Surround 5.0 
+ Input Analog Mono'
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:front:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:iec958:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 1
I: (alsa-lib)pcm.c: Unknown PCM hdmi:1
I: alsa-util.c: Error opening PCM device hdmi:1: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround40:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround41:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround50:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround51:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround71:1: Device or 
resource busy
I: module-alsa-card.c: Found output profile 'Output Analog Surround 5.0'
D: alsa-util.c: Checking for playback on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Output Analog Surround 5.1 
+ Input Analog Mono'
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:front:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:iec958:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 1
I: (alsa-lib)pcm.c: Unknown PCM hdmi:1
I: alsa-util.c: Error opening PCM device hdmi:1: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround40:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround41:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround50:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround51:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround71:1: Device or 
resource busy
I: module-alsa-card.c: Found output profile 'Output Analog Surround 5.1'
D: alsa-util.c: Checking for playback on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for playback on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Output Analog Surround 7.1 
+ Input Analog Mono'
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:front:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:front:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
D: alsa-util.c: Trying plug:iec958:1 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)setup.c: Cannot lock ctl elem
I: alsa-util.c: Failed to set hardware parameters on plug:iec958:1: 
Device or resource busy
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 1
I: (alsa-lib)pcm.c: Unknown PCM hdmi:1
I: alsa-util.c: Error opening PCM device hdmi:1: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround40:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround41:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround50:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround51:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround71:1: Device or 
resource busy
I: module-alsa-card.c: Found output profile 'Output Analog Surround 7.1'
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Input Analog Mono'
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Input Analog Stereo'
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:1 with SND_PCM_NO_AUTO_FORMAT ...
I: module-alsa-card.c: Found output profile 'Input Digital Stereo (IEC958)'
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 1
I: (alsa-lib)pcm.c: Unknown PCM hdmi:1
I: alsa-util.c: Error opening PCM device hdmi:1: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround40:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround41:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround50:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround51:1: Device or 
resource busy
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:1
I: alsa-util.c: Error opening PCM device a52:1: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:1 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC1D0c failed
I: alsa-util.c: Error opening PCM device surround71:1: Device or 
resource busy
I: card.c: Created 0 "alsa_card.pci_1102_8_sound_card_1"
D: alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Maximum hw buffer size is 371 ms
I: alsa-sink.c: Successfully opened device front:1.
I: alsa-sink.c: Selected configuration 'Analog Stereo' (analog-stereo).
I: alsa-sink.c: Successfully enabled mmap() mode.
I: alsa-sink.c: Successfully enabled timer-based scheduling mode.
I: (alsa-lib)control.c: Invalid CTL front:1
I: alsa-util.c: Unable to attach to mixer front:1: No such file or directory
I: alsa-util.c: Successfully attached to mixer 'hw:1'
I: alsa-util.c: Cannot find mixer control "Master" or mixer control is 
no combination of switch/volume.
I: alsa-util.c: Cannot find fallback mixer control "PCM" or mixer 
control is no combination of switch/volume.
I: alsa-util.c: Using mixer control "PCM".
I: module-device-restore.c: Restoring volume for sink 
alsa_output.pci_1102_8_sound_card_1.
I: module-device-restore.c: Restoring mute state for sink 
alsa_output.pci_1102_8_sound_card_1.
I: sink.c: Created sink 0 "alsa_output.pci_1102_8_sound_card_1" with 
sample spec s16le 2ch 44100Hz and channel map front-left,front-right
I: sink.c:     alsa.resolution_bits = "16"
I: sink.c:     alsa.mixer_element = "Master"
I: sink.c:     device.api = "alsa"
I: sink.c:     device.class = "sound"
I: sink.c:     alsa.class = "generic"
I: sink.c:     alsa.subclass = "generic-mix"
I: sink.c:     alsa.name = "ADC Capture/Standard PCM Playback"
I: sink.c:     alsa.id = "emu10k1"
I: sink.c:     alsa.subdevice = "0"
I: sink.c:     alsa.subdevice_name = "subdevice #0"
I: sink.c:     alsa.device = "0"
I: sink.c:     alsa.card = "1"
I: sink.c:     alsa.card_name = "SB Audigy 4 [SB0610]"
I: sink.c:     alsa.long_card_name = "SB Audigy 4 [SB0610] (rev.0, 
serial:0x10211102) at 0x9c00, irq 18"
I: sink.c:     alsa.driver_name = "snd_emu10k1"
I: sink.c:     device.bus = "pci"
I: sink.c:     device.vendor.id = "1102"
I: sink.c:     device.product.id = "0008"
I: sink.c:     device.bus_path = 
"/devices/pci0000:00/0000:00:09.0/0000:05:06.0/sound/card1"
I: sink.c:     hal.udi = 
"/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1"
I: sink.c:     hal.product = "SB Audigy 4 [SB0610] (rev.0, 
serial:0x10211102) Sound Card"
I: sink.c:     hal.card_id = "SB Audigy 4 [SB0610] (rev.0, 
serial:0x10211102)"
I: sink.c:     device.string = "front:1"
I: sink.c:     device.buffering.buffer_size = "65536"
I: sink.c:     device.buffering.fragment_size = "65536"
I: sink.c:     device.access_mode = "mmap+timer"
I: sink.c:     device.profile.name = "analog-stereo"
I: sink.c:     device.profile.description = "Analog Stereo"
I: sink.c:     device.description = "SB Audigy 4 [SB0610]"
I: sink.c:     device.icon_name = "audio-card-pci"
I: module-device-restore.c: Restoring volume for source 
alsa_output.pci_1102_8_sound_card_1.monitor.
I: module-device-restore.c: Restoring mute state for source 
alsa_output.pci_1102_8_sound_card_1.monitor.
I: source.c: Created source 0 
"alsa_output.pci_1102_8_sound_card_1.monitor" with sample spec s16le 2ch 
44100Hz and channel map front-left,front-right
I: source.c:     device.description = "Monitor of SB Audigy 4 [SB0610]"
I: source.c:     device.class = "monitor"
I: source.c:     alsa.card = "1"
I: source.c:     alsa.card_name = "SB Audigy 4 [SB0610]"
I: source.c:     alsa.long_card_name = "SB Audigy 4 [SB0610] (rev.0, 
serial:0x10211102) at 0x9c00, irq 18"
I: source.c:     alsa.driver_name = "snd_emu10k1"
I: source.c:     device.bus = "pci"
I: source.c:     device.vendor.id = "1102"
I: source.c:     device.product.id = "0008"
I: source.c:     device.bus_path = 
"/devices/pci0000:00/0000:00:09.0/0000:05:06.0/sound/card1"
I: source.c:     hal.udi = 
"/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1"
I: source.c:     hal.product = "SB Audigy 4 [SB0610] (rev.0, 
serial:0x10211102) Sound Card"
I: source.c:     hal.card_id = "SB Audigy 4 [SB0610] (rev.0, 
serial:0x10211102)"
I: source.c:     device.string = "1"
I: source.c:     device.icon_name = "audio-card-pci"
I: alsa-sink.c: Using 1 fragments of size 65536 bytes, buffer time is 
371.52ms
I: alsa-sink.c: Time scheduling watermark is 20.00ms
D: alsa-sink.c: Latency set to 250.00ms
D: alsa-sink.c: hwbuf_unused=21436
D: alsa-sink.c: setting avail_min=15503
I: alsa-sink.c: Volume ranges from 0 to 100.
I: alsa-sink.c: Volume ranges from -40.00 dB to 0.00 dB.
I: alsa-sink.c: No particular base volume set, fixing to 0 dB
I: alsa-util.c: ALSA device lacks independant volume controls for each 
channel.
I: alsa-sink.c: Using hardware volume control. Hardware dB scale supported.
I: alsa-sink.c: Using software mute control.
D: alsa-util.c: snd_pcm_dump():
D: alsa-util.c: Hooks PCM
D: alsa-util.c: Its setup is:
D: alsa-util.c:   stream       : PLAYBACK
D: alsa-util.c:   access       : MMAP_INTERLEAVED
D: alsa-util.c:   format       : S16_LE
D: alsa-util.c:   subformat    : STD
D: alsa-util.c:   channels     : 2
D: alsa-util.c:   rate         : 44100
D: alsa-util.c:   exact rate   : 44100 (44100/1)
D: alsa-util.c:   msbits       : 16
D: alsa-util.c:   buffer_size  : 16384
D: alsa-util.c:   period_size  : 16384
D: alsa-util.c:   period_time  : 371519
D: alsa-util.c:   tstamp_mode  : ENABLE
D: alsa-util.c:   period_step  : 1
D: alsa-util.c:   avail_min    : 16384
D: alsa-util.c:   period_event : 0
D: alsa-util.c:   start_threshold  : -1
D: alsa-util.c:   stop_threshold   : 4611686018427387904
D: alsa-util.c:   silence_threshold: 0
D: alsa-util.c:   silence_size : 0
D: alsa-util.c:   boundary     : 4611686018427387904
D: alsa-util.c: Slave: Hardware PCM card 1 'SB Audigy 4 [SB0610]' device 
0 subdevice 0
D: alsa-util.c: Its setup is:
D: alsa-util.c:   stream       : PLAYBACK
D: alsa-util.c:   access       : MMAP_INTERLEAVED
D: alsa-util.c:   format       : S16_LE
D: alsa-util.c:   subformat    : STD
D: alsa-util.c:   channels     : 2
D: alsa-util.c:   rate         : 44100
D: alsa-util.c:   exact rate   : 44100 (44100/1)
D: alsa-util.c:   msbits       : 16
D: alsa-util.c:   buffer_size  : 16384
D: alsa-util.c:   period_size  : 16384
D: alsa-util.c:   period_time  : 371519
D: alsa-util.c:   tstamp_mode  : ENABLE
D: alsa-util.c:   period_step  : 1
D: alsa-util.c:   avail_min    : 16384
D: alsa-util.c:   period_event : 0
D: alsa-util.c:   start_threshold  : -1
D: alsa-util.c:   stop_threshold   : 4611686018427387904
D: alsa-util.c:   silence_threshold: 0
D: alsa-util.c:   silence_size : 0
D: alsa-util.c:   boundary     : 4611686018427387904
D: alsa-util.c:   appl_ptr     : 0
D: alsa-util.c:   hw_ptr       : 0
D: alsa-sink.c: Requested volume: 0: 100% 1: 100%
D: alsa-sink.c: Got hardware volume: 0: 100% 1: 100%
D: alsa-sink.c: Calculated software volume: 0: 100% 1: 100%
D: alsa-sink.c: Thread starting up
D: rtpoll.c: Acquired POSIX realtime signal SIGRTMIN+29
I: alsa-sink.c: Starting playback.
D: alsa-sink.c: Cutting sleep time for the initial iterations by half.
D: alsa-sink.c: Cutting sleep time for the initial iterations by half.
D: alsa-util.c: Trying hw:1 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Maximum hw buffer size is 743 ms
I: alsa-source.c: Successfully opened device hw:1.
I: alsa-source.c: Selected configuration 'Analog Mono' (analog-mono).
I: alsa-source.c: Successfully enabled mmap() mode.
I: alsa-source.c: Successfully enabled timer-based scheduling mode.
I: alsa-util.c: Successfully attached to mixer 'hw:1'
I: alsa-util.c: Cannot find mixer control "Capture" or mixer control is 
no combination of switch/volume.
I: alsa-util.c: Using mixer control "Mic".
I: module-device-restore.c: Restoring volume for source 
alsa_input.pci_1102_8_sound_card_1.
I: module-device-restore.c: Restoring mute state for source 
alsa_input.pci_1102_8_sound_card_1.
I: source.c: Created source 1 "alsa_input.pci_1102_8_sound_card_1" with 
sample spec s16le 1ch 44100Hz and channel map mono
I: source.c:     alsa.resolution_bits = "16"
I: source.c:     alsa.mixer_element = "Mic"
I: source.c:     device.api = "alsa"
I: source.c:     device.class = "sound"
I: source.c:     alsa.class = "generic"
I: source.c:     alsa.subclass = "generic-mix"
I: source.c:     alsa.name = "ADC Capture/Standard PCM Playback"
I: source.c:     alsa.id = "emu10k1"
I: source.c:     alsa.subdevice = "0"
I: source.c:     alsa.subdevice_name = "subdevice #0"
I: source.c:     alsa.device = "0"
I: source.c:     alsa.card = "1"
I: source.c:     alsa.card_name = "SB Audigy 4 [SB0610]"
I: source.c:     alsa.long_card_name = "SB Audigy 4 [SB0610] (rev.0, 
serial:0x10211102) at 0x9c00, irq 18"
I: source.c:     alsa.driver_name = "snd_emu10k1"
I: source.c:     device.bus = "pci"
I: source.c:     device.vendor.id = "1102"
I: source.c:     device.product.id = "0008"
I: source.c:     device.bus_path = 
"/devices/pci0000:00/0000:00:09.0/0000:05:06.0/sound/card1"
I: source.c:     hal.udi = 
"/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1"
I: source.c:     hal.product = "SB Audigy 4 [SB0610] (rev.0, 
serial:0x10211102) Sound Card"
I: source.c:     hal.card_id = "SB Audigy 4 [SB0610] (rev.0, 
serial:0x10211102)"
I: source.c:     device.string = "hw:1"
I: source.c:     device.buffering.buffer_size = "65536"
I: source.c:     device.buffering.fragment_size = "32768"
I: source.c:     device.access_mode = "mmap+timer"
I: source.c:     device.profile.name = "analog-mono"
I: source.c:     device.profile.description = "Analog Mono"
I: source.c:     device.description = "SB Audigy 4 [SB0610]"
I: source.c:     device.icon_name = "audio-card-pci"
I: alsa-source.c: Using 2 fragments of size 32768 bytes, buffer time is 
743.04ms
I: alsa-source.c: Time scheduling watermark is 20.00ms
D: alsa-source.c: hwbuf_unused=0
D: alsa-source.c: setting avail_min=31886
I: alsa-source.c: Volume ranges from 0 to 31.
I: alsa-source.c: Volume ranges from -34.50 dB to 12.00 dB.
I: alsa-source.c: Fixing base volume to -12.00 dB
I: alsa-util.c: All 1 channels can be mapped to mixer channels.
I: alsa-source.c: Using hardware volume control. Hardware dB scale 
supported.
D: alsa-util.c: snd_pcm_dump():
D: alsa-util.c: Hardware PCM card 1 'SB Audigy 4 [SB0610]' device 0 
subdevice 0
D: alsa-util.c: Its setup is:
D: alsa-util.c:   stream       : CAPTURE
D: alsa-util.c:   access       : MMAP_INTERLEAVED
D: alsa-util.c:   format       : S16_LE
D: alsa-util.c:   subformat    : STD
D: alsa-util.c:   channels     : 1
D: alsa-util.c:   rate         : 44100
D: alsa-util.c:   exact rate   : 44100 (44100/1)
D: alsa-util.c:   msbits       : 16
D: alsa-util.c:   buffer_size  : 32768
D: alsa-util.c:   period_size  : 16384
D: alsa-util.c:   period_time  : 371519
D: alsa-util.c:   tstamp_mode  : ENABLE
D: alsa-util.c:   period_step  : 1
D: alsa-util.c:   avail_min    : 31886
D: alsa-util.c:   period_event : 0
D: alsa-util.c:   start_threshold  : -1
D: alsa-util.c:   stop_threshold   : 4611686018427387904
D: alsa-util.c:   silence_threshold: 0
D: alsa-util.c:   silence_size : 0
D: alsa-util.c:   boundary     : 4611686018427387904
D: alsa-util.c:   appl_ptr     : 0
D: alsa-util.c:   hw_ptr       : 0
D: alsa-source.c: Requested volume: 0:  50%
D: alsa-source.c: Got hardware volume: 0:  50%
D: alsa-source.c: Calculated software volume: 0: 100%
D: alsa-source.c: Thread starting up
D: rtpoll.c: Acquired POSIX realtime signal SIGRTMIN+28
I: module.c: Loaded "module-alsa-card" (index: #4; argument: 
"device_id=1 name=pci_1102_8_sound_card_1 
card_name=alsa_card.pci_1102_8_sound_card_1 tsched=1").
D: module-hal-detect.c: Loaded device 
/org/freedesktop/Hal/devices/pci_1102_8_sound_card_1_alsa_control__1
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_10de_59_sound_card_0_alsa_playback_2
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_10de_59_sound_card_0_alsa_capture_1
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_10de_59_sound_card_0_alsa_playback_0
D: module-hal-detect.c: Not loaded device 
/org/freedesktop/Hal/devices/pci_10de_59_sound_card_0_alsa_capture_0
D: module-hal-detect.c: Loading module-alsa-card with arguments 
'device_id=0 name=pci_10de_59_sound_card_0 
card_name=alsa_card.pci_10de_59_sound_card_0 tsched=1'
D: reserve-wrap.c: Successfully acquired reservation lock on device 'Audio0'
D: alsa-util.c: Checking for playback on analog-mono (hw)
D: alsa-util.c: Trying hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying hw:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 without SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Failed to set hardware parameters on plug:hw:0: Invalid 
argument
D: alsa-util.c: Checking for playback on analog-stereo (front)
D: alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 
48000 Hz.
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying hw:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 without SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Failed to set hardware parameters on plug:hw:0: Invalid 
argument
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 
48000 Hz.
I: module-alsa-card.c: Found output profile 'Output Analog Stereo + 
Input Analog Stereo'
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC0D2c failed
I: alsa-util.c: Error opening PCM device iec958:0: No such file or directory
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 0
I: (alsa-lib)pcm.c: Unknown PCM hdmi:0
I: alsa-util.c: Error opening PCM device hdmi:0: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround40:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround41:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround50:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround51:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround71:0: 
Invalid argument
I: module-alsa-card.c: Found output profile 'Output Analog Stereo'
D: alsa-util.c: Checking for playback on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device iec958:0 doesn't support 44100 Hz, changed to 
48000 Hz.
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying hw:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 without SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Failed to set hardware parameters on plug:hw:0: Invalid 
argument
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 
48000 Hz.
I: module-alsa-card.c: Found output profile 'Output Digital Stereo 
(IEC958) + Input Analog Stereo'
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC0D2c failed
I: alsa-util.c: Error opening PCM device iec958:0: No such file or directory
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 0
I: (alsa-lib)pcm.c: Unknown PCM hdmi:0
I: alsa-util.c: Error opening PCM device hdmi:0: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround40:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround41:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround50:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround51:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround71:0: 
Invalid argument
I: module-alsa-card.c: Found output profile 'Output Digital Stereo (IEC958)'
D: alsa-util.c: Checking for playback on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 0
I: (alsa-lib)pcm.c: Unknown PCM hdmi:0
I: alsa-util.c: Error opening PCM device hdmi:0: Invalid argument
D: alsa-util.c: Checking for playback on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device surround40:0 doesn't support 44100 Hz, changed to 
48000 Hz.
D: alsa-sink.c: Cutting sleep time for the initial iterations by half.
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying hw:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 without SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Failed to set hardware parameters on plug:hw:0: Invalid 
argument
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 
48000 Hz.
I: module-alsa-card.c: Found output profile 'Output Analog Surround 4.0 
+ Input Analog Stereo'
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC0D2c failed
I: alsa-util.c: Error opening PCM device iec958:0: No such file or directory
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 0
I: (alsa-lib)pcm.c: Unknown PCM hdmi:0
I: alsa-util.c: Error opening PCM device hdmi:0: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround40:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround41:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround50:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround51:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround71:0: 
Invalid argument
I: module-alsa-card.c: Found output profile 'Output Analog Surround 4.0'
D: alsa-util.c: Checking for playback on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for playback on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device surround41:0 doesn't support 44100 Hz, changed to 
48000 Hz.
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying hw:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 without SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Failed to set hardware parameters on plug:hw:0: Invalid 
argument
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 
48000 Hz.
I: module-alsa-card.c: Found output profile 'Output Analog Surround 4.1 
+ Input Analog Stereo'
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC0D2c failed
I: alsa-util.c: Error opening PCM device iec958:0: No such file or directory
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 0
I: (alsa-lib)pcm.c: Unknown PCM hdmi:0
I: alsa-util.c: Error opening PCM device hdmi:0: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround40:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround41:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround50:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround51:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround71:0: 
Invalid argument
I: module-alsa-card.c: Found output profile 'Output Analog Surround 4.1'
D: alsa-util.c: Checking for playback on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device surround50:0 doesn't support 44100 Hz, changed to 
48000 Hz.
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying hw:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 without SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Failed to set hardware parameters on plug:hw:0: Invalid 
argument
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 
48000 Hz.
I: module-alsa-card.c: Found output profile 'Output Analog Surround 5.0 
+ Input Analog Stereo'
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC0D2c failed
I: alsa-util.c: Error opening PCM device iec958:0: No such file or directory
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 0
I: (alsa-lib)pcm.c: Unknown PCM hdmi:0
I: alsa-util.c: Error opening PCM device hdmi:0: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround40:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround41:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround50:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround51:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround71:0: 
Invalid argument
I: module-alsa-card.c: Found output profile 'Output Analog Surround 5.0'
D: alsa-util.c: Checking for playback on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device surround51:0 doesn't support 44100 Hz, changed to 
48000 Hz.
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying hw:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 without SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Failed to set hardware parameters on plug:hw:0: Invalid 
argument
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 
48000 Hz.
I: module-alsa-card.c: Found output profile 'Output Analog Surround 5.1 
+ Input Analog Stereo'
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC0D2c failed
I: alsa-util.c: Error opening PCM device iec958:0: No such file or directory
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 0
I: (alsa-lib)pcm.c: Unknown PCM hdmi:0
I: alsa-util.c: Error opening PCM device hdmi:0: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround40:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround41:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround50:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround51:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround71:0: 
Invalid argument
I: module-alsa-card.c: Found output profile 'Output Analog Surround 5.1'
D: alsa-util.c: Checking for playback on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for playback on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device surround71:0 doesn't support 44100 Hz, changed to 
48000 Hz.
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying hw:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 without SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Failed to set hardware parameters on plug:hw:0: Invalid 
argument
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 
48000 Hz.
I: module-alsa-card.c: Found output profile 'Output Analog Surround 7.1 
+ Input Analog Stereo'
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC0D2c failed
I: alsa-util.c: Error opening PCM device iec958:0: No such file or directory
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 0
I: (alsa-lib)pcm.c: Unknown PCM hdmi:0
I: alsa-util.c: Error opening PCM device hdmi:0: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround40:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround41:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround50:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround51:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround71:0: 
Invalid argument
I: module-alsa-card.c: Found output profile 'Output Analog Surround 7.1'
D: alsa-util.c: Checking for capture on analog-mono (hw)
D: alsa-util.c: Trying hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying hw:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:hw:0 without SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Failed to set hardware parameters on plug:hw:0: Invalid 
argument
D: alsa-util.c: Checking for capture on analog-stereo (front)
D: alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
I: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 
48000 Hz.
I: module-alsa-card.c: Found output profile 'Input Analog Stereo'
D: alsa-util.c: Checking for capture on iec958-stereo (iec958)
D: alsa-util.c: Trying iec958:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_hw.c: open /dev/snd/pcmC0D2c failed
I: alsa-util.c: Error opening PCM device iec958:0: No such file or directory
D: alsa-util.c: Checking for capture on hdmi-stereo (hdmi)
D: alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)conf.c: Unknown parameters 0
I: (alsa-lib)pcm.c: Unknown PCM hdmi:0
I: alsa-util.c: Error opening PCM device hdmi:0: Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-40 (surround40)
D: alsa-util.c: Trying surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround40:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-40 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-41 (surround41)
D: alsa-util.c: Trying surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround41:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-50 (surround50)
D: alsa-util.c: Trying surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround50:0: 
Invalid argument
D: alsa-util.c: Checking for capture on analog-surround-51 (surround51)
D: alsa-util.c: Trying surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround51:0: 
Invalid argument
D: alsa-util.c: Checking for capture on iec958-ac3-surround-51 (a52)
D: alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm.c: Unknown PCM a52:0
I: alsa-util.c: Error opening PCM device a52:0: No such file or directory
D: alsa-util.c: Checking for capture on analog-surround-71 (surround71)
D: alsa-util.c: Trying surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Trying plug:surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
D: alsa-util.c: Trying plug:surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
I: (alsa-lib)pcm_params.c: Slave PCM not usable
I: alsa-util.c: Failed to set hardware parameters on plug:surround71:0: 
Invalid argument
I: card.c: Created 1 "alsa_card.pci_10de_59_sound_card_0"
D: alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Maximum hw buffer size is 341 ms
I: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 
48000 Hz.
I: alsa-sink.c: Successfully opened device front:0.
I: alsa-sink.c: Selected configuration 'Analog Stereo' (analog-stereo).
I: alsa-sink.c: Successfully enabled mmap() mode.
I: alsa-sink.c: Successfully enabled timer-based scheduling mode.
I: (alsa-lib)control.c: Invalid CTL front:0
I: alsa-util.c: Unable to attach to mixer front:0: No such file or directory
I: alsa-util.c: Successfully attached to mixer 'hw:0'
I: alsa-util.c: Using mixer control "Master".
I: module-device-restore.c: Restoring volume for sink 
alsa_output.pci_10de_59_sound_card_0.
I: module-device-restore.c: Restoring mute state for sink 
alsa_output.pci_10de_59_sound_card_0.
I: sink.c: Created sink 1 "alsa_output.pci_10de_59_sound_card_0" with 
sample spec s16le 2ch 48000Hz and channel map front-left,front-right
I: sink.c:     alsa.resolution_bits = "16"
I: sink.c:     alsa.mixer_element = "Master"
I: sink.c:     device.api = "alsa"
I: sink.c:     device.class = "sound"
I: sink.c:     alsa.class = "generic"
I: sink.c:     alsa.subclass = "generic-mix"
I: sink.c:     alsa.name = "NVidia CK804"
I: sink.c:     alsa.id = "Intel ICH"
I: sink.c:     alsa.subdevice = "0"
I: sink.c:     alsa.subdevice_name = "subdevice #0"
I: sink.c:     alsa.device = "0"
I: sink.c:     alsa.card = "0"
I: sink.c:     alsa.card_name = "NVidia CK804"
I: sink.c:     alsa.long_card_name = "NVidia CK804 with ALC850 at irq 23"
I: sink.c:     alsa.driver_name = "snd_intel8x0"
I: sink.c:     device.bus = "pci"
I: sink.c:     device.vendor.id = "10de"
I: sink.c:     device.vendor.name = "Authenex, Inc."
I: sink.c:     device.product.id = "0059"
I: sink.c:     device.form_factor = "internal"
I: sink.c:     device.bus_path = 
"/devices/pci0000:00/0000:00:04.0/sound/card0"
I: sink.c:     hal.udi = 
"/org/freedesktop/Hal/devices/pci_10de_59_sound_card_0"
I: sink.c:     hal.product = "NVidia CK804 with ALC850 Sound Card"
I: sink.c:     hal.card_id = "NVidia CK804 with ALC850"
I: sink.c:     device.string = "front:0"
I: sink.c:     device.buffering.buffer_size = "65536"
I: sink.c:     device.buffering.fragment_size = "65536"
I: sink.c:     device.access_mode = "mmap+timer"
I: sink.c:     device.profile.name = "analog-stereo"
I: sink.c:     device.profile.description = "Analog Stereo"
I: sink.c:     device.description = "Internal Audio"
I: sink.c:     device.icon_name = "audio-card-pci"
I: module-device-restore.c: Restoring volume for source 
alsa_output.pci_10de_59_sound_card_0.monitor.
I: module-device-restore.c: Restoring mute state for source 
alsa_output.pci_10de_59_sound_card_0.monitor.
I: source.c: Created source 2 
"alsa_output.pci_10de_59_sound_card_0.monitor" with sample spec s16le 
2ch 48000Hz and channel map front-left,front-right
I: source.c:     device.description = "Monitor of Internal Audio"
I: source.c:     device.class = "monitor"
I: source.c:     alsa.card = "0"
I: source.c:     alsa.card_name = "NVidia CK804"
I: source.c:     alsa.long_card_name = "NVidia CK804 with ALC850 at irq 23"
I: source.c:     alsa.driver_name = "snd_intel8x0"
I: source.c:     device.bus = "pci"
I: source.c:     device.vendor.id = "10de"
I: source.c:     device.vendor.name = "Authenex, Inc."
I: source.c:     device.product.id = "0059"
I: source.c:     device.form_factor = "internal"
I: source.c:     device.bus_path = 
"/devices/pci0000:00/0000:00:04.0/sound/card0"
I: source.c:     hal.udi = 
"/org/freedesktop/Hal/devices/pci_10de_59_sound_card_0"
I: source.c:     hal.product = "NVidia CK804 with ALC850 Sound Card"
I: source.c:     hal.card_id = "NVidia CK804 with ALC850"
I: source.c:     device.string = "0"
I: source.c:     device.icon_name = "audio-card-pci"
I: alsa-sink.c: Using 1 fragments of size 65536 bytes, buffer time is 
341.33ms
I: alsa-sink.c: Time scheduling watermark is 20.00ms
D: alsa-sink.c: Latency set to 250.00ms
D: alsa-sink.c: hwbuf_unused=17536
D: alsa-sink.c: setting avail_min=15425
I: alsa-sink.c: Volume ranges from 0 to 31.
I: alsa-sink.c: Volume ranges from -46.50 dB to 0.00 dB.
I: alsa-sink.c: No particular base volume set, fixing to 0 dB
I: alsa-util.c: All 2 channels can be mapped to mixer channels.
I: alsa-sink.c: Using hardware volume control. Hardware dB scale supported.
D: alsa-util.c: snd_pcm_dump():
D: alsa-util.c: Hardware PCM card 0 'NVidia CK804' device 0 subdevice 0
D: alsa-util.c: Its setup is:
D: alsa-util.c:   stream       : PLAYBACK
D: alsa-util.c:   access       : MMAP_INTERLEAVED
D: alsa-util.c:   format       : S16_LE
D: alsa-util.c:   subformat    : STD
D: alsa-util.c:   channels     : 2
D: alsa-util.c:   rate         : 48000
D: alsa-util.c:   exact rate   : 48000 (48000/1)
D: alsa-util.c:   msbits       : 16
D: alsa-util.c:   buffer_size  : 16384
D: alsa-util.c:   period_size  : 16384
D: alsa-util.c:   period_time  : 341333
D: alsa-util.c:   tstamp_mode  : ENABLE
D: alsa-util.c:   period_step  : 1
D: alsa-util.c:   avail_min    : 16384
D: alsa-util.c:   period_event : 0
D: alsa-util.c:   start_threshold  : -1
D: alsa-util.c:   stop_threshold   : 4611686018427387904
D: alsa-util.c:   silence_threshold: 0
D: alsa-util.c:   silence_size : 0
D: alsa-util.c:   boundary     : 4611686018427387904
D: alsa-util.c:   appl_ptr     : 0
D: alsa-util.c:   hw_ptr       : 0
D: alsa-sink.c: Requested volume: 0: 100% 1: 100%
D: alsa-sink.c: Got hardware volume: 0: 100% 1: 100%
D: alsa-sink.c: Calculated software volume: 0: 100% 1: 100%
D: alsa-sink.c: Thread starting up
D: rtpoll.c: Acquired POSIX realtime signal SIGRTMIN+27
I: alsa-sink.c: Starting playback.
D: alsa-sink.c: Cutting sleep time for the initial iterations by half.
D: alsa-sink.c: Cutting sleep time for the initial iterations by half.
D: alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
D: alsa-util.c: Maximum hw buffer size is 341 ms
I: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 
48000 Hz.
I: alsa-source.c: Successfully opened device front:0.
I: alsa-source.c: Selected configuration 'Analog Stereo' (analog-stereo).
I: alsa-source.c: Successfully enabled mmap() mode.
I: alsa-source.c: Successfully enabled timer-based scheduling mode.
I: (alsa-lib)control.c: Invalid CTL front:0
I: alsa-util.c: Unable to attach to mixer front:0: No such file or directory
I: alsa-util.c: Successfully attached to mixer 'hw:0'
I: alsa-util.c: Using mixer control "Capture".
I: module-device-restore.c: Restoring volume for source 
alsa_input.pci_10de_59_sound_card_0.
I: module-device-restore.c: Restoring mute state for source 
alsa_input.pci_10de_59_sound_card_0.
I: source.c: Created source 3 "alsa_input.pci_10de_59_sound_card_0" with 
sample spec s16le 2ch 48000Hz and channel map front-left,front-right
I: source.c:     alsa.resolution_bits = "16"
I: source.c:     alsa.mixer_element = "Capture"
I: source.c:     device.api = "alsa"
I: source.c:     device.class = "sound"
I: source.c:     alsa.class = "generic"
I: source.c:     alsa.subclass = "generic-mix"
I: source.c:     alsa.name = "NVidia CK804"
I: source.c:     alsa.id = "Intel ICH"
I: source.c:     alsa.subdevice = "0"
I: source.c:     alsa.subdevice_name = "subdevice #0"
I: source.c:     alsa.device = "0"
I: source.c:     alsa.card = "0"
I: source.c:     alsa.card_name = "NVidia CK804"
I: source.c:     alsa.long_card_name = "NVidia CK804 with ALC850 at irq 23"
I: source.c:     alsa.driver_name = "snd_intel8x0"
I: source.c:     device.bus = "pci"
I: source.c:     device.vendor.id = "10de"
I: source.c:     device.vendor.name = "Authenex, Inc."
I: source.c:     device.product.id = "0059"
I: source.c:     device.form_factor = "internal"
I: source.c:     device.bus_path = 
"/devices/pci0000:00/0000:00:04.0/sound/card0"
I: source.c:     hal.udi = 
"/org/freedesktop/Hal/devices/pci_10de_59_sound_card_0"
I: source.c:     hal.product = "NVidia CK804 with ALC850 Sound Card"
I: source.c:     hal.card_id = "NVidia CK804 with ALC850"
I: source.c:     device.string = "front:0"
I: source.c:     device.buffering.buffer_size = "65536"
I: source.c:     device.buffering.fragment_size = "65536"
I: source.c:     device.access_mode = "mmap+timer"
I: source.c:     device.profile.name = "analog-stereo"
I: source.c:     device.profile.description = "Analog Stereo"
I: source.c:     device.description = "Internal Audio"
I: source.c:     device.icon_name = "audio-card-pci"
I: alsa-source.c: Using 1 fragments of size 65536 bytes, buffer time is 
341.33ms
I: alsa-source.c: Time scheduling watermark is 20.00ms
D: alsa-source.c: hwbuf_unused=0
D: alsa-source.c: setting avail_min=15424
I: alsa-source.c: Volume ranges from 0 to 15.
I: alsa-source.c: Volume ranges from 0.00 dB to 22.50 dB.
I: alsa-source.c: Fixing base volume to -22.50 dB
I: alsa-util.c: All 2 channels can be mapped to mixer channels.
I: alsa-source.c: Using hardware volume control. Hardware dB scale 
supported.
D: alsa-util.c: snd_pcm_dump():
D: alsa-util.c: Hardware PCM card 0 'NVidia CK804' device 0 subdevice 0
D: alsa-util.c: Its setup is:
D: alsa-util.c:   stream       : CAPTURE
D: alsa-util.c:   access       : MMAP_INTERLEAVED
D: alsa-util.c:   format       : S16_LE
D: alsa-util.c:   subformat    : STD
D: alsa-util.c:   channels     : 2
D: alsa-util.c:   rate         : 48000
D: alsa-util.c:   exact rate   : 48000 (48000/1)
D: alsa-util.c:   msbits       : 16
D: alsa-util.c:   buffer_size  : 16384
D: alsa-util.c:   period_size  : 16384
D: alsa-util.c:   period_time  : 341333
D: alsa-util.c:   tstamp_mode  : ENABLE
D: alsa-util.c:   period_step  : 1
D: alsa-util.c:   avail_min    : 16384
D: alsa-util.c:   period_event : 0
D: alsa-util.c:   start_threshold  : -1
D: alsa-util.c:   stop_threshold   : 4611686018427387904
D: alsa-util.c:   silence_threshold: 0
D: alsa-util.c:   silence_size : 0
D: alsa-util.c:   boundary     : 4611686018427387904
D: alsa-util.c:   appl_ptr     : 0
D: alsa-util.c:   hw_ptr       : 0
D: alsa-source.c: Thread starting up
D: rtpoll.c: Acquired POSIX realtime signal SIGRTMIN+26
D: alsa-source.c: Requested volume: 0:  75% 1:  75%
D: alsa-source.c: Got hardware volume: 0:  75% 1:  75%
D: alsa-source.c: Calculated software volume: 0: 100% 1: 100%
I: module.c: Loaded "module-alsa-card" (index: #5; argument: 
"device_id=0 name=pci_10de_59_sound_card_0 
card_name=alsa_card.pci_10de_59_sound_card_0 tsched=1").
D: module-hal-detect.c: Loaded device 
/org/freedesktop/Hal/devices/pci_10de_59_sound_card_0_alsa_control__1
I: module-hal-detect.c: Loaded 2 modules.
I: module.c: Loaded "module-hal-detect" (index: #6; argument: "").
D: cli-command.c: Checking for existance of 
'/usr/lib/pulse-0.9.15/modules/module-bluetooth-discover.so': success
D: module-hal-detect.c: dbus: interface=org.freedesktop.DBus, 
path=/org/freedesktop/DBus, member=NameAcquired
D: bluetooth-util.c: dbus: interface=org.freedesktop.DBus, 
path=/org/freedesktop/DBus, member=NameAcquired
E: bluetooth-util.c: Error from ListAdapters reply: 
org.freedesktop.DBus.Error.ServiceUnknown
I: module.c: Loaded "module-bluetooth-discover" (index: #7; argument: "").
D: cli-command.c: Checking for existance of 
'/usr/lib/pulse-0.9.15/modules/module-esound-protocol-unix.so': success
I: module.c: Loaded "module-esound-protocol-unix" (index: #8; argument: "").
I: module.c: Loaded "module-native-protocol-unix" (index: #9; argument: "").
D: cli-command.c: Checking for existance of 
'/usr/lib/pulse-0.9.15/modules/module-gconf.so': success
I: module.c: Loaded "module-gconf" (index: #10; argument: "").
I: module.c: Loaded "module-default-device-restore" (index: #11; 
argument: "").
I: module.c: Loaded "module-rescue-streams" (index: #12; argument: "").
I: module.c: Loaded "module-always-sink" (index: #13; argument: "").
D: module-suspend-on-idle.c: Sink alsa_output.pci_1102_8_sound_card_1 
becomes idle.
D: module-suspend-on-idle.c: Sink alsa_output.pci_10de_59_sound_card_0 
becomes idle.
D: module-suspend-on-idle.c: Source alsa_input.pci_1102_8_sound_card_1 
becomes idle.
D: module-suspend-on-idle.c: Source alsa_input.pci_10de_59_sound_card_0 
becomes idle.
I: module.c: Loaded "module-suspend-on-idle" (index: #14; argument: "").
I: client.c: Created 0 "ConsoleKit Session 
/org/freedesktop/ConsoleKit/Session1"
D: module-console-kit.c: Added new session 
/org/freedesktop/ConsoleKit/Session1
I: module.c: Loaded "module-console-kit" (index: #15; argument: "").
I: module.c: Loaded "module-position-event-sounds" (index: #16; 
argument: "").
I: module.c: Loaded "module-cork-music-on-phone" (index: #17; argument: "").
D: main.c: Got org.pulseaudio.Server!
I: main.c: Daemon startup complete.
D: alsa-sink.c: Wakeup from ALSA!
I: alsa-sink.c: Underrun!
N: alsa-sink.c: Increasing wakeup watermark to 30.00 ms
D: alsa-sink.c: Wakeup from ALSA!
I: alsa-sink.c: Underrun!
N: alsa-sink.c: Increasing wakeup watermark to 40.00 ms
D: alsa-source.c: Wakeup from ALSA!
I: client.c: Created 1 "Native client (UNIX socket client)"
D: protocol-native.c: Protocol version: remote 15, local 15
I: protocol-native.c: Got credentials: uid=1000 gid=100 success=1
D: protocol-native.c: SHM possible: yes
D: protocol-native.c: Negotiated SHM: yes
D: module-augment-properties.c: Looking for .desktop file for xfce4-mixer
I: client.c: Freed 1 "Mixer"
I: protocol-native.c: Connection died.
I: client.c: Created 2 "Native client (UNIX socket client)"
D: protocol-native.c: Protocol version: remote 15, local 15
I: protocol-native.c: Got credentials: uid=1000 gid=100 success=1
D: protocol-native.c: SHM possible: yes
D: protocol-native.c: Negotiated SHM: yes
D: module-augment-properties.c: Looking for .desktop file for xfce4-mixer
I: client.c: Created 3 "Native client (UNIX socket client)"
D: protocol-native.c: Protocol version: remote 15, local 15
I: protocol-native.c: Got credentials: uid=1000 gid=100 success=1
D: protocol-native.c: SHM possible: yes
D: protocol-native.c: Negotiated SHM: yes
D: module-augment-properties.c: Looking for .desktop file for xfce4-mixer
I: client.c: Created 4 "Native client (UNIX socket client)"
D: protocol-native.c: Protocol version: remote 15, local 15
I: protocol-native.c: Got credentials: uid=1000 gid=100 success=1
D: protocol-native.c: SHM possible: yes
D: protocol-native.c: Negotiated SHM: yes
D: module-augment-properties.c: Looking for .desktop file for xfce4-mixer
I: client.c: Created 5 "Native client (UNIX socket client)"
D: protocol-native.c: Protocol version: remote 15, local 15
I: protocol-native.c: Got credentials: uid=1000 gid=100 success=1
D: protocol-native.c: SHM possible: yes
D: protocol-native.c: Negotiated SHM: yes
D: module-augment-properties.c: Looking for .desktop file for xfce4-mixer
I: client.c: Created 6 "Native client (UNIX socket client)"
D: protocol-native.c: Protocol version: remote 15, local 15
I: protocol-native.c: Got credentials: uid=1000 gid=100 success=1
D: protocol-native.c: SHM possible: yes
D: protocol-native.c: Negotiated SHM: yes
D: module-augment-properties.c: Looking for .desktop file for xfce4-mixer
I: client.c: Created 7 "Native client (UNIX socket client)"
D: protocol-native.c: Protocol version: remote 15, local 15
I: protocol-native.c: Got credentials: uid=1000 gid=100 success=1
D: protocol-native.c: SHM possible: yes
D: protocol-native.c: Negotiated SHM: yes
D: module-augment-properties.c: Looking for .desktop file for xfce4-mixer
D: alsa-source.c: Wakeup from ALSA!
D: alsa-source.c: Wakeup from ALSA!
I: module-suspend-on-idle.c: Source alsa_input.pci_10de_59_sound_card_0 
idle for too long, suspending ...
I: alsa-source.c: Device suspended...
I: module-suspend-on-idle.c: Source alsa_input.pci_1102_8_sound_card_1 
idle for too long, suspending ...
I: alsa-source.c: Device suspended...
I: module-suspend-on-idle.c: Sink alsa_output.pci_10de_59_sound_card_0 
idle for too long, suspending ...
I: alsa-sink.c: Device suspended...
I: module-suspend-on-idle.c: Sink alsa_output.pci_1102_8_sound_card_1 
idle for too long, suspending ...
I: alsa-sink.c: Device suspended...
I: client.c: Freed 2 "Mixer"
I: protocol-native.c: Connection died.
I: client.c: Freed 3 "Mixer"
I: protocol-native.c: Connection died.
I: client.c: Freed 4 "Mixer"
I: protocol-native.c: Connection died.
I: client.c: Freed 5 "Mixer"
I: protocol-native.c: Connection died.
I: client.c: Freed 6 "Mixer"
I: protocol-native.c: Connection died.
I: client.c: Freed 7 "Mixer"
I: protocol-native.c: Connection died.




More information about the pulseaudio-discuss mailing list