Ticket #693: pulseaudio-vvvv.txt

File pulseaudio-vvvv.txt, 22.6 kB (added by mdragt, 2 years ago)

pulseaudio -vvv results

Line 
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
1313D: protocol-native.c: Underrun on 'Output', 0 bytes in queue.
1314D: protocol-native.c: Requesting rewind due to rewrite.
1315D: alsa-sink.c: Requested to rewind 6864 bytes.
1316D: alsa-sink.c: Limited to 1720 bytes.
1317D: alsa-sink.c: before: 430
1318D: alsa-sink.c: after: 430
1319D: alsa-sink.c: Rewound 1720 bytes.
1320D: sink.c: Processing rewind...
1321D: sink-input.c: Have to rewind 1720 bytes on render memblockq.
1322D: sink-input.c: Have to rewind 2476 bytes on implementor.
1323D: source.c: Processing rewind...
1324D: protocol-native.c: Underrun on 'Output', 0 bytes in queue.
1325D: protocol-native.c: Requesting rewind due to rewrite.
1326D: alsa-sink.c: Requested to rewind 16316 bytes.
1327D: alsa-sink.c: Limited to 1392 bytes.
1328D: alsa-sink.c: before: 348
1329D: alsa-sink.c: after: 348
1330D: alsa-sink.c: Rewound 1392 bytes.
1331D: sink.c: Processing rewind...
1332D: sink-input.c: Have to rewind 1392 bytes on render memblockq.
1333D: sink-input.c: Have to rewind 3060 bytes on implementor.
1334D: source.c: Processing rewind...
1335D: protocol-native.c: Requesting rewind due to rewrite.
1336D: alsa-sink.c: Requested to rewind 16552 bytes.
1337D: alsa-sink.c: Limited to 1724 bytes.
1338D: alsa-sink.c: before: 431
1339D: alsa-sink.c: after: 431
1340D: alsa-sink.c: Rewound 1724 bytes.
1341D: sink.c: Processing rewind...
1342D: sink-input.c: Have to rewind 1724 bytes on render memblockq.
1343D: sink-input.c: Have to rewind 1856 bytes on implementor.
1344D: source.c: Processing rewind...
1345D: protocol-native.c: Requesting rewind due to rewrite.
1346D: alsa-sink.c: Requested to rewind 15864 bytes.
1347D: alsa-sink.c: Limited to 1712 bytes.
1348D: alsa-sink.c: before: 428
1349D: alsa-sink.c: after: 428
1350D: alsa-sink.c: Rewound 1712 bytes.
1351D: sink.c: Processing rewind...
1352D: sink-input.c: Have to rewind 1712 bytes on render memblockq.
1353D: sink-input.c: Have to rewind 2888 bytes on implementor.
1354D: source.c: Processing rewind...
1355D: protocol-native.c: Requesting rewind due to rewrite.
1356D: alsa-sink.c: Requested to rewind 16452 bytes.
1357D: alsa-sink.c: Limited to 1716 bytes.
1358D: alsa-sink.c: before: 429
1359D: alsa-sink.c: after: 429
1360D: alsa-sink.c: Rewound 1716 bytes.
1361D: sink.c: Processing rewind...
1362D: sink-input.c: Have to rewind 1716 bytes on render memblockq.
1363D: sink-input.c: Have to rewind 1300 bytes on implementor.
1364D: source.c: Processing rewind...
1365D: protocol-native.c: Requesting rewind due to rewrite.
1366D: alsa-sink.c: Requested to rewind 18964 bytes.
1367D: alsa-sink.c: Limited to 988 bytes.
1368D: alsa-sink.c: before: 247
1369D: alsa-sink.c: after: 247
1370D: alsa-sink.c: Rewound 988 bytes.
1371D: sink.c: Processing rewind...
1372D: sink-input.c: Have to rewind 988 bytes on render memblockq.
1373D: sink-input.c: Have to rewind 1804 bytes on implementor.
1374D: source.c: Processing rewind...
1375D: protocol-native.c: Requesting rewind due to rewrite.
1376D: alsa-sink.c: Requested to rewind 16260 bytes.
1377D: alsa-sink.c: Limited to 1092 bytes.
1378D: alsa-sink.c: before: 273
1379D: alsa-sink.c: after: 273
1380D: alsa-sink.c: Rewound 1092 bytes.
1381D: sink.c: Processing rewind...
1382D: sink-input.c: Have to rewind 1092 bytes on render memblockq.
1383D: sink-input.c: Have to rewind 396 bytes on implementor.
1384D: source.c: Processing rewind...
1385D: protocol-native.c: Requesting rewind due to rewrite.
1386D: alsa-sink.c: Requested to rewind 16848 bytes.
1387D: alsa-sink.c: Limited to 1712 bytes.
1388D: alsa-sink.c: before: 428
1389D: alsa-sink.c: after: 428
1390D: alsa-sink.c: Rewound 1712 bytes.
1391D: sink.c: Processing rewind...
1392D: sink-input.c: Have to rewind 1712 bytes on render memblockq.
1393D: sink-input.c: Have to rewind 2612 bytes on implementor.
1394D: source.c: Processing rewind...
1395D: protocol-native.c: Requesting rewind due to rewrite.
1396D: alsa-sink.c: Requested to rewind 20384 bytes.
1397D: alsa-sink.c: Limited to 1540 bytes.
1398D: alsa-sink.c: before: 385
1399D: alsa-sink.c: after: 385
1400D: alsa-sink.c: Rewound 1540 bytes.
1401D: sink.c: Processing rewind...
1402D: sink-input.c: Have to rewind 1540 bytes on render memblockq.
1403D: sink-input.c: Have to rewind 1888 bytes on implementor.
1404D: source.c: Processing rewind...
1405D: protocol-native.c: Requesting rewind due to rewrite.
1406D: alsa-sink.c: Requested to rewind 18892 bytes.
1407D: alsa-sink.c: Limited to 1416 bytes.
1408D: alsa-sink.c: before: 354
1409D: alsa-sink.c: after: 354
1410D: alsa-sink.c: Rewound 1416 bytes.
1411D: sink.c: Processing rewind...
1412D: sink-input.c: Have to rewind 1416 bytes on render memblockq.
1413D: sink-input.c: Have to rewind 1808 bytes on implementor.
1414D: source.c: Processing rewind...
1415D: protocol-native.c: Requesting rewind due to rewrite.
1416D: alsa-sink.c: Requested to rewind 16372 bytes.
1417D: alsa-sink.c: Limited to 1732 bytes.
1418D: alsa-sink.c: before: 433
1419D: alsa-sink.c: after: 433
1420D: alsa-sink.c: Rewound 1732 bytes.
1421D: sink.c: Processing rewind...
1422D: sink-input.c: Have to rewind 1732 bytes on render memblockq.
1423D: sink-input.c: Have to rewind 628 bytes on implementor.
1424D: source.c: Processing rewind...
1425D: protocol-native.c: Requesting rewind due to rewrite.
1426D: alsa-sink.c: Requested to rewind 16072 bytes.
1427D: alsa-sink.c: Limited to 1564 bytes.
1428D: alsa-sink.c: before: 391
1429D: alsa-sink.c: after: 391
1430D: alsa-sink.c: Rewound 1564 bytes.
1431D: sink.c: Processing rewind...
1432D: sink-input.c: Have to rewind 1564 bytes on render memblockq.
1433D: sink-input.c: Have to rewind 1348 bytes on implementor.
1434D: source.c: Processing rewind...
1435D: protocol-native.c: Requesting rewind due to rewrite.
1436D: alsa-sink.c: Requested to rewind 15660 bytes.
1437D: alsa-sink.c: Limited to 1724 bytes.
1438D: alsa-sink.c: before: 431
1439D: alsa-sink.c: after: 431
1440D: alsa-sink.c: Rewound 1724 bytes.
1441D: sink.c: Processing rewind...
1442D: sink-input.c: Have to rewind 1724 bytes on render memblockq.
1443D: sink-input.c: Have to rewind 1848 bytes on implementor.
1444D: source.c: Processing rewind...
1445D: protocol-native.c: Requesting rewind due to rewrite.
1446D: alsa-sink.c: Requested to rewind 14060 bytes.
1447D: alsa-sink.c: Limited to 856 bytes.
1448D: alsa-sink.c: before: 214
1449D: alsa-sink.c: after: 214
1450D: alsa-sink.c: Rewound 856 bytes.
1451D: sink.c: Processing rewind...
1452D: sink-input.c: Have to rewind 856 bytes on render memblockq.
1453D: sink-input.c: Have to rewind 2172 bytes on implementor.
1454D: source.c: Processing rewind...
1455D: protocol-native.c: Requesting rewind due to rewrite.
1456D: alsa-sink.c: Requested to rewind 17520 bytes.
1457D: alsa-sink.c: Limited to 1692 bytes.
1458D: alsa-sink.c: before: 423
1459D: alsa-sink.c: after: 423
1460D: alsa-sink.c: Rewound 1692 bytes.
1461D: sink.c: Processing rewind...
1462D: sink-input.c: Have to rewind 1692 bytes on render memblockq.
1463D: sink-input.c: Have to rewind 1988 bytes on implementor.
1464D: source.c: Processing rewind...
1465D: protocol-native.c: Requesting rewind due to rewrite.
1466D: alsa-sink.c: Requested to rewind 22896 bytes.
1467D: alsa-sink.c: Limited to 1524 bytes.
1468D: alsa-sink.c: before: 381
1469D: alsa-sink.c: after: 381
1470D: alsa-sink.c: Rewound 1524 bytes.
1471D: sink.c: Processing rewind...
1472D: sink-input.c: Have to rewind 1524 bytes on render memblockq.
1473D: sink-input.c: Have to rewind 3588 bytes on implementor.
1474D: source.c: Processing rewind...
1475D: protocol-native.c: Requesting rewind due to rewrite.
1476D: alsa-sink.c: Requested to rewind 26064 bytes.
1477D: alsa-sink.c: Limited to 1716 bytes.
1478D: alsa-sink.c: before: 429
1479D: alsa-sink.c: after: 429
1480D: alsa-sink.c: Rewound 1716 bytes.
1481D: sink.c: Processing rewind...
1482D: sink-input.c: Have to rewind 1716 bytes on render memblockq.
1483D: sink-input.c: Have to rewind 868 bytes on implementor.
1484D: source.c: Processing rewind...
1485N: alsa-sink.c: Increasing minimal latency to 26,00 ms
1486D: alsa-sink.c: Latency set to 48,00ms
1487D: alsa-sink.c: hwbuf_unused=57072
1488D: alsa-sink.c: setting avail_min=14710
1489D: alsa-sink.c: Latency set to 48,00ms
1490D: alsa-sink.c: hwbuf_unused=57072
1491D: alsa-sink.c: setting avail_min=14710
1492D: protocol-native.c: Requesting rewind due to rewrite.
1493D: alsa-sink.c: Requested to rewind 28292 bytes.
1494D: alsa-sink.c: Limited to 1656 bytes.
1495D: alsa-sink.c: before: 414
1496D: alsa-sink.c: after: 414
1497D: alsa-sink.c: Rewound 1656 bytes.
1498D: sink.c: Processing rewind...
1499D: sink-input.c: Have to rewind 1656 bytes on render memblockq.
1500D: sink-input.c: Have to rewind 840 bytes on implementor.
1501D: source.c: Processing rewind...
1502D: protocol-native.c: Requesting rewind due to rewrite.
1503D: alsa-sink.c: Requested to rewind 27624 bytes.
1504D: alsa-sink.c: Limited to 1716 bytes.
1505D: alsa-sink.c: before: 429
1506D: alsa-sink.c: after: 429
1507D: alsa-sink.c: Rewound 1716 bytes.
1508D: sink.c: Processing rewind...
1509D: sink-input.c: Have to rewind 1716 bytes on render memblockq.
1510D: sink-input.c: Have to rewind 2600 bytes on implementor.
1511D: source.c: Processing rewind...
1512N: alsa-sink.c: Increasing minimal latency to 36,00 ms
1513D: alsa-sink.c: Latency set to 48,00ms
1514D: alsa-sink.c: hwbuf_unused=57072
1515D: alsa-sink.c: setting avail_min=14710
1516D: alsa-sink.c: Latency set to 48,00ms
1517D: alsa-sink.c: hwbuf_unused=57072
1518D: alsa-sink.c: setting avail_min=14710
1519D: protocol-native.c: Requesting rewind due to rewrite.
1520D: alsa-sink.c: Requested to rewind 26752 bytes.
1521D: alsa-sink.c: Limited to 1728 bytes.
1522D: alsa-sink.c: before: 432
1523D: alsa-sink.c: after: 432
1524D: alsa-sink.c: Rewound 1728 bytes.
1525D: sink.c: Processing rewind...
1526D: sink-input.c: Have to rewind 1728 bytes on render memblockq.
1527D: sink-input.c: Have to rewind 928 bytes on implementor.
1528D: source.c: Processing rewind...
1529D: protocol-native.c: Requesting rewind due to rewrite.
1530D: alsa-sink.c: Requested to rewind 30840 bytes.
1531D: alsa-sink.c: Limited to 1172 bytes.
1532D: alsa-sink.c: before: 293
1533D: alsa-sink.c: after: 293
1534D: alsa-sink.c: Rewound 1172 bytes.
1535D: sink.c: Processing rewind...
1536D: sink-input.c: Have to rewind 1172 bytes on render memblockq.
1537D: sink-input.c: Have to rewind 1172 bytes on implementor.
1538D: source.c: Processing rewind...
1539D: protocol-native.c: Requesting rewind due to rewrite.
1540D: alsa-sink.c: Requested to rewind 28476 bytes.
1541D: alsa-sink.c: Limited to 1728 bytes.
1542D: alsa-sink.c: before: 432
1543D: alsa-sink.c: after: 432
1544D: alsa-sink.c: Rewound 1728 bytes.
1545D: sink.c: Processing rewind...
1546D: sink-input.c: Have to rewind 1728 bytes on render memblockq.
1547D: sink-input.c: Have to rewind 624 bytes on implementor.
1548D: source.c: Processing rewind...
1549D: protocol-native.c: Requesting rewind due to rewrite.
1550D: alsa-sink.c: Requested to rewind 29744 bytes.
1551D: alsa-sink.c: Limited to 1720 bytes.
1552D: alsa-sink.c: before: 430
1553D: alsa-sink.c: after: 430
1554D: alsa-sink.c: Rewound 1720 bytes.
1555D: sink.c: Processing rewind...
1556D: sink-input.c: Have to rewind 1720 bytes on render memblockq.
1557D: sink-input.c: Have to rewind 1040 bytes on implementor.
1558D: source.c: Processing rewind...
1559D: protocol-native.c: Requesting rewind due to rewrite.
1560D: alsa-sink.c: Requested to rewind 26260 bytes.
1561D: alsa-sink.c: Limited to 1732 bytes.
1562D: alsa-sink.c: before: 433
1563D: alsa-sink.c: after: 433
1564D: alsa-sink.c: Rewound 1732 bytes.
1565D: sink.c: Processing rewind...
1566D: sink-input.c: Have to rewind 1732 bytes on render memblockq.
1567D: sink-input.c: Have to rewind 628 bytes on implementor.
1568D: source.c: Processing rewind...
1569D: protocol-native.c: Requesting rewind due to rewrite.
1570D: alsa-sink.c: Requested to rewind 16844 bytes.
1571D: alsa-sink.c: Limited to 1252 bytes.
1572D: alsa-sink.c: before: 313
1573D: alsa-sink.c: after: 313
1574D: alsa-sink.c: Rewound 1252 bytes.
1575D: sink.c: Processing rewind...
1576D: sink-input.c: Have to rewind 1252 bytes on render memblockq.
1577D: sink-input.c: Have to rewind 452 bytes on implementor.
1578D: source.c: Processing rewind...
1579D: protocol-native.c: Requesting rewind due to rewrite.
1580D: alsa-sink.c: Requested to rewind 18860 bytes.
1581D: alsa-sink.c: Limited to 1716 bytes.
1582D: alsa-sink.c: before: 429
1583D: alsa-sink.c: after: 429
1584D: alsa-sink.c: Rewound 1716 bytes.
1585D: sink.c: Processing rewind...
1586D: sink-input.c: Have to rewind 1716 bytes on render memblockq.
1587D: sink-input.c: Have to rewind 2024 bytes on implementor.
1588D: source.c: Processing rewind...
1589D: protocol-native.c: Requesting rewind due to rewrite.
1590D: alsa-sink.c: Requested to rewind 17076 bytes.
1591D: alsa-sink.c: Limited to 1708 bytes.
1592D: alsa-sink.c: before: 427
1593D: alsa-sink.c: after: 427
1594D: alsa-sink.c: Rewound 1708 bytes.
1595D: sink.c: Processing rewind...
1596D: sink-input.c: Have to rewind 1708 bytes on render memblockq.
1597D: sink-input.c: Have to rewind 1920 bytes on implementor.
1598D: source.c: Processing rewind...
1599D: protocol-native.c: Requesting rewind due to rewrite.
1600D: alsa-sink.c: Requested to rewind 17560 bytes.
1601D: alsa-sink.c: Limited to 1716 bytes.
1602D: alsa-sink.c: before: 429
1603D: alsa-sink.c: after: 429
1604D: alsa-sink.c: Rewound 1716 bytes.
1605D: sink.c: Processing rewind...
1606D: sink-input.c: Have to rewind 1716 bytes on render memblockq.
1607D: sink-input.c: Have to rewind 992 bytes on implementor.
1608D: source.c: Processing rewind...
1609D: protocol-native.c: Underrun on 'Output', 0 bytes in queue.
1610D: protocol-native.c: Requesting rewind due to rewrite.
1611D: alsa-sink.c: Requested to rewind 17440 bytes.
1612D: alsa-sink.c: Limited to 1720 bytes.
1613D: alsa-sink.c: before: 430
1614D: alsa-sink.c: after: 430
1615D: alsa-sink.c: Rewound 1720 bytes.
1616D: sink.c: Processing rewind...
1617D: sink-input.c: Have to rewind 1720 bytes on render memblockq.
1618D: sink-input.c: Have to rewind 2960 bytes on implementor.
1619D: source.c: Processing rewind...
1620D: protocol-native.c: Underrun on 'Output', 0 bytes in queue.
1621D: protocol-native.c: Requesting rewind due to rewrite.
1622D: alsa-sink.c: Requested to rewind 10444 bytes.
1623D: alsa-sink.c: Limited to 1364 bytes.
1624D: alsa-sink.c: before: 341
1625D: alsa-sink.c: after: 341
1626D: alsa-sink.c: Rewound 1364 bytes.
1627D: sink.c: Processing rewind...
1628D: sink-input.c: Have to rewind 1364 bytes on render memblockq.
1629D: sink-input.c: Have to rewind 1304 bytes on implementor.
1630D: source.c: Processing rewind...
1631D: protocol-native.c: Underrun on 'Output', 0 bytes in queue.
1632D: protocol-native.c: Requesting rewind due to rewrite.
1633D: alsa-sink.c: Requested to rewind 17372 bytes.
1634D: alsa-sink.c: Limited to 1708 bytes.
1635D: alsa-sink.c: before: 427
1636D: alsa-sink.c: after: 427
1637D: alsa-sink.c: Rewound 1708 bytes.
1638D: sink.c: Processing rewind...
1639D: sink-input.c: Have to rewind 1708 bytes on render memblockq.
1640D: sink-input.c: Have to rewind 3584 bytes on implementor.
1641D: source.c: Processing rewind...
1642D: protocol-native.c: Requesting rewind due to rewrite.
1643D: alsa-sink.c: Requested to rewind 18012 bytes.
1644D: alsa-sink.c: Limited to 1516 bytes.
1645D: alsa-sink.c: before: 379
1646D: alsa-sink.c: after: 379
1647D: alsa-sink.c: Rewound 1516 bytes.
1648D: sink.c: Processing rewind...
1649D: sink-input.c: Have to rewind 1516 bytes on render memblockq.
1650D: sink-input.c: Have to rewind 548 bytes on implementor.
1651D: source.c: Processing rewind...
1652D: protocol-native.c: Requesting rewind due to rewrite.
1653D: alsa-sink.c: Requested to rewind 18688 bytes.
1654D: alsa-sink.c: Limited to 1724 bytes.
1655D: alsa-sink.c: before: 431
1656D: alsa-sink.c: after: 431
1657D: alsa-sink.c: Rewound 1724 bytes.
1658D: sink.c: Processing rewind...
1659D: sink-input.c: Have to rewind 1724 bytes on render memblockq.
1660D: sink-input.c: Have to rewind 2164 bytes on implementor.
1661D: source.c: Processing rewind...
1662D: protocol-native.c: Requesting rewind due to rewrite.
1663D: alsa-sink.c: Requested to rewind 25016 bytes.
1664D: alsa-sink.c: Limited to 1716 bytes.
1665D: alsa-sink.c: before: 429
1666D: alsa-sink.c: after: 429
1667D: alsa-sink.c: Rewound 1716 bytes.
1668D: sink.c: Processing rewind...
1669D: sink-input.c: Have to rewind 1716 bytes on render memblockq.
1670D: sink-input.c: Have to rewind 2724 bytes on implementor.
1671D: source.c: Processing rewind...
1672D: protocol-native.c: Requesting rewind due to rewrite.
1673D: alsa-sink.c: Requested to rewind 22652 bytes.
1674D: alsa-sink.c: Limited to 1720 bytes.
1675D: alsa-sink.c: before: 430
1676D: alsa-sink.c: after: 430
1677D: alsa-sink.c: Rewound 1720 bytes.
1678D: sink.c: Processing rewind...
1679D: sink-input.c: Have to rewind 1720 bytes on render memblockq.
1680D: sink-input.c: Have to rewind 1732 bytes on implementor.
1681D: source.c: Processing rewind...
1682D: protocol-native.c: Requesting rewind due to rewrite.
1683D: alsa-sink.c: Requested to rewind 20064 bytes.
1684D: alsa-sink.c: Limited to 1708 bytes.
1685D: alsa-sink.c: before: 427
1686D: alsa-sink.c: after: 427
1687D: alsa-sink.c: Rewound 1708 bytes.
1688D: sink.c: Processing rewind...
1689D: sink-input.c: Have to rewind 1708 bytes on render memblockq.
1690D: sink-input.c: Have to rewind 616 bytes on implementor.
1691D: source.c: Processing rewind...
1692D: protocol-native.c: Requesting rewind due to rewrite.
1693D: alsa-sink.c: Requested to rewind 20324 bytes.
1694D: alsa-sink.c: Limited to 1704 bytes.
1695D: alsa-sink.c: before: 426
1696D: alsa-sink.c: after: 426
1697D: alsa-sink.c: Rewound 1704 bytes.
1698D: sink.c: Processing rewind...
1699D: sink-input.c: Have to rewind 1704 bytes on render memblockq.
1700D: sink-input.c: Have to rewind 2036 bytes on implementor.
1701D: source.c: Processing rewind...
1702D: protocol-native.c: Requesting rewind due to rewrite.
1703D: alsa-sink.c: Requested to rewind 12080 bytes.
1704D: alsa-sink.c: Limited to 1460 bytes.
1705D: alsa-sink.c: before: 365
1706D: alsa-sink.c: after: 365
1707D: alsa-sink.c: Rewound 1460 bytes.
1708D: sink.c: Processing rewind...
1709D: sink-input.c: Have to rewind 1460 bytes on render memblockq.
1710D: sink-input.c: Have to rewind 528 bytes on implementor.
1711D: source.c: Processing rewind...
1712D: protocol-native.c: Requesting rewind due to rewrite.
1713D: alsa-sink.c: Requested to rewind 25612 bytes.
1714D: alsa-sink.c: Limited to 1548 bytes.
1715D: alsa-sink.c: before: 387
1716D: alsa-sink.c: after: 387
1717D: alsa-sink.c: Rewound 1548 bytes.
1718D: sink.c: Processing rewind...
1719D: sink-input.c: Have to rewind 1548 bytes on render memblockq.
1720D: sink-input.c: Have to rewind 2440 bytes on implementor.
1721D: source.c: Processing rewind...
1722D: protocol-native.c: Requesting rewind due to rewrite.
1723D: alsa-sink.c: Requested to rewind 16668 bytes.
1724D: alsa-sink.c: Limited to 1484 bytes.
1725D: alsa-sink.c: before: 371
1726D: alsa-sink.c: after: 371
1727D: alsa-sink.c: Rewound 1484 bytes.
1728D: sink.c: Processing rewind...
1729D: sink-input.c: Have to rewind 1484 bytes on render memblockq.
1730D: sink-input.c: Have to rewind 536 bytes on implementor.
1731D: source.c: Processing rewind...
1732D: protocol-native.c: Requesting rewind due to rewrite.
1733D: alsa-sink.c: Requested to rewind 16892 bytes.
1734D: alsa-sink.c: Limited to 1704 bytes.
1735D: alsa-sink.c: before: 426
1736D: alsa-sink.c: after: 426
1737D: alsa-sink.c: Rewound 1704 bytes.
1738D: sink.c: Processing rewind...
1739D: sink-input.c: Have to rewind 1704 bytes on render memblockq.
1740D: sink-input.c: Have to rewind 1520 bytes on implementor.
1741D: source.c: Processing rewind...
1742D: protocol-native.c: Requesting rewind due to rewrite.
1743D: alsa-sink.c: Requested to rewind 7144 bytes.
1744D: alsa-sink.c: Limited to 1732 bytes.
1745D: alsa-sink.c: before: 433
1746D: alsa-sink.c: after: 433
1747D: alsa-sink.c: Rewound 1732 bytes.
1748D: sink.c: Processing rewind...
1749D: sink-input.c: Have to rewind 1732 bytes on render memblockq.
1750D: sink-input.c: Have to rewind 628 bytes on implementor.
1751D: source.c: Processing rewind...
1752D: protocol-native.c: Underrun on 'Output', 0 bytes in queue.
1753D: protocol-native.c: Requesting rewind due to rewrite.
1754D: alsa-sink.c: Requested to rewind 4908 bytes.
1755D: alsa-sink.c: Limited to 1596 bytes.
1756D: alsa-sink.c: before: 399
1757D: alsa-sink.c: after: 399
1758D: alsa-sink.c: Rewound 1596 bytes.
1759D: sink.c: Processing rewind...
1760D: sink-input.c: Have to rewind 1596 bytes on render memblockq.
1761D: sink-input.c: Have to rewind 3036 bytes on implementor.
1762D: source.c: Processing rewind...
1763D: protocol-native.c: Underrun on 'Output', 0 bytes in queue.
1764D: protocol-native.c: Requesting rewind due to rewrite.
1765D: alsa-sink.c: Requested to rewind 11156 bytes.
1766D: alsa-sink.c: Limited to 1256 bytes.
1767D: alsa-sink.c: before: 314
1768D: alsa-sink.c: after: 314
1769D: alsa-sink.c: Rewound 1256 bytes.
1770D: sink.c: Processing rewind...
1771D: sink-input.c: Have to rewind 1256 bytes on render memblockq.
1772D: sink-input.c: Have to rewind 992 bytes on implementor.
1773D: source.c: Processing rewind...
1774D: protocol-native.c: Requesting rewind due to rewrite.
1775D: alsa-sink.c: Requested to rewind 11960 bytes.
1776D: alsa-sink.c: Limited to 1532 bytes.
1777D: alsa-sink.c: before: 383
1778D: alsa-sink.c: after: 383
1779D: alsa-sink.c: Rewound 1532 bytes.
1780D: sink.c: Processing rewind...
1781D: sink-input.c: Have to rewind 1532 bytes on render memblockq.
1782D: sink-input.c: Have to rewind 552 bytes on implementor.
1783D: source.c: Processing rewind...
1784D: protocol-native.c: Underrun on 'Output', 0 bytes in queue.
1785D: protocol-native.c: Requesting rewind due to rewrite.
1786D: alsa-sink.c: Requested to rewind 6992 bytes.
1787D: alsa-sink.c: Limited to 1536 bytes.
1788D: alsa-sink.c: before: 384
1789D: alsa-sink.c: after: 384
1790D: alsa-sink.c: Rewound 1536 bytes.
1791D: sink.c: Processing rewind...
1792D: sink-input.c: Have to rewind 1536 bytes on render memblockq.
1793D: sink-input.c: Have to rewind 2308 bytes on implementor.
1794D: source.c: Processing rewind...
1795D: protocol-native.c: Underrun on 'Output', 0 bytes in queue.
1796W: ratelimit.c: 72 events suppressed
1797I: alsa-sink.c: Underrun!
1798N: alsa-sink.c: Increasing minimal latency to 46,00 ms
1799D: alsa-sink.c: Latency set to 48,00ms
1800D: alsa-sink.c: hwbuf_unused=57072
1801D: alsa-sink.c: setting avail_min=14710
1802D: alsa-sink.c: Latency set to 48,00ms
1803D: alsa-sink.c: hwbuf_unused=57072
1804D: alsa-sink.c: setting avail_min=14710
1805D: protocol-native.c: Requesting rewind due to rewrite.
1806D: alsa-sink.c: Requested to rewind 37608 bytes.
1807D: alsa-sink.c: Mhmm, actually there is nothing to rewind.
1808D: sink-input.c: Have to rewind 1980 bytes on implementor.
1809D: protocol-native.c: Requesting rewind due to rewrite.
1810D: alsa-sink.c: Requested to rewind 36776 bytes.
1811D: alsa-sink.c: Limited to 1724 bytes.
1812D: alsa-sink.c: before: 431
1813D: alsa-sink.c: after: 431
1814D: alsa-sink.c: Rewound 1724 bytes.
1815D: sink.c: Processing rewind...
1816D: sink-input.c: Have to rewind 1724 bytes on render memblockq.
1817D: sink-input.c: Have to rewind 624 bytes on implementor.
1818D: source.c: Processing rewind...
1819I: alsa-source.c: Overrun!
1820N: alsa-source.c: Increasing wakeup watermark to 15,99 ms
1821E: memblock.c: Assertion 'length' failed at pulsecore/memblock.c:357, function pa_memblock_new_fixed(). Aborting.
1822Afgebroken
1823[martin@lynx Documenten]$
1824