1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611 | ( 0.000| 0.000) I: [pulseaudio] main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted
( 0.000| 0.000) I: [pulseaudio] main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted
( 0.000| 0.000) D: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us.
( 0.008| 0.008) D: [pulseaudio] core-util.c: RealtimeKit worked.
( 0.008| 0.000) I: [pulseaudio] core-util.c: Successfully gained nice level -11.
( 0.008| 0.000) I: [pulseaudio] main.c: This is PulseAudio 4.0
( 0.008| 0.000) D: [pulseaudio] main.c: Compilation host: x86_64-pc-linux-gnu
( 0.008| 0.000) D: [pulseaudio] main.c: Compilation CFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -W -Wextra -pipe -Wno-long-long -Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 -Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs -Wformat-nonliteral -Wpointer-arith -Winit-self -Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align -Wstrict-aliasing -Wwrite-strings -Wno-unused-parameter -ffast-math -Wp,-D_FORTIFY_SOURCE=2 -fno-common -fdiagnostics-show-option
( 0.009| 0.000) D: [pulseaudio] main.c: Running on host: Linux x86_64 3.13.0-43-generic #72-Ubuntu SMP Mon Dec 8 19:35:06 UTC 2014
( 0.009| 0.000) D: [pulseaudio] main.c: Found 4 CPUs.
( 0.009| 0.000) I: [pulseaudio] main.c: Page size is 4096 bytes
( 0.009| 0.000) D: [pulseaudio] main.c: Compiled with Valgrind support: no
( 0.009| 0.000) D: [pulseaudio] main.c: Running in valgrind mode: no
( 0.009| 0.000) D: [pulseaudio] main.c: Running in VM: no
( 0.009| 0.000) D: [pulseaudio] main.c: Optimized build: yes
( 0.009| 0.000) D: [pulseaudio] main.c: FASTPATH defined, only fast path asserts disabled.
( 0.009| 0.000) I: [pulseaudio] main.c: Machine ID is 10f892d10f4892fc8f20c83654a8086a.
( 0.009| 0.000) I: [pulseaudio] main.c: Session ID is c1.
( 0.009| 0.000) I: [pulseaudio] main.c: Using runtime directory /run/user/1000/pulse.
( 0.009| 0.000) I: [pulseaudio] main.c: Using state directory /home/administrator/.config/pulse.
( 0.009| 0.000) I: [pulseaudio] main.c: Using modules directory /usr/lib/pulse-4.0/modules.
( 0.009| 0.000) I: [pulseaudio] main.c: Running in system mode: no
( 0.009| 0.000) I: [pulseaudio] main.c: Fresh high-resolution timers available! Bon appetit!
( 0.010| 0.000) D: [pulseaudio] 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
( 0.010| 0.000) I: [pulseaudio] cpu-x86.c: CPU flags: CMOV MMX SSE SSE2 SSE3 SSSE3 SSE4_1 SSE4_2
( 0.010| 0.000) I: [pulseaudio] svolume_mmx.c: Initialising MMX optimized volume functions.
( 0.010| 0.000) I: [pulseaudio] remap_mmx.c: Initialising MMX optimized remappers.
( 0.010| 0.000) I: [pulseaudio] svolume_sse.c: Initialising SSE2 optimized volume functions.
( 0.010| 0.000) I: [pulseaudio] remap_sse.c: Initialising SSE2 optimized remappers.
( 0.010| 0.000) I: [pulseaudio] sconv_sse.c: Initialising SSE2 optimized conversions.
( 0.010| 0.000) I: [pulseaudio] svolume_orc.c: Initialising ORC optimized volume functions.
( 0.011| 0.001) D: [pulseaudio] database-tdb.c: Opened TDB database '/home/administrator/.config/pulse/10f892d10f4892fc8f20c83654a8086a-device-volumes.tdb'
( 0.011| 0.000) I: [pulseaudio] module-device-restore.c: Successfully opened database file '/home/administrator/.config/pulse/10f892d10f4892fc8f20c83654a8086a-device-volumes'.
( 0.011| 0.000) I: [pulseaudio] module.c: Loaded "module-device-restore" (index: #0; argument: "").
( 0.012| 0.000) D: [pulseaudio] database-tdb.c: Opened TDB database '/home/administrator/.config/pulse/10f892d10f4892fc8f20c83654a8086a-stream-volumes.tdb'
( 0.012| 0.000) I: [pulseaudio] module-stream-restore.c: Successfully opened database file '/home/administrator/.config/pulse/10f892d10f4892fc8f20c83654a8086a-stream-volumes'.
( 0.012| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1 added for object /org/pulseaudio/stream_restore1
( 0.012| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry0
( 0.012| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry1
( 0.012| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry2
( 0.012| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry3
( 0.012| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry4
( 0.012| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry5
( 0.012| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry6
( 0.013| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry7
( 0.013| 0.000) I: [pulseaudio] module.c: Loaded "module-stream-restore" (index: #1; argument: "").
( 0.013| 0.000) D: [pulseaudio] database-tdb.c: Opened TDB database '/home/administrator/.config/pulse/10f892d10f4892fc8f20c83654a8086a-card-database.tdb'
( 0.013| 0.000) I: [pulseaudio] module-card-restore.c: Successfully opened database file '/home/administrator/.config/pulse/10f892d10f4892fc8f20c83654a8086a-card-database'.
( 0.013| 0.000) I: [pulseaudio] module.c: Loaded "module-card-restore" (index: #2; argument: "").
( 0.013| 0.000) I: [pulseaudio] module.c: Loaded "module-augment-properties" (index: #3; argument: "").
( 0.014| 0.000) I: [pulseaudio] module.c: Loaded "module-switch-on-port-available" (index: #4; argument: "").
( 0.014| 0.000) D: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-4.0/modules/module-udev-detect.so': success
( 0.016| 0.001) D: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
( 0.016| 0.000) D: [pulseaudio] module-udev-detect.c: /devices/pci0000:00/0000:00:1b.0/sound/card0 is busy: no
( 0.016| 0.000) D: [pulseaudio] module-udev-detect.c: Loading module-alsa-card with arguments 'device_id="0" name="pci-0000_00_1b.0" card_name="alsa_card.pci-0000_00_1b.0" namereg_fail=false tsched=yes fixed_latency_range=no ignore_dB=no deferred_volume=yes use_ucm=yes card_properties="module-udev-detect.discovered=1"'
( 0.020| 0.003) D: [pulseaudio] dbus-util.c: Successfully connected to D-Bus session bus 1a738de1c9ba5f8446be6cce54a92674 as :1.110
( 0.021| 0.001) D: [pulseaudio] reserve-wrap.c: Successfully acquired reservation lock on device 'Audio0'
( 0.021| 0.000) I: [pulseaudio] (alsa-lib)utils.c: could not open configuration file /usr/share/alsa/ucm/HDA Intel PCH/HDA Intel PCH.conf
( 0.021| 0.000) I: [pulseaudio] (alsa-lib)parser.c: error: could not parse configuration for card HDA Intel PCH
( 0.021| 0.000) I: [pulseaudio] (alsa-lib)main.c: error: failed to import HDA Intel PCH use case configuration -2
( 0.021| 0.000) I: [pulseaudio] alsa-ucm.c: UCM not available for card HDA Intel PCH
( 0.023| 0.001) D: [pulseaudio] alsa-mixer.c: Looking at profile input:analog-mono
( 0.023| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Mono (analog-mono)
( 0.023| 0.000) D: [pulseaudio] alsa-util.c: Trying hw:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.025| 0.002) D: [pulseaudio] alsa-util.c: Managed to open hw:0
( 0.026| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(1) failed: Invalid argument
( 0.026| 0.000) D: [pulseaudio] alsa-util.c: Trying hw:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.026| 0.000) D: [pulseaudio] alsa-util.c: Managed to open hw:0
( 0.026| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(1) failed: Invalid argument
( 0.026| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:hw:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.026| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:hw:0
( 0.026| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(1) failed: Invalid argument
( 0.026| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:hw:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.026| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:hw:0
( 0.027| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(1) failed: Invalid argument
( 0.027| 0.000) I: [pulseaudio] alsa-util.c: Failed to set hardware parameters on plug:hw:0: Invalid argument
( 0.027| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open input:analog-mono
( 0.027| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile input:analog-stereo
( 0.027| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo (analog-stereo)
( 0.027| 0.000) D: [pulseaudio] alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.029| 0.002) D: [pulseaudio] alsa-util.c: Managed to open front:0
( 0.029| 0.000) D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 371 ms
( 0.029| 0.000) D: [pulseaudio] alsa-util.c: Set buffer size first (to 3528 samples), period size second (to 441 samples).
( 0.029| 0.000) D: [pulseaudio] alsa-mixer.c: Profile input:analog-stereo supported.
( 0.032| 0.002) I: [pulseaudio] (alsa-lib)control.c: Invalid CTL front:0
( 0.032| 0.000) I: [pulseaudio] alsa-util.c: Unable to attach to mixer front:0: No such file or directory
( 0.032| 0.000) I: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:0'
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone-front'
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Mic Jack' succeeded (not found)
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Mic Phantom Jack' succeeded (not found)
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.032| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=2, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Inverted Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-microphone-front', none of required-any elements preset.
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone-rear'
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Rear Mic Jack' succeeded (not found)
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Rear Mic Phantom Jack' succeeded (not found)
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=2, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Inverted Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-microphone-rear', none of required-any elements preset.
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone-internal'
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Mic Jack' succeeded (found!)
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Dock Mic Jack' succeeded (not found)
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Mic Jack' succeeded (not found)
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Rear Mic Jack' succeeded (not found)
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Internal Mic Phantom Jack' succeeded (not found)
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Int Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Int Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=2, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Inverted Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-microphone-internal', none of required-any elements preset.
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone-dock'
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Dock Mic Jack' succeeded (not found)
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Dock Mic Phantom Jack' succeeded (not found)
( 0.033| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=2, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Inverted Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-microphone-dock', none of required-any elements preset.
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input'
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Int Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Int Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source Select' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Digital Input Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Analog Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Shared Mic/Line in' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Auto Gain Control' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone'
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Mic Jack' succeeded (found!)
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Mic Phantom Jack' succeeded (not found)
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=1, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Select' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost (+20dB)' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.034| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Inverted Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-linein'
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Jack' succeeded (not found)
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Phantom Jack' succeeded (not found)
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=2, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-linein', none of required-any elements preset.
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input'
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' failed.
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-video'
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' failed.
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-video'
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' failed.
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-radio'
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' failed.
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input'
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' failed.
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone'
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Mic Jack' succeeded (not found)
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Auto-Mute Mode' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
( 0.035| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Inverted Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-microphone', none of required-any elements preset.
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-microphone-headset'
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Headset Mic Jack' succeeded (not found)
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Headset Mic Phantom Jack' succeeded (not found)
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Jack' succeeded (not found)
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Mic Jack' succeeded (not found)
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headset Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headset Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headset' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=1, switch=1, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Inverted Internal Mic' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0).
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-input-microphone-headset', none of required-any elements preset.
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Path Set 0x1bc4390, direction=2
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Path analog-input (Analog Input), direction=2, priority=100, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=63, min_dB=-17,25, max_dB=30
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Element Capture, direction=2, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=yes
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Path analog-input-microphone (Microphone), direction=2, priority=87, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=3, min_dB=-17,25, max_dB=60
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Element Mic Boost, direction=2, switch=0, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=4, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=yes
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Element Capture, direction=2, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=yes
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Jack Mic, alsa_name='Mic Jack', detection possible
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Jack Mic Phantom, alsa_name='Mic Phantom Jack', detection unavailable
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile input:iec958-stereo
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for recording on Digital Stereo (IEC958) (iec958-stereo)
( 0.036| 0.000) D: [pulseaudio] alsa-util.c: Trying iec958:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.036| 0.000) I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC0D1c' failed (-2)
( 0.036| 0.000) I: [pulseaudio] alsa-util.c: Error opening PCM device iec958:0: No such file or directory
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open input:iec958-stereo
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-mono
( 0.036| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Mono (analog-mono)
( 0.036| 0.000) D: [pulseaudio] alsa-util.c: Trying hw:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.036| 0.000) D: [pulseaudio] alsa-util.c: Managed to open hw:0
( 0.037| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(1) failed: Invalid argument
( 0.037| 0.000) D: [pulseaudio] alsa-util.c: Trying hw:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.037| 0.000) D: [pulseaudio] alsa-util.c: Managed to open hw:0
( 0.037| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(1) failed: Invalid argument
( 0.037| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:hw:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.037| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:hw:0
( 0.037| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(1) failed: Invalid argument
( 0.037| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:hw:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.037| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:hw:0
( 0.037| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(1) failed: Invalid argument
( 0.037| 0.000) I: [pulseaudio] alsa-util.c: Failed to set hardware parameters on plug:hw:0: Invalid argument
( 0.037| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:analog-mono
( 0.037| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-mono+input:analog-mono - will not be able to open output:analog-mono
( 0.037| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-mono+input:analog-stereo - will not be able to open output:analog-mono
( 0.037| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-mono+input:iec958-stereo - will not be able to open output:analog-mono
( 0.037| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-stereo
( 0.037| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Stereo (analog-stereo)
( 0.037| 0.000) D: [pulseaudio] alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.038| 0.000) D: [pulseaudio] alsa-util.c: Managed to open front:0
( 0.038| 0.000) D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 371 ms
( 0.051| 0.012) D: [pulseaudio] alsa-util.c: Set buffer size first (to 3528 samples), period size second (to 441 samples).
( 0.051| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:analog-stereo supported.
( 0.053| 0.002) I: [pulseaudio] (alsa-lib)control.c: Invalid CTL front:0
( 0.054| 0.000) I: [pulseaudio] alsa-util.c: Unable to attach to mixer front:0: No such file or directory
( 0.054| 0.000) I: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:0'
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-output'
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out Jack' succeeded (not found)
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out Phantom Jack' succeeded (not found)
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Hardware Master' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Master' succeeded (volume=1, switch=1, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Master Mono' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line HP Swap' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone2' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Desktop Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Surround' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Side' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Center' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'LFE' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'CLFE' succeeded (volume=0, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'PCM' succeeded (volume=1, switch=0, enumeration=0).
( 0.054| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'External Amplifier' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Bass Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958' succeeded (volume=0, switch=2, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958 Optical Raw' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Analog Output' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-output-speaker'
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Jack' succeeded (not found)
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Headphone Jack' succeeded (found!)
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Speaker Phantom Jack' succeeded (not found)
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Hardware Master' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Master' succeeded (volume=1, switch=1, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Master Mono' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone2' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Desktop Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Surround' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Surround Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Side' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Center' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Center Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'LFE' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'LFE Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Bass Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'CLFE' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'PCM' succeeded (volume=1, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'External Amplifier' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Bass Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958' succeeded (volume=0, switch=2, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958 Optical Raw' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Analog Output' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping path 'analog-output-speaker', none of required-any elements preset.
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-output-speaker'
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Hardware Master' succeeded (volume=0, switch=0, enumeration=0).
( 0.055| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Master' succeeded (volume=1, switch=1, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Master Mono' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone2' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Desktop Speaker' failed.
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-output-headphones'
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Headphone Jack' succeeded (found!)
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Headphone Phantom Jack' succeeded (not found)
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Jack' succeeded (not found)
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Phantom Jack' succeeded (not found)
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Mic Jack' succeeded (not found)
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Hardware Master' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Master' succeeded (volume=1, switch=1, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Master Mono' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headset' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Line HP Swap' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone2' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Desktop Speaker' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Front' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Rear' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Surround' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Side' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Center' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'LFE' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'PCM' succeeded (volume=1, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'External Amplifier' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Bass Boost' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958' succeeded (volume=0, switch=2, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958 Optical Raw' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Analog Output' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'analog-output-headphones'
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Hardware Master' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Master' succeeded (volume=1, switch=1, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Master Mono' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone' succeeded (volume=0, switch=0, enumeration=0).
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone2' failed.
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Removing path 'analog-output' as it is a subset of 'analog-output-headphones'.
( 0.056| 0.000) D: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Path Set 0x1c77a20, direction=1
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Path analog-output-headphones (Headphones), direction=1, priority=90, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=87, min_dB=-116,25, max_dB=0
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Element Master, direction=1, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=yes
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Element PCM, direction=1, switch=0, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=yes
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Element IEC958, direction=1, switch=2, volume=0, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x0, n_channels=0, override_map=no
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Jack Front Headphone, alsa_name='Front Headphone Jack', detection possible
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Jack Front Headphone Phantom, alsa_name='Front Headphone Phantom Jack', detection unavailable
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Jack Headphone, alsa_name='Headphone Jack', detection unavailable
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Jack Headphone Phantom, alsa_name='Headphone Phantom Jack', detection unavailable
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Jack Headphone Mic, alsa_name='Headphone Mic Jack', detection unavailable
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-stereo+input:analog-mono - will not be able to open input:analog-mono
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-stereo+input:analog-stereo
( 0.057| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo (analog-stereo)
( 0.057| 0.000) D: [pulseaudio] alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.057| 0.000) D: [pulseaudio] alsa-util.c: Managed to open front:0
( 0.058| 0.000) D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 371 ms
( 0.058| 0.000) D: [pulseaudio] alsa-util.c: Set buffer size first (to 3528 samples), period size second (to 441 samples).
( 0.058| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:analog-stereo+input:analog-stereo supported.
( 0.058| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-stereo+input:iec958-stereo - will not be able to open input:iec958-stereo
( 0.058| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-40
( 0.058| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.0 (analog-surround-40)
( 0.058| 0.000) D: [pulseaudio] alsa-util.c: Trying surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.059| 0.000) D: [pulseaudio] alsa-util.c: Managed to open surround40:0
( 0.059| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(4) failed: Invalid argument
( 0.059| 0.000) D: [pulseaudio] alsa-util.c: Trying surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.059| 0.000) D: [pulseaudio] alsa-util.c: Managed to open surround40:0
( 0.059| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(4) failed: Invalid argument
( 0.059| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:surround40:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.060| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:surround40:0
( 0.060| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(4) failed: Invalid argument
( 0.060| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:surround40:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.060| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:surround40:0
( 0.060| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(4) failed: Invalid argument
( 0.060| 0.000) I: [pulseaudio] alsa-util.c: Failed to set hardware parameters on plug:surround40:0: Invalid argument
( 0.060| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:analog-surround-40
( 0.060| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-40+input:analog-mono - will not be able to open output:analog-surround-40
( 0.060| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-40+input:analog-stereo - will not be able to open output:analog-surround-40
( 0.060| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-40+input:iec958-stereo - will not be able to open output:analog-surround-40
( 0.061| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-41
( 0.061| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 4.1 (analog-surround-41)
( 0.061| 0.000) D: [pulseaudio] alsa-util.c: Trying surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.061| 0.000) D: [pulseaudio] alsa-util.c: Managed to open surround41:0
( 0.061| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_any() failed: Invalid argument
( 0.061| 0.000) D: [pulseaudio] alsa-util.c: Trying surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.061| 0.000) D: [pulseaudio] alsa-util.c: Managed to open surround41:0
( 0.061| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_any() failed: Invalid argument
( 0.061| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:surround41:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.061| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:surround41:0
( 0.062| 0.000) I: [pulseaudio] (alsa-lib)pcm_params.c: Slave PCM not usable
( 0.062| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_any() failed: Invalid argument
( 0.062| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:surround41:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.062| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:surround41:0
( 0.062| 0.000) I: [pulseaudio] (alsa-lib)pcm_params.c: Slave PCM not usable
( 0.062| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_any() failed: Invalid argument
( 0.062| 0.000) I: [pulseaudio] alsa-util.c: Failed to set hardware parameters on plug:surround41:0: Invalid argument
( 0.062| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:analog-surround-41
( 0.062| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-41+input:analog-mono - will not be able to open output:analog-surround-41
( 0.062| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-41+input:analog-stereo - will not be able to open output:analog-surround-41
( 0.062| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-41+input:iec958-stereo - will not be able to open output:analog-surround-41
( 0.062| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-50
( 0.062| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.0 (analog-surround-50)
( 0.062| 0.000) D: [pulseaudio] alsa-util.c: Trying surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.062| 0.000) D: [pulseaudio] alsa-util.c: Managed to open surround50:0
( 0.062| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_any() failed: Invalid argument
( 0.062| 0.000) D: [pulseaudio] alsa-util.c: Trying surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.062| 0.000) D: [pulseaudio] alsa-util.c: Managed to open surround50:0
( 0.063| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_any() failed: Invalid argument
( 0.063| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:surround50:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.063| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:surround50:0
( 0.063| 0.000) I: [pulseaudio] (alsa-lib)pcm_params.c: Slave PCM not usable
( 0.063| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_any() failed: Invalid argument
( 0.063| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:surround50:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.063| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:surround50:0
( 0.063| 0.000) I: [pulseaudio] (alsa-lib)pcm_params.c: Slave PCM not usable
( 0.063| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_any() failed: Invalid argument
( 0.063| 0.000) I: [pulseaudio] alsa-util.c: Failed to set hardware parameters on plug:surround50:0: Invalid argument
( 0.063| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:analog-surround-50
( 0.063| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-50+input:analog-mono - will not be able to open output:analog-surround-50
( 0.063| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-50+input:analog-stereo - will not be able to open output:analog-surround-50
( 0.063| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-50+input:iec958-stereo - will not be able to open output:analog-surround-50
( 0.063| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-51
( 0.063| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 5.1 (analog-surround-51)
( 0.063| 0.000) D: [pulseaudio] alsa-util.c: Trying surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.063| 0.000) D: [pulseaudio] alsa-util.c: Managed to open surround51:0
( 0.064| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(6) failed: Invalid argument
( 0.064| 0.000) D: [pulseaudio] alsa-util.c: Trying surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.064| 0.000) D: [pulseaudio] alsa-util.c: Managed to open surround51:0
( 0.064| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(6) failed: Invalid argument
( 0.064| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:surround51:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.064| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:surround51:0
( 0.064| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(6) failed: Invalid argument
( 0.064| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:surround51:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.064| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:surround51:0
( 0.065| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(6) failed: Invalid argument
( 0.065| 0.000) I: [pulseaudio] alsa-util.c: Failed to set hardware parameters on plug:surround51:0: Invalid argument
( 0.065| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:analog-surround-51
( 0.065| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-51+input:analog-mono - will not be able to open output:analog-surround-51
( 0.065| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-51+input:analog-stereo - will not be able to open output:analog-surround-51
( 0.065| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-51+input:iec958-stereo - will not be able to open output:analog-surround-51
( 0.065| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-surround-71
( 0.065| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Surround 7.1 (analog-surround-71)
( 0.065| 0.000) D: [pulseaudio] alsa-util.c: Trying surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.065| 0.000) D: [pulseaudio] alsa-util.c: Managed to open surround71:0
( 0.065| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(8) failed: Invalid argument
( 0.065| 0.000) D: [pulseaudio] alsa-util.c: Trying surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.065| 0.000) D: [pulseaudio] alsa-util.c: Managed to open surround71:0
( 0.065| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(8) failed: Invalid argument
( 0.065| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:surround71:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.066| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:surround71:0
( 0.066| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(8) failed: Invalid argument
( 0.066| 0.000) D: [pulseaudio] alsa-util.c: Trying plug:surround71:0 without SND_PCM_NO_AUTO_FORMAT ...
( 0.066| 0.000) D: [pulseaudio] alsa-util.c: Managed to open plug:surround71:0
( 0.066| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_channels(8) failed: Invalid argument
( 0.066| 0.000) I: [pulseaudio] alsa-util.c: Failed to set hardware parameters on plug:surround71:0: Invalid argument
( 0.066| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:analog-surround-71
( 0.066| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-71+input:analog-mono - will not be able to open output:analog-surround-71
( 0.066| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-71+input:analog-stereo - will not be able to open output:analog-surround-71
( 0.066| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:analog-surround-71+input:iec958-stereo - will not be able to open output:analog-surround-71
( 0.066| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-stereo
( 0.066| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (IEC958) (iec958-stereo)
( 0.066| 0.000) D: [pulseaudio] alsa-util.c: Trying iec958:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.067| 0.000) D: [pulseaudio] alsa-util.c: Managed to open iec958:0
( 0.067| 0.000) D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 371 ms
( 0.067| 0.000) D: [pulseaudio] alsa-util.c: Set buffer size first (to 3528 samples), period size second (to 441 samples).
( 0.067| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo supported.
( 0.067| 0.000) I: [pulseaudio] (alsa-lib)control.c: Invalid CTL iec958:0
( 0.067| 0.000) I: [pulseaudio] alsa-util.c: Unable to attach to mixer iec958:0: No such file or directory
( 0.067| 0.000) I: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:0'
( 0.067| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'iec958-stereo-output'
( 0.067| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958' succeeded (volume=0, switch=1, enumeration=0).
( 0.067| 0.000) D: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
( 0.067| 0.000) D: [pulseaudio] alsa-mixer.c: Path Set 0x1c57f00, direction=1
( 0.067| 0.000) D: [pulseaudio] alsa-mixer.c: Path iec958-stereo-output (Digital Output (S/PDIF)), direction=1, priority=0, probed=yes, supported=yes, has_mute=yes, has_volume=no, has_dB=no, min_volume=0, max_volume=0, min_dB=inf, max_dB=-inf
( 0.067| 0.000) D: [pulseaudio] alsa-mixer.c: Element IEC958, direction=1, switch=1, volume=0, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x0, n_channels=0, override_map=no
( 0.067| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:iec958-stereo+input:analog-mono - will not be able to open input:analog-mono
( 0.067| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-stereo+input:analog-stereo
( 0.067| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo (analog-stereo)
( 0.067| 0.000) D: [pulseaudio] alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.068| 0.000) D: [pulseaudio] alsa-util.c: Managed to open front:0
( 0.068| 0.000) D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 371 ms
( 0.068| 0.000) D: [pulseaudio] alsa-util.c: Set buffer size first (to 3528 samples), period size second (to 441 samples).
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo+input:analog-stereo supported.
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:iec958-stereo+input:iec958-stereo - will not be able to open input:iec958-stereo
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-40
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 4.0 (IEC958/AC3) (iec958-ac3-surround-40)
( 0.068| 0.000) D: [pulseaudio] alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.068| 0.000) I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:0
( 0.068| 0.000) I: [pulseaudio] alsa-util.c: Error opening PCM device a52:0: No such file or directory
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:iec958-ac3-surround-40
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:iec958-ac3-surround-40+input:analog-mono - will not be able to open output:iec958-ac3-surround-40
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:iec958-ac3-surround-40+input:analog-stereo - will not be able to open output:iec958-ac3-surround-40
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:iec958-ac3-surround-40+input:iec958-stereo - will not be able to open output:iec958-ac3-surround-40
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-ac3-surround-51
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/AC3) (iec958-ac3-surround-51)
( 0.068| 0.000) D: [pulseaudio] alsa-util.c: Trying a52:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.068| 0.000) I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM a52:0
( 0.068| 0.000) I: [pulseaudio] alsa-util.c: Error opening PCM device a52:0: No such file or directory
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:iec958-ac3-surround-51
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:iec958-ac3-surround-51+input:analog-mono - will not be able to open output:iec958-ac3-surround-51
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:iec958-ac3-surround-51+input:analog-stereo - will not be able to open output:iec958-ac3-surround-51
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:iec958-ac3-surround-51+input:iec958-stereo - will not be able to open output:iec958-ac3-surround-51
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-dts-surround-51
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (IEC958/DTS) (iec958-dts-surround-51)
( 0.068| 0.000) D: [pulseaudio] alsa-util.c: Trying dca:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.068| 0.000) I: [pulseaudio] (alsa-lib)pcm.c: Unknown PCM dca:0
( 0.068| 0.000) I: [pulseaudio] alsa-util.c: Error opening PCM device dca:0: No such file or directory
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:iec958-dts-surround-51
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:iec958-dts-surround-51+input:analog-mono - will not be able to open output:iec958-dts-surround-51
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:iec958-dts-surround-51+input:analog-stereo - will not be able to open output:iec958-dts-surround-51
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:iec958-dts-surround-51+input:iec958-stereo - will not be able to open output:iec958-dts-surround-51
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-stereo
( 0.068| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (HDMI) (hdmi-stereo)
( 0.068| 0.000) D: [pulseaudio] alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.069| 0.000) D: [pulseaudio] alsa-util.c: Managed to open hdmi:0
( 0.069| 0.000) D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 371 ms
( 0.075| 0.005) D: [pulseaudio] alsa-util.c: Set buffer size first (to 3528 samples), period size second (to 441 samples).
( 0.075| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:hdmi-stereo supported.
( 0.076| 0.000) I: [pulseaudio] (alsa-lib)control.c: Invalid CTL hdmi:0
( 0.076| 0.000) I: [pulseaudio] alsa-util.c: Unable to attach to mixer hdmi:0: No such file or directory
( 0.076| 0.000) I: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:0'
( 0.076| 0.000) D: [pulseaudio] alsa-mixer.c: Probing path 'hdmi-output-0'
( 0.076| 0.000) D: [pulseaudio] alsa-mixer.c: Probe of jack 'HDMI/DP,pcm=3 Jack' succeeded (found!)
( 0.076| 0.000) D: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
( 0.076| 0.000) D: [pulseaudio] alsa-mixer.c: Path Set 0x1ca3130, direction=1
( 0.076| 0.000) D: [pulseaudio] alsa-mixer.c: Path hdmi-output-0 (HDMI / DisplayPort), direction=1, priority=59, probed=yes, supported=yes, has_mute=no, has_volume=no, has_dB=no, min_volume=0, max_volume=0, min_dB=inf, max_dB=-inf
( 0.076| 0.000) D: [pulseaudio] alsa-mixer.c: Jack HDMI/DP,pcm=3, alsa_name='HDMI/DP,pcm=3 Jack', detection possible
( 0.076| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-stereo+input:analog-mono - will not be able to open input:analog-mono
( 0.076| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-stereo+input:analog-stereo
( 0.076| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo (analog-stereo)
( 0.076| 0.000) D: [pulseaudio] alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.077| 0.000) D: [pulseaudio] alsa-util.c: Managed to open front:0
( 0.077| 0.000) D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 371 ms
( 0.077| 0.000) D: [pulseaudio] alsa-util.c: Set buffer size first (to 3528 samples), period size second (to 441 samples).
( 0.077| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:hdmi-stereo+input:analog-stereo supported.
( 0.077| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-stereo+input:iec958-stereo - will not be able to open input:iec958-stereo
( 0.077| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-surround
( 0.077| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (HDMI) (hdmi-surround)
( 0.077| 0.000) D: [pulseaudio] alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.078| 0.000) D: [pulseaudio] alsa-util.c: Managed to open hdmi:0
( 0.078| 0.000) D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 123 ms
( 0.087| 0.008) D: [pulseaudio] alsa-util.c: Set buffer size first (to 3528 samples), period size second (to 441 samples).
( 0.087| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:hdmi-surround supported.
( 0.087| 0.000) I: [pulseaudio] (alsa-lib)control.c: Invalid CTL hdmi:0
( 0.087| 0.000) I: [pulseaudio] alsa-util.c: Unable to attach to mixer hdmi:0: No such file or directory
( 0.088| 0.000) I: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:0'
( 0.088| 0.000) D: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
( 0.088| 0.000) D: [pulseaudio] alsa-mixer.c: Path Set 0x1c68e60, direction=1
( 0.088| 0.000) D: [pulseaudio] alsa-mixer.c: Path hdmi-output-0 (HDMI / DisplayPort), direction=1, priority=59, probed=yes, supported=yes, has_mute=no, has_volume=no, has_dB=no, min_volume=0, max_volume=0, min_dB=inf, max_dB=-inf
( 0.088| 0.000) D: [pulseaudio] alsa-mixer.c: Jack HDMI/DP,pcm=3, alsa_name='HDMI/DP,pcm=3 Jack', detection possible
( 0.088| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-surround+input:analog-mono - will not be able to open input:analog-mono
( 0.088| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-surround+input:analog-stereo
( 0.088| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo (analog-stereo)
( 0.088| 0.000) D: [pulseaudio] alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.088| 0.000) D: [pulseaudio] alsa-util.c: Managed to open front:0
( 0.088| 0.000) D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 371 ms
( 0.088| 0.000) D: [pulseaudio] alsa-util.c: Set buffer size first (to 3528 samples), period size second (to 441 samples).
( 0.088| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:hdmi-surround+input:analog-stereo supported.
( 0.088| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-surround+input:iec958-stereo - will not be able to open input:iec958-stereo
( 0.088| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-stereo-extra1
( 0.088| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (HDMI) (hdmi-stereo-extra1)
( 0.088| 0.000) D: [pulseaudio] alsa-util.c: Trying hdmi:0,1 with SND_PCM_NO_AUTO_FORMAT ...
( 0.089| 0.000) I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC0D7p' failed (-2)
( 0.089| 0.000) I: [pulseaudio] alsa-util.c: Error opening PCM device hdmi:0,1: No such file or directory
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:hdmi-stereo-extra1
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-stereo-extra1+input:analog-mono - will not be able to open output:hdmi-stereo-extra1
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-stereo-extra1+input:analog-stereo - will not be able to open output:hdmi-stereo-extra1
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-stereo-extra1+input:iec958-stereo - will not be able to open output:hdmi-stereo-extra1
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-surround-extra1
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (HDMI) (hdmi-surround-extra1)
( 0.089| 0.000) D: [pulseaudio] alsa-util.c: Trying hdmi:0,1 with SND_PCM_NO_AUTO_FORMAT ...
( 0.089| 0.000) I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC0D7p' failed (-2)
( 0.089| 0.000) I: [pulseaudio] alsa-util.c: Error opening PCM device hdmi:0,1: No such file or directory
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:hdmi-surround-extra1
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-surround-extra1+input:analog-mono - will not be able to open output:hdmi-surround-extra1
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-surround-extra1+input:analog-stereo - will not be able to open output:hdmi-surround-extra1
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-surround-extra1+input:iec958-stereo - will not be able to open output:hdmi-surround-extra1
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-stereo-extra2
( 0.089| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (HDMI) (hdmi-stereo-extra2)
( 0.089| 0.000) D: [pulseaudio] alsa-util.c: Trying hdmi:0,2 with SND_PCM_NO_AUTO_FORMAT ...
( 0.090| 0.000) I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC0D8p' failed (-2)
( 0.090| 0.000) I: [pulseaudio] alsa-util.c: Error opening PCM device hdmi:0,2: No such file or directory
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:hdmi-stereo-extra2
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-stereo-extra2+input:analog-mono - will not be able to open output:hdmi-stereo-extra2
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-stereo-extra2+input:analog-stereo - will not be able to open output:hdmi-stereo-extra2
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-stereo-extra2+input:iec958-stereo - will not be able to open output:hdmi-stereo-extra2
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-surround-extra2
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (HDMI) (hdmi-surround-extra2)
( 0.090| 0.000) D: [pulseaudio] alsa-util.c: Trying hdmi:0,2 with SND_PCM_NO_AUTO_FORMAT ...
( 0.090| 0.000) I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC0D8p' failed (-2)
( 0.090| 0.000) I: [pulseaudio] alsa-util.c: Error opening PCM device hdmi:0,2: No such file or directory
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:hdmi-surround-extra2
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-surround-extra2+input:analog-mono - will not be able to open output:hdmi-surround-extra2
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-surround-extra2+input:analog-stereo - will not be able to open output:hdmi-surround-extra2
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-surround-extra2+input:iec958-stereo - will not be able to open output:hdmi-surround-extra2
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-stereo-extra3
( 0.090| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Stereo (HDMI) (hdmi-stereo-extra3)
( 0.090| 0.000) D: [pulseaudio] alsa-util.c: Trying hdmi:0,3 with SND_PCM_NO_AUTO_FORMAT ...
( 0.091| 0.000) I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC0D9p' failed (-2)
( 0.091| 0.000) I: [pulseaudio] alsa-util.c: Error opening PCM device hdmi:0,3: No such file or directory
( 0.091| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:hdmi-stereo-extra3
( 0.091| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-stereo-extra3+input:analog-mono - will not be able to open output:hdmi-stereo-extra3
( 0.091| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-stereo-extra3+input:analog-stereo - will not be able to open output:hdmi-stereo-extra3
( 0.091| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-stereo-extra3+input:iec958-stereo - will not be able to open output:hdmi-stereo-extra3
( 0.091| 0.000) D: [pulseaudio] alsa-mixer.c: Looking at profile output:hdmi-surround-extra3
( 0.091| 0.000) D: [pulseaudio] alsa-mixer.c: Checking for playback on Digital Surround 5.1 (HDMI) (hdmi-surround-extra3)
( 0.091| 0.000) D: [pulseaudio] alsa-util.c: Trying hdmi:0,3 with SND_PCM_NO_AUTO_FORMAT ...
( 0.091| 0.000) I: [pulseaudio] (alsa-lib)pcm_hw.c: open '/dev/snd/pcmC0D9p' failed (-2)
( 0.092| 0.000) I: [pulseaudio] alsa-util.c: Error opening PCM device hdmi:0,3: No such file or directory
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Caching failure to open output:hdmi-surround-extra3
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-surround-extra3+input:analog-mono - will not be able to open output:hdmi-surround-extra3
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-surround-extra3+input:analog-stereo - will not be able to open output:hdmi-surround-extra3
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Skipping profile output:hdmi-surround-extra3+input:iec958-stereo - will not be able to open output:hdmi-surround-extra3
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Profile set 0x1bc4ca0, auto_profiles=yes, probed=yes, n_mappings=4, n_profiles=9, n_decibel_fixes=0
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Mapping analog-stereo (Analog Stereo), priority=60, channel_map=front-left,front-right, supported=yes, direction=0
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Mapping iec958-stereo (Digital Stereo (IEC958)), priority=55, channel_map=front-left,front-right, supported=yes, direction=0
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Mapping hdmi-stereo (Digital Stereo (HDMI)), priority=54, channel_map=front-left,front-right, supported=yes, direction=1
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Mapping hdmi-surround (Digital Surround 5.1 (HDMI)), priority=3, channel_map=front-left,front-right,rear-left,rear-right,front-center,lfe, supported=yes, direction=1
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Profile input:analog-stereo (Analog Stereo Input), priority=60, supported=yes n_input_mappings=1, n_output_mappings=0
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Input analog-stereo
( 0.092| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:analog-stereo (Analog Stereo Output), priority=6000, supported=yes n_input_mappings=0, n_output_mappings=1
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Output analog-stereo
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:analog-stereo+input:analog-stereo (Analog Stereo Duplex), priority=6060, supported=yes n_input_mappings=1, n_output_mappings=1
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Input analog-stereo
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Output analog-stereo
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo (Digital Stereo (IEC958) Output), priority=5500, supported=yes n_input_mappings=0, n_output_mappings=1
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Output iec958-stereo
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo+input:analog-stereo (Digital Stereo (IEC958) Output + Analog Stereo Input), priority=5560, supported=yes n_input_mappings=1, n_output_mappings=1
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Input analog-stereo
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Output iec958-stereo
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:hdmi-stereo (Digital Stereo (HDMI) Output), priority=5400, supported=yes n_input_mappings=0, n_output_mappings=1
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Output hdmi-stereo
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:hdmi-stereo+input:analog-stereo (Digital Stereo (HDMI) Output + Analog Stereo Input), priority=5460, supported=yes n_input_mappings=1, n_output_mappings=1
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Input analog-stereo
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Output hdmi-stereo
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:hdmi-surround (Digital Surround 5.1 (HDMI) Output), priority=300, supported=yes n_input_mappings=0, n_output_mappings=1
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Output hdmi-surround
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Profile output:hdmi-surround+input:analog-stereo (Digital Surround 5.1 (HDMI) Output + Analog Stereo Input), priority=360, supported=yes n_input_mappings=1, n_output_mappings=1
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Input analog-stereo
( 0.093| 0.000) D: [pulseaudio] alsa-mixer.c: Output hdmi-surround
( 0.093| 0.000) I: [pulseaudio] module-card-restore.c: Restored profile 'output:hdmi-surround+input:analog-stereo' for card alsa_card.pci-0000_00_1b.0.
( 0.093| 0.000) I: [pulseaudio] module-card-restore.c: Restoring port latency offsets for card alsa_card.pci-0000_00_1b.0.
( 0.094| 0.000) I: [pulseaudio] card.c: Created 0 "alsa_card.pci-0000_00_1b.0"
( 0.094| 0.000) D: [pulseaudio] module-alsa-card.c: Found 3 jacks.
( 0.094| 0.000) I: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:0'
( 0.094| 0.000) D: [pulseaudio] module-alsa-card.c: Jack 'Front Headphone Jack' is now unplugged
( 0.094| 0.000) D: [pulseaudio] device-port.c: Setting port analog-output-headphones to status no
( 0.094| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
( 0.094| 0.000) D: [pulseaudio] module-switch-on-port-available.c: finding port analog-output-headphones
( 0.094| 0.000) D: [pulseaudio] module-alsa-card.c: Jack 'HDMI/DP,pcm=3 Jack' is now plugged in
( 0.094| 0.000) D: [pulseaudio] device-port.c: Setting port hdmi-output-0 to status yes
( 0.094| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
( 0.094| 0.000) D: [pulseaudio] module-switch-on-port-available.c: finding port hdmi-output-0
( 0.094| 0.000) D: [pulseaudio] module-alsa-card.c: Jack 'Mic Jack' is now unplugged
( 0.094| 0.000) D: [pulseaudio] device-port.c: Setting port analog-input-microphone to status no
( 0.094| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
( 0.094| 0.000) D: [pulseaudio] module-switch-on-port-available.c: finding port analog-input-microphone
( 0.094| 0.000) D: [pulseaudio] alsa-extcon.c: Cannot open '/sys/class/switch/h2w/state'. Skipping.
( 0.095| 0.001) D: [pulseaudio] reserve-wrap.c: Successfully create reservation lock monitor for device 'Audio0'
( 0.095| 0.000) D: [pulseaudio] alsa-util.c: Trying hdmi:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.096| 0.000) D: [pulseaudio] alsa-util.c: Managed to open hdmi:0
( 0.096| 0.000) I: [pulseaudio] alsa-util.c: Trying to disable ALSA period wakeups, using timers only
( 0.096| 0.000) D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 123 ms
( 0.096| 0.000) I: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_buffer_size_near() failed: Invalid argument
( 0.096| 0.000) I: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_period_size_near() failed: Invalid argument
( 0.096| 0.000) I: [pulseaudio] alsa-util.c: snd_pcm_hw_params_set_buffer_size_near() failed: Invalid argument
( 0.097| 0.000) D: [pulseaudio] alsa-util.c: Set only period size (to 88200 samples).
( 0.097| 0.000) I: [pulseaudio] alsa-util.c: ALSA period wakeups disabled
( 0.097| 0.000) I: [pulseaudio] alsa-sink.c: Successfully opened device hdmi:0.
( 0.097| 0.000) I: [pulseaudio] alsa-sink.c: Selected mapping 'Digital Surround 5.1 (HDMI)' (hdmi-surround).
( 0.098| 0.000) I: [pulseaudio] alsa-sink.c: Successfully enabled mmap() mode.
( 0.098| 0.000) I: [pulseaudio] alsa-sink.c: Successfully enabled timer-based scheduling mode.
( 0.098| 0.000) I: [pulseaudio] (alsa-lib)control.c: Invalid CTL hdmi:0
( 0.098| 0.000) I: [pulseaudio] alsa-util.c: Unable to attach to mixer hdmi:0: No such file or directory
( 0.098| 0.000) I: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:0'
( 0.098| 0.000) D: [pulseaudio] alsa-mixer.c: Added 1 ports
( 0.098| 0.000) I: [pulseaudio] module-device-restore.c: Restoring port for sink sink:alsa_output.pci-0000_00_1b.0.hdmi-surround.
( 0.098| 0.000) I: [pulseaudio] sink.c: Created sink 0 "alsa_output.pci-0000_00_1b.0.hdmi-surround" with sample spec s16le 6ch 44100Hz and channel map front-left,front-right,rear-left,rear-right,front-center,lfe
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.resolution_bits = "16"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.api = "alsa"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.class = "sound"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.class = "generic"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.subclass = "generic-mix"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.name = "HDMI 0"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.id = "HDMI 0"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.subdevice = "0"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.subdevice_name = "subdevice #0"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.device = "3"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.card = "0"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.card_name = "HDA Intel PCH"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.long_card_name = "HDA Intel PCH at 0xc0710000 irq 46"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.driver_name = "snd_hda_intel"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.bus_path = "pci-0000:00:1b.0"
( 0.098| 0.000) I: [pulseaudio] sink.c: sysfs.path = "/devices/pci0000:00/0000:00:1b.0/sound/card0"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.bus = "pci"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.vendor.id = "8086"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.vendor.name = "Intel Corporation"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.product.id = "1e20"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.product.name = "7 Series/C210 Series Chipset Family High Definition Audio Controller"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.form_factor = "internal"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.string = "hdmi:0"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.buffering.buffer_size = "65520"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.buffering.fragment_size = "32760"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.access_mode = "mmap+timer"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.profile.name = "hdmi-surround"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.profile.description = "Digital Surround 5.1 (HDMI)"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.description = "Built-in Audio Digital Surround 5.1 (HDMI)"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.mixer_name = "Intel PantherPoint HDMI"
( 0.098| 0.000) I: [pulseaudio] sink.c: alsa.components = "HDA:10ec0662,17aa366b,00100300 HDA:80862806,80860101,00100000"
( 0.098| 0.000) I: [pulseaudio] sink.c: module-udev-detect.discovered = "1"
( 0.098| 0.000) I: [pulseaudio] sink.c: device.icon_name = "audio-card-pci"
( 0.098| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
( 0.099| 0.000) I: [pulseaudio] source.c: Created source 0 "alsa_output.pci-0000_00_1b.0.hdmi-surround.monitor" with sample spec s16le 6ch 44100Hz and channel map front-left,front-right,rear-left,rear-right,front-center,lfe
( 0.099| 0.000) I: [pulseaudio] source.c: device.description = "Monitor of Built-in Audio Digital Surround 5.1 (HDMI)"
( 0.099| 0.000) I: [pulseaudio] source.c: device.class = "monitor"
( 0.099| 0.000) I: [pulseaudio] source.c: alsa.card = "0"
( 0.099| 0.000) I: [pulseaudio] source.c: alsa.card_name = "HDA Intel PCH"
( 0.099| 0.000) I: [pulseaudio] source.c: alsa.long_card_name = "HDA Intel PCH at 0xc0710000 irq 46"
( 0.099| 0.000) I: [pulseaudio] source.c: alsa.driver_name = "snd_hda_intel"
( 0.099| 0.000) I: [pulseaudio] source.c: device.bus_path = "pci-0000:00:1b.0"
( 0.099| 0.000) I: [pulseaudio] source.c: sysfs.path = "/devices/pci0000:00/0000:00:1b.0/sound/card0"
( 0.099| 0.000) I: [pulseaudio] source.c: device.bus = "pci"
( 0.099| 0.000) I: [pulseaudio] source.c: device.vendor.id = "8086"
( 0.099| 0.000) I: [pulseaudio] source.c: device.vendor.name = "Intel Corporation"
( 0.099| 0.000) I: [pulseaudio] source.c: device.product.id = "1e20"
( 0.099| 0.000) I: [pulseaudio] source.c: device.product.name = "7 Series/C210 Series Chipset Family High Definition Audio Controller"
( 0.099| 0.000) I: [pulseaudio] source.c: device.form_factor = "internal"
( 0.099| 0.000) I: [pulseaudio] source.c: device.string = "0"
( 0.099| 0.000) I: [pulseaudio] source.c: module-udev-detect.discovered = "1"
( 0.099| 0.000) I: [pulseaudio] source.c: device.icon_name = "audio-card-pci"
( 0.099| 0.000) I: [pulseaudio] alsa-sink.c: Using 2,0 fragments of size 32760 bytes (61,90ms), buffer size is 65520 bytes (123,81ms)
( 0.099| 0.000) I: [pulseaudio] alsa-sink.c: Time scheduling watermark is 6,69ms
( 0.099| 0.000) D: [pulseaudio] alsa-sink.c: hwbuf_unused=0
( 0.099| 0.000) D: [pulseaudio] alsa-sink.c: setting avail_min=5165
( 0.099| 0.000) D: [pulseaudio] alsa-mixer.c: Activating path hdmi-output-0
( 0.099| 0.000) D: [pulseaudio] alsa-mixer.c: Path hdmi-output-0 (HDMI / DisplayPort), direction=1, priority=59, probed=yes, supported=yes, has_mute=no, has_volume=no, has_dB=no, min_volume=0, max_volume=0, min_dB=inf, max_dB=-inf
( 0.099| 0.000) D: [pulseaudio] alsa-mixer.c: Jack HDMI/DP,pcm=3, alsa_name='HDMI/DP,pcm=3 Jack', detection possible
( 0.099| 0.000) I: [pulseaudio] alsa-sink.c: Driver does not support hardware volume control, falling back to software volume control.
( 0.099| 0.000) I: [pulseaudio] alsa-sink.c: Driver does not support hardware mute control, falling back to software mute control.
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_dump():
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: Hooks PCM
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: Its setup is:
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: stream : PLAYBACK
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: access : MMAP_INTERLEAVED
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: format : S16_LE
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: subformat : STD
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: channels : 6
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: rate : 44100
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: exact rate : 44100 (44100/1)
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: msbits : 16
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: buffer_size : 5460
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: period_size : 2730
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: period_time : 61904
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: tstamp_mode : ENABLE
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: period_step : 1
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: avail_min : 5165
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: period_event : 0
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: start_threshold : -1
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: stop_threshold : 6147413491360727040
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: silence_threshold: 0
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: silence_size : 0
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: boundary : 6147413491360727040
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: Slave: Hardware PCM card 0 'HDA Intel PCH' device 3 subdevice 0
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: Its setup is:
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: stream : PLAYBACK
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: access : MMAP_INTERLEAVED
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: format : S16_LE
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: subformat : STD
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: channels : 6
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: rate : 44100
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: exact rate : 44100 (44100/1)
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: msbits : 16
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: buffer_size : 5460
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: period_size : 2730
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: period_time : 61904
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: tstamp_mode : ENABLE
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: period_step : 1
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: avail_min : 5165
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: period_event : 0
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: start_threshold : -1
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: stop_threshold : 6147413491360727040
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: silence_threshold: 0
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: silence_size : 0
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: boundary : 6147413491360727040
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: appl_ptr : 0
( 0.099| 0.000) D: [pulseaudio] alsa-util.c: hw_ptr : 0
( 0.099| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Thread starting up
( 0.105| 0.006) D: [alsa-sink-HDMI 0] core-util.c: RealtimeKit worked.
( 0.106| 0.000) I: [alsa-sink-HDMI 0] core-util.c: Successfully enabled SCHED_RR scheduling for thread, with priority 5.
( 0.106| 0.000) I: [alsa-sink-HDMI 0] alsa-sink.c: Starting playback.
( 0.106| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 0.106| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 0.106| 0.000) D: [pulseaudio] alsa-util.c: Trying front:0 with SND_PCM_NO_AUTO_FORMAT ...
( 0.106| 0.000) D: [pulseaudio] alsa-util.c: Managed to open front:0
( 0.106| 0.000) I: [pulseaudio] alsa-util.c: Trying to disable ALSA period wakeups, using timers only
( 0.106| 0.000) D: [pulseaudio] alsa-util.c: Maximum hw buffer size is 371 ms
( 0.107| 0.000) D: [pulseaudio] alsa-util.c: Set buffer size first (to 88200 samples), period size second (to 88200 samples).
( 0.107| 0.000) I: [pulseaudio] alsa-util.c: ALSA period wakeups disabled
( 0.107| 0.000) I: [pulseaudio] alsa-source.c: Successfully opened device front:0.
( 0.107| 0.000) I: [pulseaudio] alsa-source.c: Selected mapping 'Analog Stereo' (analog-stereo).
( 0.107| 0.000) I: [pulseaudio] alsa-source.c: Successfully enabled mmap() mode.
( 0.107| 0.000) I: [pulseaudio] alsa-source.c: Successfully enabled timer-based scheduling mode.
( 0.107| 0.000) I: [pulseaudio] (alsa-lib)control.c: Invalid CTL front:0
( 0.107| 0.000) I: [pulseaudio] alsa-util.c: Unable to attach to mixer front:0: No such file or directory
( 0.107| 0.000) I: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:0'
( 0.107| 0.000) D: [pulseaudio] alsa-mixer.c: Added 2 ports
( 0.107| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
( 0.108| 0.000) I: [pulseaudio] source.c: Created source 1 "alsa_input.pci-0000_00_1b.0.analog-stereo" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.resolution_bits = "16"
( 0.108| 0.000) I: [pulseaudio] source.c: device.api = "alsa"
( 0.108| 0.000) I: [pulseaudio] source.c: device.class = "sound"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.class = "generic"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.subclass = "generic-mix"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.name = "ALC662 rev3 Analog"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.id = "ALC662 rev3 Analog"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.subdevice = "0"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.subdevice_name = "subdevice #0"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.device = "0"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.card = "0"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.card_name = "HDA Intel PCH"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.long_card_name = "HDA Intel PCH at 0xc0710000 irq 46"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.driver_name = "snd_hda_intel"
( 0.108| 0.000) I: [pulseaudio] source.c: device.bus_path = "pci-0000:00:1b.0"
( 0.108| 0.000) I: [pulseaudio] source.c: sysfs.path = "/devices/pci0000:00/0000:00:1b.0/sound/card0"
( 0.108| 0.000) I: [pulseaudio] source.c: device.bus = "pci"
( 0.108| 0.000) I: [pulseaudio] source.c: device.vendor.id = "8086"
( 0.108| 0.000) I: [pulseaudio] source.c: device.vendor.name = "Intel Corporation"
( 0.108| 0.000) I: [pulseaudio] source.c: device.product.id = "1e20"
( 0.108| 0.000) I: [pulseaudio] source.c: device.product.name = "7 Series/C210 Series Chipset Family High Definition Audio Controller"
( 0.108| 0.000) I: [pulseaudio] source.c: device.form_factor = "internal"
( 0.108| 0.000) I: [pulseaudio] source.c: device.string = "front:0"
( 0.108| 0.000) I: [pulseaudio] source.c: device.buffering.buffer_size = "65536"
( 0.108| 0.000) I: [pulseaudio] source.c: device.buffering.fragment_size = "32768"
( 0.108| 0.000) I: [pulseaudio] source.c: device.access_mode = "mmap+timer"
( 0.108| 0.000) I: [pulseaudio] source.c: device.profile.name = "analog-stereo"
( 0.108| 0.000) I: [pulseaudio] source.c: device.profile.description = "Analog Stereo"
( 0.108| 0.000) I: [pulseaudio] source.c: device.description = "Built-in Audio Analog Stereo"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.mixer_name = "Intel PantherPoint HDMI"
( 0.108| 0.000) I: [pulseaudio] source.c: alsa.components = "HDA:10ec0662,17aa366b,00100300 HDA:80862806,80860101,00100000"
( 0.108| 0.000) I: [pulseaudio] source.c: module-udev-detect.discovered = "1"
( 0.108| 0.000) I: [pulseaudio] source.c: device.icon_name = "audio-card-pci"
( 0.108| 0.000) I: [pulseaudio] alsa-source.c: Using 2,0 fragments of size 32768 bytes (185,76ms), buffer size is 65536 bytes (371,52ms)
( 0.108| 0.000) I: [pulseaudio] alsa-source.c: Time scheduling watermark is 20,00ms
( 0.108| 0.000) D: [pulseaudio] alsa-source.c: hwbuf_unused=0
( 0.108| 0.000) D: [pulseaudio] alsa-source.c: setting avail_min=15502
( 0.108| 0.000) D: [pulseaudio] alsa-mixer.c: Activating path analog-input
( 0.108| 0.000) D: [pulseaudio] alsa-mixer.c: Path analog-input (Analog Input), direction=2, priority=100, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=63, min_dB=-17,25, max_dB=30
( 0.108| 0.000) D: [pulseaudio] alsa-mixer.c: Element Capture, direction=2, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=yes
( 0.108| 0.000) I: [pulseaudio] alsa-source.c: Successfully enabled deferred volume.
( 0.108| 0.000) I: [pulseaudio] alsa-source.c: Hardware volume ranges from -17,25 dB to 30,00 dB.
( 0.108| 0.000) I: [pulseaudio] alsa-source.c: Fixing base volume to -30,00 dB
( 0.108| 0.000) I: [pulseaudio] alsa-source.c: Using hardware volume control. Hardware dB scale supported.
( 0.108| 0.000) I: [pulseaudio] alsa-source.c: Using hardware mute control.
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: snd_pcm_dump():
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: Hardware PCM card 0 'HDA Intel PCH' device 0 subdevice 0
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: Its setup is:
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: stream : CAPTURE
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: access : MMAP_INTERLEAVED
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: format : S16_LE
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: subformat : STD
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: channels : 2
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: rate : 44100
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: exact rate : 44100 (44100/1)
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: msbits : 16
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: buffer_size : 16384
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: period_size : 8192
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: period_time : 185759
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: tstamp_mode : ENABLE
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: period_step : 1
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: avail_min : 15502
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: period_event : 0
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: start_threshold : -1
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: stop_threshold : 4611686018427387904
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: silence_threshold: 0
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: silence_size : 0
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: boundary : 4611686018427387904
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: appl_ptr : 0
( 0.109| 0.000) D: [pulseaudio] alsa-util.c: hw_ptr : 0
( 0.109| 0.000) D: [pulseaudio] alsa-source.c: Read hardware volume: 0: 49% 1: 49%
( 0.109| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Thread starting up
( 0.109| 0.000) D: [pulseaudio] alsa-source.c: in dB: 0: -18,75 dB 1: -18,75 dB
( 0.116| 0.007) D: [alsa-source-ALC662 rev3 Analog] core-util.c: RealtimeKit worked.
( 0.116| 0.000) I: [alsa-source-ALC662 rev3 Analog] core-util.c: Successfully enabled SCHED_RR scheduling for thread, with priority 5.
( 0.116| 0.000) I: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Starting capture.
( 0.116| 0.000) D: [pulseaudio] alsa-util.c: Monitor name in ELD info is 'VSX-923' (for device=3)
( 0.116| 0.000) I: [pulseaudio] module.c: Loaded "module-alsa-card" (index: #5; argument: "device_id="0" name="pci-0000_00_1b.0" card_name="alsa_card.pci-0000_00_1b.0" namereg_fail=false tsched=yes fixed_latency_range=no ignore_dB=no deferred_volume=yes use_ucm=yes card_properties="module-udev-detect.discovered=1"").
( 0.116| 0.000) I: [pulseaudio] module-udev-detect.c: Card /devices/pci0000:00/0000:00:1b.0/sound/card0 (alsa_card.pci-0000_00_1b.0) module loaded.
( 0.117| 0.000) I: [pulseaudio] module-udev-detect.c: Found 1 cards.
( 0.117| 0.000) I: [pulseaudio] module.c: Loaded "module-udev-detect" (index: #6; argument: "").
( 0.117| 0.000) D: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-4.0/modules/module-android-audio-hal.so': failure
( 0.117| 0.000) D: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-4.0/modules/module-jackdbus-detect.so': failure
( 0.117| 0.000) D: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-4.0/modules/module-bluetooth-policy.so': success
( 0.117| 0.000) I: [pulseaudio] module.c: Loaded "module-bluetooth-policy" (index: #7; argument: "").
( 0.117| 0.000) D: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-4.0/modules/module-bluetooth-discover.so': success
( 0.120| 0.002) D: [pulseaudio] dbus-util.c: Successfully connected to D-Bus system bus d8078f21f3e6f0329df2c10b54a92671 as :1.137
( 0.123| 0.003) I: [pulseaudio] module.c: Loaded "module-bluetooth-discover" (index: #8; argument: "").
( 0.123| 0.000) D: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-4.0/modules/module-esound-protocol-unix.so': failure
( 0.124| 0.000) I: [pulseaudio] module.c: Loaded "module-native-protocol-unix" (index: #9; argument: "").
( 0.124| 0.000) D: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-4.0/modules/module-gconf.so': failure
( 0.125| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
( 0.125| 0.000) I: [pulseaudio] module-default-device-restore.c: Restored default sink 'alsa_output.pci-0000_00_1b.0.hdmi-surround'.
( 0.125| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
( 0.125| 0.000) I: [pulseaudio] module-default-device-restore.c: Restored default source 'alsa_input.pci-0000_00_1b.0.analog-stereo'.
( 0.125| 0.000) I: [pulseaudio] module.c: Loaded "module-default-device-restore" (index: #10; argument: "").
( 0.125| 0.000) I: [pulseaudio] module.c: Loaded "module-rescue-streams" (index: #11; argument: "").
( 0.126| 0.000) I: [pulseaudio] module.c: Loaded "module-always-sink" (index: #12; argument: "").
( 0.126| 0.000) I: [pulseaudio] module.c: Loaded "module-intended-roles" (index: #13; argument: "").
( 0.127| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround becomes idle, timeout in 5 seconds.
( 0.127| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Source alsa_input.pci-0000_00_1b.0.analog-stereo becomes idle, timeout in 5 seconds.
( 0.127| 0.000) I: [pulseaudio] module.c: Loaded "module-suspend-on-idle" (index: #14; argument: "").
( 0.127| 0.000) D: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-4.0/modules/module-console-kit.so': failure
( 0.127| 0.000) D: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-4.0/modules/module-systemd-login.so': success
( 0.128| 0.000) I: [pulseaudio] client.c: Created 0 "Login Session 1"
( 0.128| 0.000) D: [pulseaudio] module-systemd-login.c: Added new session 1
( 0.128| 0.000) I: [pulseaudio] client.c: Created 1 "Login Session c1"
( 0.128| 0.000) D: [pulseaudio] module-systemd-login.c: Added new session c1
( 0.128| 0.000) I: [pulseaudio] module.c: Loaded "module-systemd-login" (index: #15; argument: "").
( 0.128| 0.000) I: [pulseaudio] module.c: Loaded "module-position-event-sounds" (index: #16; argument: "").
( 0.129| 0.000) I: [pulseaudio] module.c: Loaded "module-filter-heuristics" (index: #17; argument: "").
( 0.129| 0.000) I: [pulseaudio] module.c: Loaded "module-filter-apply" (index: #18; argument: "").
( 0.130| 0.000) D: [pulseaudio] main.c: Got org.PulseAudio1!
( 0.131| 0.000) D: [pulseaudio] main.c: Got org.pulseaudio.Server!
( 0.131| 0.000) I: [pulseaudio] main.c: Daemon startup complete.
( 0.131| 0.000) D: [pulseaudio] bluetooth-util.c: dbus: interface=org.freedesktop.DBus, path=/org/freedesktop/DBus, member=NameAcquired
( 0.131| 0.000) I: [pulseaudio] client.c: Created 2 "Native client (UNIX socket client)"
( 0.132| 0.000) D: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
( 0.132| 0.000) D: [pulseaudio] module-udev-detect.c: Resuming all sinks and sources of card alsa_card.pci-0000_00_1b.0.
( 0.132| 0.000) D: [pulseaudio] protocol-native.c: Protocol version: remote 28, local 28
( 0.132| 0.000) I: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
( 0.132| 0.000) D: [pulseaudio] protocol-native.c: SHM possible: yes
( 0.132| 0.000) D: [pulseaudio] protocol-native.c: Negotiated SHM: yes
( 0.132| 0.000) I: [pulseaudio] client.c: Created 3 "Native client (UNIX socket client)"
( 0.132| 0.000) D: [pulseaudio] module-augment-properties.c: Looking for .desktop file for unity-settings-daemon
( 0.133| 0.000) D: [pulseaudio] protocol-native.c: Protocol version: remote 28, local 28
( 0.133| 0.000) I: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
( 0.133| 0.000) D: [pulseaudio] protocol-native.c: SHM possible: yes
( 0.133| 0.000) D: [pulseaudio] protocol-native.c: Negotiated SHM: yes
( 0.133| 0.000) D: [pulseaudio] module-augment-properties.c: Looking for .desktop file for indicator-sound-service
( 0.133| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 0.133| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 0.133| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 0.134| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 0.134| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 0.134| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 0.134| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 0.135| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 0.135| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 5.132| 4.997) I: [pulseaudio] module-suspend-on-idle.c: Source alsa_input.pci-0000_00_1b.0.analog-stereo idle for too long, suspending ...
( 5.132| 0.000) D: [pulseaudio] source.c: Suspend cause of source alsa_input.pci-0000_00_1b.0.analog-stereo is 0x0004, suspending
( 5.132| 0.000) I: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Device suspended...
( 5.132| 0.000) D: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
( 5.132| 0.000) I: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround idle for too long, suspending ...
( 5.132| 0.000) D: [pulseaudio] sink.c: Suspend cause of sink alsa_output.pci-0000_00_1b.0.hdmi-surround is 0x0004, suspending
( 5.133| 0.000) I: [alsa-sink-HDMI 0] alsa-sink.c: Device suspended...
( 5.133| 0.000) D: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
( 5.134| 0.000) D: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
( 5.134| 0.000) D: [pulseaudio] module-udev-detect.c: Resuming all sinks and sources of card alsa_card.pci-0000_00_1b.0.
( 7.999| 2.865) I: [pulseaudio] client.c: Created 4 "Native client (UNIX socket client)"
( 8.072| 0.073) D: [pulseaudio] protocol-native.c: Protocol version: remote 28, local 28
( 8.072| 0.000) I: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
( 8.072| 0.000) D: [pulseaudio] protocol-native.c: SHM possible: yes
( 8.072| 0.000) D: [pulseaudio] protocol-native.c: Negotiated SHM: yes
( 8.072| 0.000) D: [pulseaudio] module-augment-properties.c: Looking for .desktop file for unity-control-center
( 8.072| 0.000) D: [pulseaudio] module-augment-properties.c: Found /usr/share/applications/unity-control-center.desktop.
( 8.134| 0.061) D: [pulseaudio] module-stream-restore.c: Not restoring device for stream source-output-by-application-id:org.gnome.VolumeControl, because already set
( 8.134| 0.000) D: [pulseaudio] module-intended-roles.c: Not setting device for stream Peak detect, because already set.
( 8.134| 0.000) I: [pulseaudio] source-output.c: Trying to change sample rate
( 8.134| 0.000) I: [pulseaudio] module-stream-restore.c: Restoring mute state for source output source-output-by-application-id:org.gnome.VolumeControl.
( 8.134| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Source alsa_input.pci-0000_00_1b.0.analog-stereo becomes busy, resuming.
( 8.134| 0.000) D: [pulseaudio] source.c: Suspend cause of source alsa_input.pci-0000_00_1b.0.analog-stereo is 0x0000, resuming
( 8.134| 0.000) D: [pulseaudio] reserve-wrap.c: Successfully acquired reservation lock on device 'Audio0'
( 8.135| 0.000) I: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Trying resume...
( 8.135| 0.000) I: [alsa-source-ALC662 rev3 Analog] alsa-util.c: Trying to disable ALSA period wakeups, using timers only
( 8.135| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-util.c: Maximum hw buffer size is 371 ms
( 8.135| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-util.c: Set buffer size first (to 16384 samples), period size second (to 8192 samples).
( 8.135| 0.000) I: [alsa-source-ALC662 rev3 Analog] alsa-util.c: ALSA period wakeups disabled
( 8.135| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: hwbuf_unused=0
( 8.135| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: setting avail_min=15502
( 8.135| 0.000) I: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Time scheduling watermark is 20,00ms
( 8.135| 0.000) I: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Resumed successfully...
( 8.135| 0.000) I: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Starting capture.
( 8.135| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Source alsa_input.pci-0000_00_1b.0.analog-stereo becomes idle, timeout in 5 seconds.
( 8.135| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Source alsa_input.pci-0000_00_1b.0.analog-stereo becomes idle, timeout in 5 seconds.
( 8.135| 0.000) D: [pulseaudio] resampler.c: Channel matrix:
( 8.135| 0.000) D: [pulseaudio] resampler.c: I00 I01
( 8.135| 0.000) D: [pulseaudio] resampler.c: +------------
( 8.135| 0.000) D: [pulseaudio] resampler.c: O00 | 0,500 0,500
( 8.136| 0.000) I: [pulseaudio] remap.c: Using generic matrix remapping
( 8.136| 0.000) I: [pulseaudio] resampler.c: Using resampler 'peaks'
( 8.136| 0.000) I: [pulseaudio] resampler.c: Using s16le as working format.
( 8.136| 0.000) D: [pulseaudio] resampler.c: Resampler:
( 8.136| 0.000) D: [pulseaudio] resampler.c: rate 44100 -> 25 (method peaks),
( 8.136| 0.000) D: [pulseaudio] resampler.c: format s16le -> float32le (intermediate s16le),
( 8.136| 0.000) D: [pulseaudio] resampler.c: channels 2 -> 1 (resampling 1)
( 8.136| 0.000) D: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=4, prebuf=0, minreq=1 maxrewind=0
( 8.136| 0.000) D: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554432, tlength=33554432, base=4, prebuf=0, minreq=4 maxrewind=0
( 8.136| 0.000) I: [pulseaudio] source-output.c: Created output 0 "Peak detect" on alsa_input.pci-0000_00_1b.0.analog-stereo with sample spec float32le 1ch 25Hz and channel map mono
( 8.136| 0.000) I: [pulseaudio] source-output.c: application.id = "org.gnome.VolumeControl"
( 8.136| 0.000) I: [pulseaudio] source-output.c: media.name = "Peak detect"
( 8.136| 0.000) I: [pulseaudio] source-output.c: application.name = "GNOME Volume Control Dialog"
( 8.136| 0.000) I: [pulseaudio] source-output.c: native-protocol.peer = "UNIX socket client"
( 8.136| 0.000) I: [pulseaudio] source-output.c: native-protocol.version = "28"
( 8.136| 0.000) I: [pulseaudio] source-output.c: application.icon_name = "unity-sound-panel"
( 8.136| 0.000) I: [pulseaudio] source-output.c: application.version = "14.04.3"
( 8.136| 0.000) I: [pulseaudio] source-output.c: application.process.id = "3246"
( 8.136| 0.000) I: [pulseaudio] source-output.c: application.process.user = "administrator"
( 8.136| 0.000) I: [pulseaudio] source-output.c: application.process.host = "administrator-IdeaCentre-Q190"
( 8.136| 0.000) I: [pulseaudio] source-output.c: application.process.binary = "unity-control-center"
( 8.136| 0.000) I: [pulseaudio] source-output.c: application.language = "en_US.UTF-8"
( 8.136| 0.000) I: [pulseaudio] source-output.c: window.x11.display = ":0"
( 8.136| 0.000) I: [pulseaudio] source-output.c: application.process.machine_id = "10f892d10f4892fc8f20c83654a8086a"
( 8.136| 0.000) I: [pulseaudio] source-output.c: application.process.session_id = "c1"
( 8.136| 0.000) I: [pulseaudio] source-output.c: module-stream-restore.id = "source-output-by-application-id:org.gnome.VolumeControl"
( 8.136| 0.000) D: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=0, base=4, prebuf=1, minreq=0 maxrewind=0
( 8.136| 0.000) D: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=4194304, base=4, prebuf=4, minreq=4 maxrewind=0
( 8.136| 0.000) I: [pulseaudio] protocol-native.c: Final latency 60,00 ms = 40,00 ms + 20,00 ms
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: latency set to 20,00ms
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: hwbuf_unused=62008
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: setting avail_min=442
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: latency set to 20,00ms
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: hwbuf_unused=62008
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: setting avail_min=442
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Requested volume: 0: 49% 1: 49%
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: in dB: 0: -18,75 dB 1: -18,75 dB
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Got hardware volume: 0: 49% 1: 49%
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: in dB: 0: -18,75 dB 1: -18,75 dB
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Calculated software volume: 0: 100% 1: 100% (accurate-enough=yes)
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: in dB: 0: 0,00 dB 1: 0,00 dB
( 8.136| 0.000) D: [alsa-source-ALC662 rev3 Analog] source.c: Volume not changing
( 8.136| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
( 13.396| 5.259) I: [pulseaudio] client.c: Created 5 "Native client (UNIX socket client)"
( 13.396| 0.000) D: [pulseaudio] protocol-native.c: Protocol version: remote 28, local 28
( 13.396| 0.000) I: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
( 13.396| 0.000) D: [pulseaudio] protocol-native.c: SHM possible: yes
( 13.396| 0.000) D: [pulseaudio] protocol-native.c: Negotiated SHM: yes
( 13.397| 0.000) D: [pulseaudio] module-augment-properties.c: Looking for .desktop file for unity-control-center
( 13.409| 0.012) D: [pulseaudio] module-stream-restore.c: Not restoring device for stream sink-input-by-media-role:test, because already set to 'alsa_output.pci-0000_00_1b.0.hdmi-surround'.
( 13.409| 0.000) D: [pulseaudio] module-intended-roles.c: Not setting device for stream Front Center, because already set.
( 13.409| 0.000) I: [pulseaudio] sink-input.c: Trying to change sample rate
( 13.409| 0.000) D: [pulseaudio] sink.c: Suspending sink alsa_output.pci-0000_00_1b.0.hdmi-surround due to changing the sample rate.
( 13.409| 0.000) I: [pulseaudio] alsa-sink.c: Updating rate for device hdmi:0, new rate is 48000
( 13.409| 0.000) I: [pulseaudio] sink.c: Changed sampling rate successfully
( 13.410| 0.000) I: [pulseaudio] sink-input.c: Rate changed to 48000 Hz
( 13.410| 0.000) I: [pulseaudio] module-stream-restore.c: Restoring mute state for sink input sink-input-by-media-role:test.
( 13.410| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround becomes busy, resuming.
( 13.410| 0.000) D: [pulseaudio] sink.c: Suspend cause of sink alsa_output.pci-0000_00_1b.0.hdmi-surround is 0x0000, resuming
( 13.410| 0.000) I: [alsa-sink-HDMI 0] alsa-sink.c: Trying resume...
( 13.411| 0.001) I: [alsa-sink-HDMI 0] alsa-util.c: Trying to disable ALSA period wakeups, using timers only
( 13.411| 0.000) D: [alsa-sink-HDMI 0] alsa-util.c: Maximum hw buffer size is 113 ms
( 13.419| 0.007) D: [alsa-sink-HDMI 0] alsa-util.c: Set buffer size first (to 5460 samples), period size second (to 2730 samples).
( 13.419| 0.000) I: [alsa-sink-HDMI 0] alsa-util.c: ALSA period wakeups disabled
( 13.419| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=0
( 13.420| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5166
( 13.420| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=0
( 13.420| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5167
( 13.420| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=0
( 13.420| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5167
( 13.420| 0.000) I: [alsa-sink-HDMI 0] alsa-sink.c: Time scheduling watermark is 6,12ms
( 13.420| 0.000) I: [alsa-sink-HDMI 0] alsa-sink.c: Resumed successfully...
( 13.420| 0.000) I: [alsa-sink-HDMI 0] alsa-sink.c: Starting playback.
( 13.420| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround becomes idle, timeout in 5 seconds.
( 13.420| 0.000) D: [alsa-sink-HDMI 0] ratelimit.c: 2 events suppressed
( 13.420| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 13.420| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 13.420| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround becomes idle, timeout in 5 seconds.
( 13.420| 0.000) I: [pulseaudio] resampler.c: Forcing resampler 'copy', because of fixed, identical sample rates.
( 13.420| 0.000) D: [pulseaudio] resampler.c: Channel matrix:
( 13.420| 0.000) D: [pulseaudio] resampler.c: I00
( 13.420| 0.000) D: [pulseaudio] resampler.c: +------
( 13.420| 0.000) D: [pulseaudio] resampler.c: O00 | 0,000
( 13.420| 0.000) D: [pulseaudio] resampler.c: O01 | 0,000
( 13.420| 0.000) D: [pulseaudio] resampler.c: O02 | 0,000
( 13.420| 0.000) D: [pulseaudio] resampler.c: O03 | 0,000
( 13.420| 0.000) D: [pulseaudio] resampler.c: O04 | 1,000
( 13.420| 0.000) D: [pulseaudio] resampler.c: O05 | 0,000
( 13.420| 0.000) I: [pulseaudio] remap.c: Using generic matrix remapping
( 13.420| 0.000) I: [pulseaudio] resampler.c: Using resampler 'copy'
( 13.420| 0.000) I: [pulseaudio] resampler.c: Using s16le as working format.
( 13.420| 0.000) D: [pulseaudio] resampler.c: Resampler:
( 13.420| 0.000) D: [pulseaudio] resampler.c: rate 48000 -> 48000 (method copy),
( 13.420| 0.000) D: [pulseaudio] resampler.c: format s16le -> s16le (intermediate s16le),
( 13.420| 0.000) D: [pulseaudio] resampler.c: channels 1 -> 6 (resampling 1)
( 13.421| 0.000) D: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=12, prebuf=0, minreq=1 maxrewind=0
( 13.421| 0.000) D: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554436, tlength=33554436, base=12, prebuf=0, minreq=12 maxrewind=0
( 13.421| 0.000) I: [pulseaudio] sink-input.c: Created input 0 "Front Center" on alsa_output.pci-0000_00_1b.0.hdmi-surround with sample spec s16le 1ch 48000Hz and channel map front-center
( 13.421| 0.000) I: [pulseaudio] sink-input.c: event.id = "audio-channel-front-center"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: media.name = "Front Center"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: media.role = "test"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: media.filename = "/usr/share//sounds/freedesktop/stereo/audio-channel-front-center.oga"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: application.name = "libcanberra"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: native-protocol.peer = "UNIX socket client"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: native-protocol.version = "28"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: application.id = "org.gnome.VolumeControl"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: application.version = "0.30"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: application.process.id = "3246"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: application.process.user = "administrator"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: application.process.host = "administrator-IdeaCentre-Q190"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: application.process.binary = "unity-control-center"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: application.language = "en_US.UTF-8"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: window.x11.display = ":0"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: application.process.machine_id = "10f892d10f4892fc8f20c83654a8086a"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: application.process.session_id = "c1"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: application.icon_name = "preferences-system"
( 13.421| 0.000) I: [pulseaudio] sink-input.c: module-stream-restore.id = "sink-input-by-media-role:test"
( 13.421| 0.000) I: [pulseaudio] protocol-native.c: Requested tlength=2000,00 ms, minreq=20,00 ms
( 13.421| 0.000) D: [pulseaudio] protocol-native.c: Traditional mode enabled, modifying sink usec only for compat with minreq.
( 13.421| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 13.421| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 13.421| 0.000) D: [pulseaudio] protocol-native.c: Requested latency=1960,00 ms, Received latency=113,75 ms
( 13.421| 0.000) D: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=192000, base=2, prebuf=190082, minreq=1920 maxrewind=0
( 13.421| 0.000) D: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=192000, base=2, prebuf=190082, minreq=1920 maxrewind=0
( 13.421| 0.000) I: [pulseaudio] protocol-native.c: Final latency 2113,75 ms = 1960,00 ms + 2*20,00 ms + 113,75 ms
( 13.421| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 13.422| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Latency set to 113,75ms
( 13.422| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=0
( 13.422| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5167
( 13.422| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 13.422| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 13.422| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 13.422| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
( 13.423| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 13.423| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 13.423| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 13.433| 0.010) D: [alsa-sink-HDMI 0] protocol-native.c: Requesting rewind due to end of underrun.
( 13.433| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Requested to rewind 65520 bytes.
( 13.433| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Limited to 57200 bytes.
( 13.433| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: before: 4766
( 13.433| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: after: 4766
( 13.433| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Rewound 57192 bytes.
( 13.433| 0.000) D: [alsa-sink-HDMI 0] sink.c: Processing rewind...
( 13.433| 0.000) D: [alsa-sink-HDMI 0] sink-input.c: Have to rewind 57192 bytes on render memblockq.
( 13.433| 0.000) D: [alsa-sink-HDMI 0] source.c: Processing rewind...
( 14.834| 1.400) D: [alsa-sink-HDMI 0] protocol-native.c: Implicit drain of 'Front Center'
( 14.834| 0.000) D: [alsa-sink-HDMI 0] sink.c: Found underrun 49308 bytes ago (15996 bytes ahead in playback buffer)
( 14.862| 0.028) D: [alsa-sink-HDMI 0] protocol-native.c: Drain acknowledged of 'Front Center'
( 14.863| 0.001) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=0
( 14.863| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5167
( 14.863| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Requested to rewind 65520 bytes.
( 14.863| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Limited to 48020 bytes.
( 14.864| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: before: 4001
( 14.864| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: after: 4001
( 14.864| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Rewound 48012 bytes.
( 14.864| 0.000) D: [alsa-sink-HDMI 0] sink.c: Processing rewind...
( 14.864| 0.000) D: [alsa-sink-HDMI 0] source.c: Processing rewind...
( 14.864| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround becomes idle, timeout in 5 seconds.
( 14.864| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround becomes idle, timeout in 5 seconds.
( 14.864| 0.000) I: [pulseaudio] sink-input.c: Freeing input 0 "Front Center"
( 19.864| 5.000) I: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround idle for too long, suspending ...
( 19.864| 0.000) D: [pulseaudio] sink.c: Suspend cause of sink alsa_output.pci-0000_00_1b.0.hdmi-surround is 0x0004, suspending
( 19.865| 0.000) I: [alsa-sink-HDMI 0] alsa-sink.c: Device suspended...
( 19.865| 0.000) D: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
( 19.866| 0.000) D: [pulseaudio] module-udev-detect.c: Resuming all sinks and sources of card alsa_card.pci-0000_00_1b.0.
( 24.485| 4.618) I: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Scheduling delay of 2,90ms, you might want to investigate this to improve latency...
( 24.933| 0.448) I: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Scheduling delay of 5,38ms, you might want to investigate this to improve latency...
( 30.653| 5.720) I: [pulseaudio] client.c: Created 6 "Native client (UNIX socket client)"
( 30.654| 0.000) I: [pulseaudio] client.c: Freed 6 "Native client (UNIX socket client)"
( 30.654| 0.000) I: [pulseaudio] protocol-native.c: Connection died.
( 30.657| 0.002) I: [pulseaudio] client.c: Created 7 "Native client (UNIX socket client)"
( 30.657| 0.000) D: [pulseaudio] protocol-native.c: Protocol version: remote 28, local 28
( 30.657| 0.000) I: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
( 30.657| 0.000) D: [pulseaudio] protocol-native.c: SHM possible: yes
( 30.657| 0.000) D: [pulseaudio] protocol-native.c: Negotiated SHM: yes
( 30.658| 0.000) D: [pulseaudio] module-augment-properties.c: Looking for .desktop file for plugin-container
( 30.659| 0.001) I: [pulseaudio] module-stream-restore.c: Restoring device for stream sink-input-by-application-name:ALSA plug-in [plugin-container].
( 30.659| 0.000) D: [pulseaudio] module-intended-roles.c: Not setting device for stream ALSA Playback, because already set.
( 30.659| 0.000) I: [pulseaudio] sink-input.c: Trying to change sample rate
( 30.659| 0.000) D: [pulseaudio] sink.c: Suspending sink alsa_output.pci-0000_00_1b.0.hdmi-surround due to changing the sample rate.
( 30.659| 0.000) I: [pulseaudio] alsa-sink.c: Updating rate for device hdmi:0, new rate is 44100
( 30.659| 0.000) I: [pulseaudio] sink.c: Changed sampling rate successfully
( 30.659| 0.000) I: [pulseaudio] sink-input.c: Rate changed to 44100 Hz
( 30.659| 0.000) I: [pulseaudio] module-stream-restore.c: Restoring mute state for sink input sink-input-by-application-name:ALSA plug-in [plugin-container].
( 30.659| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround becomes busy, resuming.
( 30.659| 0.000) D: [pulseaudio] sink.c: Suspend cause of sink alsa_output.pci-0000_00_1b.0.hdmi-surround is 0x0000, resuming
( 30.659| 0.000) I: [alsa-sink-HDMI 0] alsa-sink.c: Trying resume...
( 30.660| 0.001) I: [alsa-sink-HDMI 0] alsa-util.c: Trying to disable ALSA period wakeups, using timers only
( 30.661| 0.000) D: [alsa-sink-HDMI 0] alsa-util.c: Maximum hw buffer size is 123 ms
( 30.667| 0.005) D: [alsa-sink-HDMI 0] alsa-util.c: Set buffer size first (to 5460 samples), period size second (to 2730 samples).
( 30.667| 0.000) I: [alsa-sink-HDMI 0] alsa-util.c: ALSA period wakeups disabled
( 30.667| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=0
( 30.667| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5167
( 30.667| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=0
( 30.668| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5165
( 30.668| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=0
( 30.668| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5165
( 30.668| 0.000) I: [alsa-sink-HDMI 0] alsa-sink.c: Time scheduling watermark is 6,69ms
( 30.668| 0.000) I: [alsa-sink-HDMI 0] alsa-sink.c: Resumed successfully...
( 30.668| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround becomes idle, timeout in 5 seconds.
( 30.668| 0.000) I: [alsa-sink-HDMI 0] alsa-sink.c: Starting playback.
( 30.668| 0.000) D: [alsa-sink-HDMI 0] ratelimit.c: 18 events suppressed
( 30.668| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 30.668| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 30.668| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround becomes idle, timeout in 5 seconds.
( 30.668| 0.000) I: [pulseaudio] resampler.c: Forcing resampler 'copy', because of fixed, identical sample rates.
( 30.668| 0.000) D: [pulseaudio] resampler.c: Channel matrix:
( 30.668| 0.000) D: [pulseaudio] resampler.c: I00 I01
( 30.668| 0.000) D: [pulseaudio] resampler.c: +------------
( 30.668| 0.000) D: [pulseaudio] resampler.c: O00 | 1,000 0,000
( 30.668| 0.000) D: [pulseaudio] resampler.c: O01 | 0,000 1,000
( 30.668| 0.000) D: [pulseaudio] resampler.c: O02 | 1,000 0,000
( 30.668| 0.000) D: [pulseaudio] resampler.c: O03 | 0,000 1,000
( 30.668| 0.000) D: [pulseaudio] resampler.c: O04 | 0,500 0,500
( 30.668| 0.000) D: [pulseaudio] resampler.c: O05 | 0,000 0,000
( 30.668| 0.000) I: [pulseaudio] remap.c: Using generic matrix remapping
( 30.668| 0.000) I: [pulseaudio] resampler.c: Using resampler 'copy'
( 30.668| 0.000) I: [pulseaudio] resampler.c: Using s16le as working format.
( 30.668| 0.000) D: [pulseaudio] resampler.c: Resampler:
( 30.668| 0.000) D: [pulseaudio] resampler.c: rate 44100 -> 44100 (method copy),
( 30.668| 0.000) D: [pulseaudio] resampler.c: format s16le -> s16le (intermediate s16le),
( 30.668| 0.000) D: [pulseaudio] resampler.c: channels 2 -> 6 (resampling 2)
( 30.668| 0.000) D: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=12, prebuf=0, minreq=1 maxrewind=0
( 30.668| 0.000) D: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554436, tlength=33554436, base=12, prebuf=0, minreq=12 maxrewind=0
( 30.668| 0.000) I: [pulseaudio] sink-input.c: Created input 1 "ALSA Playback" on alsa_output.pci-0000_00_1b.0.hdmi-surround with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
( 30.668| 0.000) I: [pulseaudio] sink-input.c: media.name = "ALSA Playback"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: application.name = "ALSA plug-in [plugin-container]"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: native-protocol.peer = "UNIX socket client"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: native-protocol.version = "28"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: application.process.id = "3316"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: application.process.user = "administrator"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: application.process.host = "administrator-IdeaCentre-Q190"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: application.process.binary = "plugin-container"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: application.language = "en_US.UTF-8"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: window.x11.display = ":0"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: application.process.machine_id = "10f892d10f4892fc8f20c83654a8086a"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: application.process.session_id = "c1"
( 30.668| 0.000) I: [pulseaudio] sink-input.c: module-stream-restore.id = "sink-input-by-application-name:ALSA plug-in [plugin-container]"
( 30.668| 0.000) I: [pulseaudio] protocol-native.c: Requested tlength=500,00 ms, minreq=20,00 ms
( 30.668| 0.000) D: [pulseaudio] protocol-native.c: Early requests mode enabled, configuring sink latency to minreq.
( 30.668| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 30.669| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 30.669| 0.000) D: [pulseaudio] protocol-native.c: Requested latency=20,00 ms, Received latency=20,00 ms
( 30.669| 0.000) D: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=88200, base=4, prebuf=3528, minreq=3528 maxrewind=0
( 30.669| 0.000) D: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=88200, base=4, prebuf=3528, minreq=3528 maxrewind=0
( 30.669| 0.000) I: [pulseaudio] protocol-native.c: Final latency 520,00 ms = 460,00 ms + 2*20,00 ms + 20,00 ms
( 30.669| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Cutting sleep time for the initial iterations by half.
( 30.669| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Latency set to 20,00ms
( 30.669| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=54936
( 30.669| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5166
( 30.669| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Requesting rewind due to latency change.
( 30.669| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Requested to rewind 65520 bytes.
( 30.669| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Limited to 64208 bytes.
( 30.669| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: before: 5350
( 30.669| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: after: 5350
( 30.669| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Rewound 64200 bytes.
( 30.669| 0.000) D: [alsa-sink-HDMI 0] sink.c: Processing rewind...
( 30.669| 0.000) D: [alsa-sink-HDMI 0] sink-input.c: Have to rewind 64200 bytes on render memblockq.
( 30.669| 0.000) D: [alsa-sink-HDMI 0] source.c: Processing rewind...
( 30.669| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
( 30.671| 0.001) D: [alsa-sink-HDMI 0] protocol-native.c: Requesting rewind due to end of underrun.
( 30.671| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Requested to rewind 65520 bytes.
( 30.671| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Limited to 9176 bytes.
( 30.671| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: before: 764
( 30.671| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: after: 764
( 30.671| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Rewound 9168 bytes.
( 30.671| 0.000) D: [alsa-sink-HDMI 0] sink.c: Processing rewind...
( 30.671| 0.000) D: [alsa-sink-HDMI 0] sink-input.c: Have to rewind 9168 bytes on render memblockq.
( 30.671| 0.000) D: [alsa-sink-HDMI 0] source.c: Processing rewind...
( 38.807| 8.135) D: [pulseaudio] module-stream-restore.c: Not restoring device for stream sink-input-by-media-role:test, because already set to 'alsa_output.pci-0000_00_1b.0.hdmi-surround'.
( 38.807| 0.000) D: [pulseaudio] module-intended-roles.c: Not setting device for stream Front Center, because already set.
( 38.807| 0.000) I: [pulseaudio] sink-input.c: Trying to change sample rate
( 38.807| 0.000) I: [pulseaudio] sink.c: Cannot update rate, SINK_IS_RUNNING, will keep using 44100 Hz
( 38.807| 0.000) I: [pulseaudio] module-stream-restore.c: Restoring mute state for sink input sink-input-by-media-role:test.
( 38.807| 0.000) D: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_00_1b.0.hdmi-surround becomes busy, resuming.
( 38.808| 0.000) D: [pulseaudio] resampler.c: Channel matrix:
( 38.808| 0.000) D: [pulseaudio] resampler.c: I00
( 38.808| 0.000) D: [pulseaudio] resampler.c: +------
( 38.808| 0.000) D: [pulseaudio] resampler.c: O00 | 0,000
( 38.808| 0.000) D: [pulseaudio] resampler.c: O01 | 0,000
( 38.808| 0.000) D: [pulseaudio] resampler.c: O02 | 0,000
( 38.808| 0.000) D: [pulseaudio] resampler.c: O03 | 0,000
( 38.808| 0.000) D: [pulseaudio] resampler.c: O04 | 1,000
( 38.808| 0.000) D: [pulseaudio] resampler.c: O05 | 0,000
( 38.808| 0.000) I: [pulseaudio] remap.c: Using generic matrix remapping
( 38.808| 0.000) I: [pulseaudio] resampler.c: Using resampler 'speex-float-1'
( 38.808| 0.000) I: [pulseaudio] resampler.c: Using float32le as working format.
( 38.808| 0.000) D: [pulseaudio] resampler.c: Resampler:
( 38.808| 0.000) D: [pulseaudio] resampler.c: rate 48000 -> 44100 (method speex-float-1),
( 38.808| 0.000) D: [pulseaudio] resampler.c: format s16le -> s16le (intermediate float32le),
( 38.808| 0.000) D: [pulseaudio] resampler.c: channels 1 -> 6 (resampling 1)
( 38.808| 0.000) I: [pulseaudio] resampler.c: Choosing speex quality setting 1.
( 38.808| 0.000) D: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=12, prebuf=0, minreq=1 maxrewind=0
( 38.808| 0.000) D: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554436, tlength=33554436, base=12, prebuf=0, minreq=12 maxrewind=0
( 38.808| 0.000) I: [pulseaudio] sink-input.c: Created input 2 "Front Center" on alsa_output.pci-0000_00_1b.0.hdmi-surround with sample spec s16le 1ch 48000Hz and channel map front-center
( 38.808| 0.000) I: [pulseaudio] sink-input.c: event.id = "audio-channel-front-center"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: media.name = "Front Center"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: media.role = "test"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: media.filename = "/usr/share//sounds/freedesktop/stereo/audio-channel-front-center.oga"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: application.name = "libcanberra"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: native-protocol.peer = "UNIX socket client"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: native-protocol.version = "28"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: application.id = "org.gnome.VolumeControl"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: application.version = "0.30"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: application.process.id = "3246"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: application.process.user = "administrator"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: application.process.host = "administrator-IdeaCentre-Q190"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: application.process.binary = "unity-control-center"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: application.language = "en_US.UTF-8"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: window.x11.display = ":0"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: application.process.machine_id = "10f892d10f4892fc8f20c83654a8086a"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: application.process.session_id = "c1"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: application.icon_name = "preferences-system"
( 38.808| 0.000) I: [pulseaudio] sink-input.c: module-stream-restore.id = "sink-input-by-media-role:test"
( 38.808| 0.000) I: [pulseaudio] protocol-native.c: Requested tlength=2000,00 ms, minreq=20,00 ms
( 38.808| 0.000) D: [pulseaudio] protocol-native.c: Traditional mode enabled, modifying sink usec only for compat with minreq.
( 38.808| 0.000) D: [pulseaudio] protocol-native.c: Requested latency=1960,00 ms, Received latency=123,81 ms
( 38.808| 0.000) D: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=192000, base=2, prebuf=190082, minreq=1920 maxrewind=0
( 38.808| 0.000) D: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=192000, base=2, prebuf=190082, minreq=1920 maxrewind=0
( 38.809| 0.000) I: [pulseaudio] protocol-native.c: Final latency 2123,81 ms = 1960,00 ms + 2*20,00 ms + 123,81 ms
( 38.809| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Latency set to 20,00ms
( 38.809| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=54936
( 38.809| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5166
( 38.819| 0.010) D: [alsa-sink-HDMI 0] protocol-native.c: Requesting rewind due to end of underrun.
( 38.819| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Requested to rewind 65520 bytes.
( 38.819| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Limited to 10208 bytes.
( 38.819| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: before: 850
( 38.819| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: after: 850
( 38.819| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Rewound 10200 bytes.
( 38.819| 0.000) D: [alsa-sink-HDMI 0] sink.c: Processing rewind...
( 38.819| 0.000) D: [alsa-sink-HDMI 0] sink-input.c: Have to rewind 10200 bytes on render memblockq.
( 38.819| 0.000) D: [alsa-sink-HDMI 0] sink-input.c: Have to rewind 10200 bytes on render memblockq.
( 38.819| 0.000) D: [alsa-sink-HDMI 0] source.c: Processing rewind...
( 40.237| 1.417) D: [alsa-sink-HDMI 0] protocol-native.c: Implicit drain of 'Front Center'
( 40.237| 0.000) D: [alsa-sink-HDMI 0] sink.c: Found underrun 4632 bytes ago (5604 bytes ahead in playback buffer)
( 40.237| 0.000) D: [alsa-sink-HDMI 0] sink.c: Found underrun 4632 bytes ago (5472 bytes ahead in playback buffer)
( 40.248| 0.010) D: [alsa-sink-HDMI 0] protocol-native.c: Drain acknowledged of 'Front Center'
( 40.248| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Latency set to 20,00ms
( 40.248| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=54936
( 40.248| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5166
( 40.248| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Requested to rewind 65520 bytes.
( 40.248| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Limited to 9848 bytes.
( 40.248| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: before: 820
( 40.248| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: after: 820
( 40.248| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Rewound 9840 bytes.
( 40.248| 0.000) D: [alsa-sink-HDMI 0] sink.c: Processing rewind...
( 40.248| 0.000) D: [alsa-sink-HDMI 0] sink-input.c: Have to rewind 9840 bytes on render memblockq.
( 40.248| 0.000) D: [alsa-sink-HDMI 0] source.c: Processing rewind...
( 40.248| 0.000) I: [pulseaudio] sink-input.c: Freeing input 2 "Front Center"
( 49.407| 9.158) I: [pulseaudio] main.c: Got signal SIGINT.
( 49.407| 0.000) I: [pulseaudio] main.c: Exiting.
( 49.407| 0.000) I: [pulseaudio] main.c: Daemon shutdown initiated.
( 49.407| 0.000) I: [pulseaudio] module.c: Unloading "module-filter-apply" (index: #18).
( 49.407| 0.000) I: [pulseaudio] module.c: Unloaded "module-filter-apply" (index: #18).
( 49.407| 0.000) I: [pulseaudio] module.c: Unloading "module-filter-heuristics" (index: #17).
( 49.408| 0.000) I: [pulseaudio] module.c: Unloaded "module-filter-heuristics" (index: #17).
( 49.408| 0.000) I: [pulseaudio] module.c: Unloading "module-position-event-sounds" (index: #16).
( 49.408| 0.000) I: [pulseaudio] module.c: Unloaded "module-position-event-sounds" (index: #16).
( 49.408| 0.000) I: [pulseaudio] module.c: Unloading "module-systemd-login" (index: #15).
( 49.408| 0.000) D: [pulseaudio] module-systemd-login.c: Removing session 1
( 49.408| 0.000) I: [pulseaudio] client.c: Freed 0 "Login Session 1"
( 49.408| 0.000) D: [pulseaudio] module-systemd-login.c: Removing session c1
( 49.408| 0.000) I: [pulseaudio] client.c: Freed 1 "Login Session c1"
( 49.411| 0.002) I: [pulseaudio] module.c: Unloaded "module-systemd-login" (index: #15).
( 49.411| 0.000) I: [pulseaudio] module.c: Unloading "module-suspend-on-idle" (index: #14).
( 49.411| 0.000) I: [pulseaudio] module.c: Unloaded "module-suspend-on-idle" (index: #14).
( 49.411| 0.000) I: [pulseaudio] module.c: Unloading "module-intended-roles" (index: #13).
( 49.411| 0.000) I: [pulseaudio] module.c: Unloaded "module-intended-roles" (index: #13).
( 49.411| 0.000) I: [pulseaudio] module.c: Unloading "module-always-sink" (index: #12).
( 49.411| 0.000) I: [pulseaudio] module.c: Unloaded "module-always-sink" (index: #12).
( 49.411| 0.000) I: [pulseaudio] module.c: Unloading "module-rescue-streams" (index: #11).
( 49.411| 0.000) I: [pulseaudio] module.c: Unloaded "module-rescue-streams" (index: #11).
( 49.411| 0.000) I: [pulseaudio] module.c: Unloading "module-default-device-restore" (index: #10).
( 49.411| 0.000) I: [pulseaudio] module.c: Unloaded "module-default-device-restore" (index: #10).
( 49.411| 0.000) I: [pulseaudio] module.c: Unloading "module-native-protocol-unix" (index: #9).
( 49.411| 0.000) I: [pulseaudio] client.c: Freed 2 "GNOME Volume Control Media Keys"
( 49.411| 0.000) I: [pulseaudio] client.c: Freed 3 "Ubuntu Audio Settings"
( 49.411| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: hwbuf_unused=0
( 49.411| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: setting avail_min=15943
( 49.412| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Requested volume: 0: 49% 1: 49%
( 49.412| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: in dB: 0: -18,75 dB 1: -18,75 dB
( 49.412| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Got hardware volume: 0: 49% 1: 49%
( 49.412| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: in dB: 0: -18,75 dB 1: -18,75 dB
( 49.412| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Calculated software volume: 0: 100% 1: 100% (accurate-enough=yes)
( 49.412| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: in dB: 0: 0,00 dB 1: 0,00 dB
( 49.412| 0.000) D: [alsa-source-ALC662 rev3 Analog] source.c: Volume not changing
( 49.412| 0.000) I: [pulseaudio] source-output.c: Freeing output 0 "Peak detect"
( 49.412| 0.000) I: [pulseaudio] client.c: Freed 4 "GNOME Volume Control Dialog"
( 49.412| 0.000) I: [pulseaudio] client.c: Freed 5 "libcanberra"
( 49.412| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: hwbuf_unused=0
( 49.412| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: setting avail_min=5165
( 49.412| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Requested to rewind 65520 bytes.
( 49.413| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Limited to 9848 bytes.
( 49.413| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: before: 820
( 49.413| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: after: 820
( 49.413| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Rewound 9840 bytes.
( 49.413| 0.000) D: [alsa-sink-HDMI 0] sink.c: Processing rewind...
( 49.413| 0.000) D: [alsa-sink-HDMI 0] source.c: Processing rewind...
( 49.413| 0.000) D: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
( 49.413| 0.000) I: [pulseaudio] sink-input.c: Freeing input 1 "ALSA Playback"
( 49.414| 0.000) I: [pulseaudio] client.c: Freed 7 "ALSA plug-in [plugin-container]"
( 49.414| 0.000) I: [pulseaudio] module.c: Unloaded "module-native-protocol-unix" (index: #9).
( 49.414| 0.000) I: [pulseaudio] module.c: Unloading "module-bluetooth-discover" (index: #8).
( 49.415| 0.000) I: [pulseaudio] module.c: Unloaded "module-bluetooth-discover" (index: #8).
( 49.415| 0.000) I: [pulseaudio] module.c: Unloading "module-bluetooth-policy" (index: #7).
( 49.415| 0.000) I: [pulseaudio] module.c: Unloaded "module-bluetooth-policy" (index: #7).
( 49.415| 0.000) I: [pulseaudio] module.c: Unloading "module-udev-detect" (index: #6).
( 49.415| 0.000) I: [pulseaudio] module.c: Unloaded "module-udev-detect" (index: #6).
( 49.415| 0.000) I: [pulseaudio] module.c: Unloading "module-alsa-card" (index: #5).
( 49.416| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
( 49.416| 0.000) D: [alsa-sink-HDMI 0] alsa-sink.c: Thread shutting down
( 49.416| 0.000) I: [pulseaudio] sink.c: Freeing sink 0 "alsa_output.pci-0000_00_1b.0.hdmi-surround"
( 49.416| 0.000) I: [pulseaudio] source.c: Freeing source 0 "alsa_output.pci-0000_00_1b.0.hdmi-surround.monitor"
( 49.416| 0.000) D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
( 49.416| 0.000) D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
( 49.416| 0.000) D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
( 49.416| 0.000) D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
( 49.416| 0.000) D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
( 49.416| 0.000) D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
( 49.416| 0.000) D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
( 49.416| 0.000) D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
( 49.416| 0.000) D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
( 49.416| 0.000) D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
( 49.416| 0.000) D: [pulseaudio] flist.c: pulsecore/hashmap.c: entries flist is full (don't worry)
( 49.417| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
( 49.417| 0.000) D: [pulseaudio] core-subscribe.c: Dropped redundant event due to remove event.
( 49.417| 0.000) D: [alsa-source-ALC662 rev3 Analog] alsa-source.c: Thread shutting down
( 49.417| 0.000) I: [pulseaudio] source.c: Freeing source 1 "alsa_input.pci-0000_00_1b.0.analog-stereo"
( 49.419| 0.002) I: [pulseaudio] card.c: Freed 0 "alsa_card.pci-0000_00_1b.0"
( 49.420| 0.000) I: [pulseaudio] module.c: Unloaded "module-alsa-card" (index: #5).
( 49.420| 0.000) I: [pulseaudio] module.c: Unloading "module-switch-on-port-available" (index: #4).
( 49.421| 0.000) I: [pulseaudio] module.c: Unloaded "module-switch-on-port-available" (index: #4).
( 49.421| 0.000) I: [pulseaudio] module.c: Unloading "module-augment-properties" (index: #3).
( 49.421| 0.000) I: [pulseaudio] module.c: Unloaded "module-augment-properties" (index: #3).
( 49.421| 0.000) I: [pulseaudio] module.c: Unloading "module-card-restore" (index: #2).
( 49.421| 0.000) I: [pulseaudio] module.c: Unloaded "module-card-restore" (index: #2).
( 49.421| 0.000) I: [pulseaudio] module.c: Unloading "module-stream-restore" (index: #1).
( 49.421| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1 removed from object /org/pulseaudio/stream_restore1
( 49.421| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry0
( 49.421| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry1
( 49.421| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry2
( 49.421| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry3
( 49.421| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry4
( 49.421| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry5
( 49.421| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry6
( 49.421| 0.000) D: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry removed from object /org/pulseaudio/stream_restore1/entry7
( 49.421| 0.000) I: [pulseaudio] module.c: Unloaded "module-stream-restore" (index: #1).
( 49.421| 0.000) I: [pulseaudio] module.c: Unloading "module-device-restore" (index: #0).
( 49.421| 0.000) I: [pulseaudio] module.c: Unloaded "module-device-restore" (index: #0).
( 49.422| 0.000) I: [pulseaudio] main.c: Daemon terminated.
|