-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchromeosaboutpage.txt
10523 lines (10445 loc) · 732 KB
/
chromeosaboutpage.txt
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
=== cras_test_client --dump_server_info ===
System Volume (0-100): 100
Capture Muted : Not muted
User muted: Not muted
Output Devices:
ID Name
13 kblda7219m98373: :0,6
12 kblda7219m98373: :0,5
11 kblda7219m98373: :0,4
8 kblda7219m98373: :0,7
6 kblda7219m98373: :0,0
Output Nodes:
Stable Id ID Vol UI Plugged L/R swapped Time Hotword Type Name
(df1acfc7) 13:0 100 0.000000 no no 0 HDMI HDMI3
(8b44524e) 12:0 100 0.000000 no no 0 HDMI HDMI2
(29dff288) 11:0 100 0.000000 no no 0 HDMI HDMI1
(c606b29b) 8:0 100 0.000000 no no 0 HEADPHONE Headphone
(8636b152) 8:1 100 0.000000 no no 0 LINEOUT Line Out
(72a57953) 6:0 75 0.000000 yes no 1599930350 INTERNAL_SPEAKER*Speaker
Input Devices:
ID Name
14 kblda7219m98373: :0,2
10 kblda7219m98373: :0,8
9 kblda7219m98373: :0,3
7 kblda7219m98373: :0,1
5 Post DSP Loopback
4 Post Mix Pre DSP Loopback
Input Nodes:
Stable Id ID Gain UI Plugged L/R swapped Time Hotword Type Name
(1f6a4ea6) 14:0 20 1.000000 yes no 1599930350 en_us HOTWORD Wake on Voice
(fc3b3cb1) 10:0 20 1.000000 no no 0 MIC Mic
(f45202a1) 9:0 20 1.000000 yes no 1599930350 INTERNAL_MIC *Internal Mic
(128b630d) 7:0 20 1.000000 yes no 1599930350 ECHO_REFERENCE Echo Reference
(8c74f766) 5:0 0 1.000000 yes no 0 POST_DSP_LOOPBACK Post DSP Loopback
(8a04af91) 4:0 0 1.000000 yes no 0 POST_MIX_LOOPBACK Post Mix Pre DSP Loopback
Attached clients:
ID pid uid
17 2904 656365
20 11846 299
26 16582 1000
Num active streams: 0
Last audio active time: 1152, 377855027
=== cras_test_client --dump_audio_thread ===
Audio Debug Stats:
-------------devices------------
-------------stream_dump------------
Audio Thread Event Log:
start at 3228
2020-09-12T19:24:46.207647349 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.207655138 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.216977479
2020-09-12T19:24:46.207659931 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.216977479
2020-09-12T19:24:46.207661287 cras atlog SLEEP sleep:000000000.009318831
2020-09-12T19:24:46.217093211 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.217136085 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.217134063
2020-09-12T19:24:46.217146009 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.217164291 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.217166971 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.217170717 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.217182098 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.227200223
2020-09-12T19:24:46.217188816 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.227200223
2020-09-12T19:24:46.217190793 cras atlog SLEEP sleep:000000000.010013351
2020-09-12T19:24:46.227393674 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.227459552 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.227455960
2020-09-12T19:24:46.227476799 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.227509080 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.227514126 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.227521145 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.227541515 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.236977319
2020-09-12T19:24:46.227553983 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.236977319
2020-09-12T19:24:46.227557896 cras atlog SLEEP sleep:000000000.009426795
2020-09-12T19:24:46.237106689 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.237173620 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.237169857
2020-09-12T19:24:46.237191136 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.237223660 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.237228497 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.237235445 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.237256353 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.247272348
2020-09-12T19:24:46.237268493 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.247272348
2020-09-12T19:24:46.237272339 cras atlog SLEEP sleep:000000000.010007342
2020-09-12T19:24:46.247390716 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.247457786 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.247454286
2020-09-12T19:24:46.247475277 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.247507446 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.247512377 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.247519234 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.247539889 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.256977159
2020-09-12T19:24:46.247551548 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.256977159
2020-09-12T19:24:46.247555270 cras atlog SLEEP sleep:000000000.009429036
2020-09-12T19:24:46.257030152 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.257095193 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.257091735
2020-09-12T19:24:46.257112919 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.257145460 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.257150285 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.257157181 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.257177993 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.267194152
2020-09-12T19:24:46.257190021 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.267194152
2020-09-12T19:24:46.257193702 cras atlog SLEEP sleep:000000000.010007548
2020-09-12T19:24:46.267312737 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.267377222 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.267373478
2020-09-12T19:24:46.267394930 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.267427376 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.267432480 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.267439498 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.267460646 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.277476786
2020-09-12T19:24:46.267472352 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.277476786
2020-09-12T19:24:46.267476068 cras atlog SLEEP sleep:000000000.010007865
2020-09-12T19:24:46.277608670 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.277678055 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.277674417
2020-09-12T19:24:46.277695402 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.277729087 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.277733912 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.277740869 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.277761438 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.286976919
2020-09-12T19:24:46.277773730 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.286976919
2020-09-12T19:24:46.277777453 cras atlog SLEEP sleep:000000000.009206792
2020-09-12T19:24:46.287099052 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.287160570 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.287157183
2020-09-12T19:24:46.287177293 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.287208479 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.287213403 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.287220106 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.287240733 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.297256892
2020-09-12T19:24:46.287252343 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.297256892
2020-09-12T19:24:46.287255932 cras atlog SLEEP sleep:000000000.010008030
2020-09-12T19:24:46.297296509 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.297335816 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.297334039
2020-09-12T19:24:46.297344733 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.297361905 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.297364300 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.297367718 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.297377703 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.307396179
2020-09-12T19:24:46.297383986 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.307396179
2020-09-12T19:24:46.297385696 cras atlog SLEEP sleep:000000000.010013815
2020-09-12T19:24:46.307588067 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.307629473 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.307627589
2020-09-12T19:24:46.307638295 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.307655062 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.307657417 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.307660699 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.307671080 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.316976679
2020-09-12T19:24:46.307677158 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.316976679
2020-09-12T19:24:46.307678884 cras atlog SLEEP sleep:000000000.009301145
2020-09-12T19:24:46.317040824 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.317081219 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.317079466
2020-09-12T19:24:46.317090107 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.317106630 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.317109057 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.317112328 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.317122059 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.327140625
2020-09-12T19:24:46.317127988 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.327140625
2020-09-12T19:24:46.317129713 cras atlog SLEEP sleep:000000000.010014233
2020-09-12T19:24:46.327230829 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.327278032 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.327276326
2020-09-12T19:24:46.327286509 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.327302435 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.327304707 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.327307958 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.327317504 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.337336206
2020-09-12T19:24:46.327323357 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.337336206
2020-09-12T19:24:46.327325078 cras atlog SLEEP sleep:000000000.010014451
2020-09-12T19:24:46.337502249 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.337549808 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.337547974
2020-09-12T19:24:46.337558516 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.337574314 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.337576681 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.337579926 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.337589529 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.346976439
2020-09-12T19:24:46.337595263 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.346976439
2020-09-12T19:24:46.337597008 cras atlog SLEEP sleep:000000000.009382777
2020-09-12T19:24:46.347080337 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.347118798 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.347116992
2020-09-12T19:24:46.347127533 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.347144045 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.347146511 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.347149856 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.347159821 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.357178471
2020-09-12T19:24:46.347165571 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.357178471
2020-09-12T19:24:46.347167303 cras atlog SLEEP sleep:000000000.010014513
2020-09-12T19:24:46.357377341 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.357433580 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.357430465
2020-09-12T19:24:46.357448736 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.357477954 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.357482799 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.357488322 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.357505879 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.366976279
2020-09-12T19:24:46.357516562 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.366976279
2020-09-12T19:24:46.357519447 cras atlog SLEEP sleep:000000000.009462783
2020-09-12T19:24:46.367035787 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.367089445 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.367086650
2020-09-12T19:24:46.367103293 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.367128247 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.367132098 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.367137843 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.367154298 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.377171435
2020-09-12T19:24:46.367163477 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.377171435
2020-09-12T19:24:46.367166276 cras atlog SLEEP sleep:000000000.010010632
2020-09-12T19:24:46.377214488 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.377268341 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.377265378
2020-09-12T19:24:46.377283801 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.377309878 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.377313829 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.377319323 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.377335800 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.387352995
2020-09-12T19:24:46.377345569 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.387352995
2020-09-12T19:24:46.377348422 cras atlog SLEEP sleep:000000000.010010201
2020-09-12T19:24:46.387383331 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.387426756 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.387424808
2020-09-12T19:24:46.387437031 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.387455887 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.387458620 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.387462445 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.387474040 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.396976039
2020-09-12T19:24:46.387480514 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.396976039
2020-09-12T19:24:46.387482505 cras atlog SLEEP sleep:000000000.009497400
2020-09-12T19:24:46.397077656 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.397113652 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.397112057
2020-09-12T19:24:46.397121647 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.397133698 cras atlog CAPTURE_WRITE stream:0 write:224 shm_fr:0
2020-09-12T19:24:46.397141503 cras atlog CAPTURE_WRITE stream:0 write:256 shm_fr:0
2020-09-12T19:24:46.397142968 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.397145852 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.397154620 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.407173530
2020-09-12T19:24:46.397159772 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.407173530
2020-09-12T19:24:46.397161289 cras atlog SLEEP sleep:000000000.010015177
2020-09-12T19:24:46.407366702 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.407405574 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.407404073
2020-09-12T19:24:46.407413389 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.407429486 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.407431682 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.407434556 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.407443021 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.417461878
2020-09-12T19:24:46.407448230 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.417461878
2020-09-12T19:24:46.407449751 cras atlog SLEEP sleep:000000000.010015093
2020-09-12T19:24:46.417527020 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.417563634 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.417562166
2020-09-12T19:24:46.417571396 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.417586501 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.417588563 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.417591452 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.417599924 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.426975799
2020-09-12T19:24:46.417605050 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.426975799
2020-09-12T19:24:46.417606567 cras atlog SLEEP sleep:000000000.009372177
2020-09-12T19:24:46.427141864 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.427178199 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.427176694
2020-09-12T19:24:46.427186199 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.427200632 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.427202646 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.427205518 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.427214219 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.437232900
2020-09-12T19:24:46.427219560 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.437232900
2020-09-12T19:24:46.427221074 cras atlog SLEEP sleep:000000000.010014763
2020-09-12T19:24:46.437394177 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.437429866 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.437428318
2020-09-12T19:24:46.437437741 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.437451915 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.437453998 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.437456885 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.437465397 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.446975639
2020-09-12T19:24:46.437470679 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.446975639
2020-09-12T19:24:46.437472194 cras atlog SLEEP sleep:000000000.009506390
2020-09-12T19:24:46.447036883 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.447071956 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.447070413
2020-09-12T19:24:46.447079869 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.447094198 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.447096232 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.447099133 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.447107631 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.457126574
2020-09-12T19:24:46.447112830 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.457126574
2020-09-12T19:24:46.447114362 cras atlog SLEEP sleep:000000000.010015173
2020-09-12T19:24:46.457228717 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.457263488 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.457262001
2020-09-12T19:24:46.457271184 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.457285642 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.457287709 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.457290569 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.457298862 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.467317825
2020-09-12T19:24:46.457304072 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.467317825
2020-09-12T19:24:46.457305611 cras atlog SLEEP sleep:000000000.010015188
2020-09-12T19:24:46.467433528 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.467480476 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.467478555
2020-09-12T19:24:46.467490184 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.467506764 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.467509507 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.467512985 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.467523685 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.476975399
2020-09-12T19:24:46.467529742 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.476975399
2020-09-12T19:24:46.467531578 cras atlog SLEEP sleep:000000000.009447392
2020-09-12T19:24:46.477063414 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.477109900 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.477107616
2020-09-12T19:24:46.477121124 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.477142574 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.477145806 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.477150196 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.477163444 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.487181169
2020-09-12T19:24:46.477171312 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.487181169
2020-09-12T19:24:46.477173657 cras atlog SLEEP sleep:000000000.010012054
2020-09-12T19:24:46.487225943 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.487291012 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.487287459
2020-09-12T19:24:46.487308426 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.487342041 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.487347062 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.487354106 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.487374968 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.497391089
2020-09-12T19:24:46.487387223 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.497391089
2020-09-12T19:24:46.487390972 cras atlog SLEEP sleep:000000000.010007306
2020-09-12T19:24:46.497441168 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.497522981 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.497519049
2020-09-12T19:24:46.497542358 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.497575521 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.497580589 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.497587901 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.497610001 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.506975159
2020-09-12T19:24:46.497622176 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.506975159
2020-09-12T19:24:46.497625769 cras atlog SLEEP sleep:000000000.009356452
2020-09-12T19:24:46.507102888 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.507169439 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.507165863
2020-09-12T19:24:46.507187930 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.507220745 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.507225735 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.507232600 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.507253132 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.517269307
2020-09-12T19:24:46.507265245 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.517269307
2020-09-12T19:24:46.507269018 cras atlog SLEEP sleep:000000000.010007457
2020-09-12T19:24:46.517390541 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.517476318 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.517472639
2020-09-12T19:24:46.517494430 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.517526567 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.517531457 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.517538564 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.517559485 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.526974999
2020-09-12T19:24:46.517571590 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.526974999
2020-09-12T19:24:46.517575331 cras atlog SLEEP sleep:000000000.009406867
2020-09-12T19:24:46.527030472 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.527100671 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.527097037
2020-09-12T19:24:46.527118912 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.527151963 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.527157018 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.527164033 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.527185346 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.537201392
2020-09-12T19:24:46.527197511 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.537201392
2020-09-12T19:24:46.527201178 cras atlog SLEEP sleep:000000000.010007299
2020-09-12T19:24:46.537248122 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.537313729 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.537310246
2020-09-12T19:24:46.537331053 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.537363677 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.537368487 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.537375380 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.537396255 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.547412428
2020-09-12T19:24:46.537407769 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.547412428
2020-09-12T19:24:46.537411449 cras atlog SLEEP sleep:000000000.010008134
2020-09-12T19:24:46.547576470 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.547644278 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.547640640
2020-09-12T19:24:46.547662159 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.547694214 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.547699464 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.547706461 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.547726963 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.556974759
2020-09-12T19:24:46.547739133 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.556974759
2020-09-12T19:24:46.547742838 cras atlog SLEEP sleep:000000000.009239081
2020-09-12T19:24:46.557036933 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.557107260 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.557103680
2020-09-12T19:24:46.557125304 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.557159384 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.557164348 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.557171394 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.557192887 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.567208896
2020-09-12T19:24:46.557205368 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.567208896
2020-09-12T19:24:46.557208985 cras atlog SLEEP sleep:000000000.010007019
2020-09-12T19:24:46.567343154 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.567412730 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.567409129
2020-09-12T19:24:46.567448452 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.567480750 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.567485949 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.567492932 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.567514133 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.576974599
2020-09-12T19:24:46.567526387 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.576974599
2020-09-12T19:24:46.567530068 cras atlog SLEEP sleep:000000000.009451668
2020-09-12T19:24:46.577026924 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.577087769 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.577083690
2020-09-12T19:24:46.577103833 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.577134490 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.577139151 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.577145843 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.577166417 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.587182500
2020-09-12T19:24:46.577177749 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.587182500
2020-09-12T19:24:46.577181329 cras atlog SLEEP sleep:000000000.010008190
2020-09-12T19:24:46.587283496 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.587351019 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.587347519
2020-09-12T19:24:46.587368556 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.587400834 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.587405671 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.587427699 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.587449144 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.597465254
2020-09-12T19:24:46.587461130 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.597465254
2020-09-12T19:24:46.587464777 cras atlog SLEEP sleep:000000000.010007549
2020-09-12T19:24:46.597535124 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.597603284 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.597599612
2020-09-12T19:24:46.597622084 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.597655397 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.597660160 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.597667140 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.597688093 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.606974359
2020-09-12T19:24:46.597700317 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.606974359
2020-09-12T19:24:46.597703985 cras atlog SLEEP sleep:000000000.009277451
2020-09-12T19:24:46.607040599 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.607087422 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.607085064
2020-09-12T19:24:46.607098633 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.607120413 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.607123488 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.607128081 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.607141068 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.617159093
2020-09-12T19:24:46.607148716 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.617159093
2020-09-12T19:24:46.607150910 cras atlog SLEEP sleep:000000000.010012630
2020-09-12T19:24:46.617180362 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.617219042 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.617217731
2020-09-12T19:24:46.617226372 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.617240682 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.617242858 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.617245889 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.617253906 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.627272748
2020-09-12T19:24:46.617259132 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.627272748
2020-09-12T19:24:46.617260462 cras atlog SLEEP sleep:000000000.010014902
2020-09-12T19:24:46.627379369 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.627417247 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.627416113
2020-09-12T19:24:46.627423119 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.627433537 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.627435085 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.627437226 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.627443672 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.637463046
2020-09-12T19:24:46.627447249 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.637463046
2020-09-12T19:24:46.627448374 cras atlog SLEEP sleep:000000000.010016836
2020-09-12T19:24:46.637516770 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.637546346 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.637544935
2020-09-12T19:24:46.637552469 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.637563674 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.637565176 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.637567353 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.637573761 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.646974039
2020-09-12T19:24:46.637577817 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.646974039
2020-09-12T19:24:46.637578893 cras atlog SLEEP sleep:000000000.009397412
2020-09-12T19:24:46.647084344 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.647114111 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.647112842
2020-09-12T19:24:46.647120040 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.647131804 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.647133392 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.647135602 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.647142207 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.657161677
2020-09-12T19:24:46.647146218 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.657161677
2020-09-12T19:24:46.647147365 cras atlog SLEEP sleep:000000000.010016608
2020-09-12T19:24:46.657327513 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.657357995 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.657356857
2020-09-12T19:24:46.657364128 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.657385057 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.657386802 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.657388984 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.657395423 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.667414770
2020-09-12T19:24:46.657399432 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.667414770
2020-09-12T19:24:46.657400576 cras atlog SLEEP sleep:000000000.010016418
2020-09-12T19:24:46.667471006 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.667503661 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.667502353
2020-09-12T19:24:46.667510453 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.667523273 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.667525066 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.667527556 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.667534805 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.676973799
2020-09-12T19:24:46.667539286 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.676973799
2020-09-12T19:24:46.667540575 cras atlog SLEEP sleep:000000000.009435725
2020-09-12T19:24:46.677130868 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.677167252 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.677165740
2020-09-12T19:24:46.677189439 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.677206782 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.677209323 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.677212825 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.677223087 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.687241499
2020-09-12T19:24:46.677229260 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.687241499
2020-09-12T19:24:46.677231026 cras atlog SLEEP sleep:000000000.010013950
2020-09-12T19:24:46.687408455 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.687477934 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.687474745
2020-09-12T19:24:46.687493330 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.687521629 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.687525939 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.687531953 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.687549766 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.696973639
2020-09-12T19:24:46.687560428 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.696973639
2020-09-12T19:24:46.687563548 cras atlog SLEEP sleep:000000000.009416237
2020-09-12T19:24:46.697090914 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.697156782 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.697153177
2020-09-12T19:24:46.697174051 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.697206435 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.697211207 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.697218121 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.697238851 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.707255018
2020-09-12T19:24:46.697251018 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.707255018
2020-09-12T19:24:46.697254610 cras atlog SLEEP sleep:000000000.010007447
2020-09-12T19:24:46.707304303 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.707379031 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.707375553
2020-09-12T19:24:46.707406623 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.707436087 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.707440319 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.707446551 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.707465593 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.716973479
2020-09-12T19:24:46.707476634 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.716973479
2020-09-12T19:24:46.707479792 cras atlog SLEEP sleep:000000000.009499969
2020-09-12T19:24:46.717107511 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.717167408 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.717164268
2020-09-12T19:24:46.717183479 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.717212390 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.717216709 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.717222809 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.717241235 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.727257764
2020-09-12T19:24:46.717251992 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.727257764
2020-09-12T19:24:46.717255223 cras atlog SLEEP sleep:000000000.010008828
2020-09-12T19:24:46.727396560 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.727454516 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.727451288
2020-09-12T19:24:46.727470077 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.727499226 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.727503702 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.727509798 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.727528045 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.736973319
2020-09-12T19:24:46.727538801 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.736973319
2020-09-12T19:24:46.727542030 cras atlog SLEEP sleep:000000000.009437530
2020-09-12T19:24:46.737017530 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.737078232 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.737075105
2020-09-12T19:24:46.737093784 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.737119362 cras atlog CAPTURE_WRITE stream:0 write:288 shm_fr:0
2020-09-12T19:24:46.737134487 cras atlog CAPTURE_WRITE stream:0 write:192 shm_fr:0
2020-09-12T19:24:46.737137534 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.737143801 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.737161997 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.747178692
2020-09-12T19:24:46.737172813 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.747178692
2020-09-12T19:24:46.737175966 cras atlog SLEEP sleep:000000000.010008921
2020-09-12T19:24:46.747223666 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.747285231 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.747281991
2020-09-12T19:24:46.747301176 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.747349319 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.747354606 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.747361230 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.747380123 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.757396917
2020-09-12T19:24:46.747391208 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.757396917
2020-09-12T19:24:46.747394480 cras atlog SLEEP sleep:000000000.010008748
2020-09-12T19:24:46.757595318 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.757642900 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.757640728
2020-09-12T19:24:46.757666151 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.757686651 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.757689768 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.757693910 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.757706439 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.766973079
2020-09-12T19:24:46.757714124 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.766973079
2020-09-12T19:24:46.757716275 cras atlog SLEEP sleep:000000000.009261002
2020-09-12T19:24:46.767093715 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.767137158 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.767135037
2020-09-12T19:24:46.767147606 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.767167048 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.767170040 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.767174077 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.767186077 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.777204217
2020-09-12T19:24:46.767193141 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.777204217
2020-09-12T19:24:46.767195310 cras atlog SLEEP sleep:000000000.010013097
2020-09-12T19:24:46.777235878 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.777280549 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.777278403
2020-09-12T19:24:46.777291469 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.777311346 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.777323682 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.777327758 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.777340336 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.787358288
2020-09-12T19:24:46.777347662 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.787358288
2020-09-12T19:24:46.777349725 cras atlog SLEEP sleep:000000000.010012820
2020-09-12T19:24:46.787451734 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.787496808 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.787494618
2020-09-12T19:24:46.787508230 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.787527936 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.787530840 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.787534933 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.787546737 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.796972839
2020-09-12T19:24:46.787553951 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.796972839
2020-09-12T19:24:46.787556127 cras atlog SLEEP sleep:000000000.009420901
2020-09-12T19:24:46.797108160 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.797156012 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.797153906
2020-09-12T19:24:46.797167380 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.797188051 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.797191024 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.797195149 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.797207733 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.807225826
2020-09-12T19:24:46.797214976 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.807225826
2020-09-12T19:24:46.797217166 cras atlog SLEEP sleep:000000000.010012879
2020-09-12T19:24:46.807343920 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.807411890 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.807408228
2020-09-12T19:24:46.807429707 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.807462151 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.807467172 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.807474172 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.807494852 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.816972679
2020-09-12T19:24:46.807507181 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.816972679
2020-09-12T19:24:46.807510877 cras atlog SLEEP sleep:000000000.009469049
2020-09-12T19:24:46.817026896 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.817097199 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.817093521
2020-09-12T19:24:46.817114783 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.817147543 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.817152635 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.817159654 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.817180921 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.827196940
2020-09-12T19:24:46.817192960 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.827196940
2020-09-12T19:24:46.817196626 cras atlog SLEEP sleep:000000000.010007436
2020-09-12T19:24:46.827346067 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.827410563 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.827407053
2020-09-12T19:24:46.827427591 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.827460061 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.827464946 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.827471802 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.827492890 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.836972519
2020-09-12T19:24:46.827504752 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.836972519
2020-09-12T19:24:46.827508460 cras atlog SLEEP sleep:000000000.009471226
2020-09-12T19:24:46.837074056 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.837139781 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.837135998
2020-09-12T19:24:46.837157598 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.837189754 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.837194563 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.837201452 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.837222215 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.847238307
2020-09-12T19:24:46.837234362 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.847238307
2020-09-12T19:24:46.837238035 cras atlog SLEEP sleep:000000000.010007403
2020-09-12T19:24:46.847409203 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.847476776 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.847473093
2020-09-12T19:24:46.847494348 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.847527462 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.847532485 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.847539535 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.847560057 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.856972359
2020-09-12T19:24:46.847572301 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.856972359
2020-09-12T19:24:46.847576020 cras atlog SLEEP sleep:000000000.009403519
2020-09-12T19:24:46.857096222 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.857164111 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.857160401
2020-09-12T19:24:46.857181684 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.857215467 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.857220292 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.857227262 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.857248041 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.867264129
2020-09-12T19:24:46.857260859 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.867264129
2020-09-12T19:24:46.857264561 cras atlog SLEEP sleep:000000000.010006950
2020-09-12T19:24:46.867394146 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.867455605 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.867451937
2020-09-12T19:24:46.867474030 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.867508030 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.867513028 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.867519846 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.867540770 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.876972199
2020-09-12T19:24:46.867553156 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.876972199
2020-09-12T19:24:46.867556846 cras atlog SLEEP sleep:000000000.009422533
2020-09-12T19:24:46.877011449 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.877058614 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.877056359
2020-09-12T19:24:46.877070365 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.877092541 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.877095731 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.877100174 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.877113438 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.887131254
2020-09-12T19:24:46.877121265 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.887131254
2020-09-12T19:24:46.877123564 cras atlog SLEEP sleep:000000000.010012166
2020-09-12T19:24:46.887349456 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.887399279 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.887396876
2020-09-12T19:24:46.887411072 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.887432992 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.887436072 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.887440555 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.887453896 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.897471681
2020-09-12T19:24:46.887461873 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.897471681
2020-09-12T19:24:46.887464236 cras atlog SLEEP sleep:000000000.010012007
2020-09-12T19:24:46.897504061 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.897550863 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.897548493
2020-09-12T19:24:46.897562629 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.897583273 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.897586490 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.897590924 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.897604203 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.906971959
2020-09-12T19:24:46.897612010 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.906971959
2020-09-12T19:24:46.897614293 cras atlog SLEEP sleep:000000000.009362147
2020-09-12T19:24:46.907023982 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.907070825 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.907068450
2020-09-12T19:24:46.907082835 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.907104572 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.907107600 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.907111975 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.907125231 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.917143076
2020-09-12T19:24:46.907132933 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.917143076
2020-09-12T19:24:46.907135327 cras atlog SLEEP sleep:000000000.010012318
2020-09-12T19:24:46.917282685 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.917367275 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.917364751
2020-09-12T19:24:46.917386697 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.917419372 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.917422588 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.917427129 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.917440992 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.927458520
2020-09-12T19:24:46.917448970 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.927458520
2020-09-12T19:24:46.917451367 cras atlog SLEEP sleep:000000000.010011777
2020-09-12T19:24:46.927653289 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.927703353 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.927701084
2020-09-12T19:24:46.927714655 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.927737220 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.927740577 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.927745004 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.927757859 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.936971719
2020-09-12T19:24:46.927765997 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.936971719
2020-09-12T19:24:46.927768361 cras atlog SLEEP sleep:000000000.009207938
2020-09-12T19:24:46.937108038 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.937180627 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.937175785
2020-09-12T19:24:46.937199798 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.937266159 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.937272223 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.937280464 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.937305901 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.947321812
2020-09-12T19:24:46.937319870 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.947321812
2020-09-12T19:24:46.937323709 cras atlog SLEEP sleep:000000000.010005598
2020-09-12T19:24:46.947448452 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.947515641 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.947511822
2020-09-12T19:24:46.947534023 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.947566326 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.947570983 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.947577776 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.947598609 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.956971559
2020-09-12T19:24:46.947610390 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.956971559
2020-09-12T19:24:46.947614076 cras atlog SLEEP sleep:000000000.009364593
2020-09-12T19:24:46.957020750 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.957085166 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.957081639
2020-09-12T19:24:46.957102550 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.957134953 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.957139804 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.957146819 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.957167457 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.967183405
2020-09-12T19:24:46.957179751 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.967183405
2020-09-12T19:24:46.957183364 cras atlog SLEEP sleep:000000000.010007041
2020-09-12T19:24:46.967326606 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.967395416 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.967391757
2020-09-12T19:24:46.967412855 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.967445116 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.967450038 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.967456999 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.967477866 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.976971399
2020-09-12T19:24:46.967490280 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.976971399
2020-09-12T19:24:46.967493999 cras atlog SLEEP sleep:000000000.009484650
2020-09-12T19:24:46.977195203 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.977290533 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.977286819
2020-09-12T19:24:46.977308125 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.977340586 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.977345380 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.977352503 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.977373503 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.987389461
2020-09-12T19:24:46.977385676 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.987389461
2020-09-12T19:24:46.977389370 cras atlog SLEEP sleep:000000000.010007258
2020-09-12T19:24:46.987510588 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.987577198 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.987573496
2020-09-12T19:24:46.987594609 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:46.987627745 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.987632809 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.987639783 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:46.987660244 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:46.996971239
2020-09-12T19:24:46.987672143 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:46.996971239
2020-09-12T19:24:46.987675822 cras atlog SLEEP sleep:000000000.009302513
2020-09-12T19:24:46.997009526 cras atlog WAKE num_fds:0
2020-09-12T19:24:46.997056789 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:46.997054451
2020-09-12T19:24:46.997068131 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:46.997090342 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:46.997093677 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:46.997098116 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:46.997111288 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.007129101
2020-09-12T19:24:46.997119393 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.007129101
2020-09-12T19:24:46.997121757 cras atlog SLEEP sleep:000000000.010012116
2020-09-12T19:24:47.007332011 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.007382908 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.007380546
2020-09-12T19:24:47.007394973 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.007416591 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.007419801 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.007424253 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.007437431 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.017455219
2020-09-12T19:24:47.007445461 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.017455219
2020-09-12T19:24:47.007447822 cras atlog SLEEP sleep:000000000.010011965
2020-09-12T19:24:47.017487013 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.017534687 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.017532377
2020-09-12T19:24:47.017545964 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:47.017567876 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.017571243 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.017575652 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.017588859 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.026970999
2020-09-12T19:24:47.017596792 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.026970999
2020-09-12T19:24:47.017599049 cras atlog SLEEP sleep:000000000.009376404
2020-09-12T19:24:47.027052712 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.027102204 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.027099886
2020-09-12T19:24:47.027113511 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.027135644 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.027138876 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.027143300 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.027156364 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.037174207
2020-09-12T19:24:47.027164285 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.037174207
2020-09-12T19:24:47.027166646 cras atlog SLEEP sleep:000000000.010012131
2020-09-12T19:24:47.037316312 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.037365195 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.037362835
2020-09-12T19:24:47.037377624 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.037399057 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.037402216 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.037406683 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.037419989 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.047437761
2020-09-12T19:24:47.037427943 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.047437761
2020-09-12T19:24:47.037430284 cras atlog SLEEP sleep:000000000.010012027
2020-09-12T19:24:47.047469322 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.047517427 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.047515116
2020-09-12T19:24:47.047528976 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:47.047551363 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.047554597 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.047559077 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.047572624 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.056970759
2020-09-12T19:24:47.047580523 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.056970759
2020-09-12T19:24:47.047582896 cras atlog SLEEP sleep:000000000.009392436
2020-09-12T19:24:47.056999840 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.057038589 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.057036448
2020-09-12T19:24:47.057048618 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.057067680 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.057070478 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.057074721 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.057087562 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.067105336
2020-09-12T19:24:47.057094542 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.067105336
2020-09-12T19:24:47.057096682 cras atlog SLEEP sleep:000000000.010012880
2020-09-12T19:24:47.067140363 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.067196369 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.067194081
2020-09-12T19:24:47.067207696 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.067229541 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.067232761 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.067237181 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.067250320 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.077268114
2020-09-12T19:24:47.067257674 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.077268114
2020-09-12T19:24:47.067259782 cras atlog SLEEP sleep:000000000.010012465
2020-09-12T19:24:47.077291134 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.077326898 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.077325532
2020-09-12T19:24:47.077335612 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.077348748 cras atlog CAPTURE_WRITE stream:0 write:352 shm_fr:0
2020-09-12T19:24:47.077354847 cras atlog CAPTURE_WRITE stream:0 write:128 shm_fr:0
2020-09-12T19:24:47.077356114 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.077358710 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.077366210 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.087385297
2020-09-12T19:24:47.077370546 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.087385297
2020-09-12T19:24:47.077371797 cras atlog SLEEP sleep:000000000.010015928
2020-09-12T19:24:47.087400047 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.087429118 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.087428037
2020-09-12T19:24:47.087434920 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.087445363 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.087446793 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.087448709 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.087454407 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.096970439
2020-09-12T19:24:47.087457987 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.096970439
2020-09-12T19:24:47.087458980 cras atlog SLEEP sleep:000000000.009513399
2020-09-12T19:24:47.097057409 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.097079866 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.097078822
2020-09-12T19:24:47.097084452 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.097093736 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.097094894 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.097096610 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.097102259 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.107121567
2020-09-12T19:24:47.097105316 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.107121567
2020-09-12T19:24:47.097106239 cras atlog SLEEP sleep:000000000.010017137
2020-09-12T19:24:47.107135269 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.107167450 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.107166453
2020-09-12T19:24:47.107172997 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.107183243 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.107184628 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.107186470 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.107191856 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.117211478
2020-09-12T19:24:47.107195415 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.117211478
2020-09-12T19:24:47.107196343 cras atlog SLEEP sleep:000000000.010016994
2020-09-12T19:24:47.117257372 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.117284654 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.117283610
2020-09-12T19:24:47.117289973 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.117299768 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.117301210 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.117303044 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.117308491 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.127328042
2020-09-12T19:24:47.117311903 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.127328042
2020-09-12T19:24:47.117312864 cras atlog SLEEP sleep:000000000.010017057
2020-09-12T19:24:47.127473995 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.127502749 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.127501767
2020-09-12T19:24:47.127507840 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:47.127518217 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.127519571 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.127521385 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.127526675 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.136970119
2020-09-12T19:24:47.127530078 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.136970119
2020-09-12T19:24:47.127531036 cras atlog SLEEP sleep:000000000.009440965
2020-09-12T19:24:47.137148742 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.137177254 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.137176276
2020-09-12T19:24:47.137182549 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.137192484 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.137193834 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.137195667 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.137201161 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.147220695
2020-09-12T19:24:47.137204633 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.147220695
2020-09-12T19:24:47.137205592 cras atlog SLEEP sleep:000000000.010016983
2020-09-12T19:24:47.147275475 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.147306776 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.147305533
2020-09-12T19:24:47.147313334 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.147325390 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.147327115 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.147329444 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.147336312 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.157355603
2020-09-12T19:24:47.147340460 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.157355603
2020-09-12T19:24:47.147341700 cras atlog SLEEP sleep:000000000.010016304
2020-09-12T19:24:47.157513563 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.157545836 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.157544598
2020-09-12T19:24:47.157552408 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:47.157564697 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.157566298 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.157568643 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.157575504 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.166969879
2020-09-12T19:24:47.157579784 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.166969879
2020-09-12T19:24:47.157581006 cras atlog SLEEP sleep:000000000.009391266
2020-09-12T19:24:47.167036484 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.167079227 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.167077279
2020-09-12T19:24:47.167088584 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.167106749 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.167109448 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.167112798 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.167139877 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.177157798
2020-09-12T19:24:47.167146125 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.177157798
2020-09-12T19:24:47.167148048 cras atlog SLEEP sleep:000000000.010013412
2020-09-12T19:24:47.177262174 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.177317031 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.177314272
2020-09-12T19:24:47.177330792 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.177355957 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.177359652 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.177365071 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.177381453 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.187398583
2020-09-12T19:24:47.177390871 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.187398583
2020-09-12T19:24:47.177393706 cras atlog SLEEP sleep:000000000.010010397
2020-09-12T19:24:47.187509977 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.187577337 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.187573680
2020-09-12T19:24:47.187595006 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:47.187626954 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.187631795 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.187638687 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.187658916 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.196969639
2020-09-12T19:24:47.187671150 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.196969639
2020-09-12T19:24:47.187674791 cras atlog SLEEP sleep:000000000.009301946
2020-09-12T19:24:47.197015594 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.197075632 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.197072042
2020-09-12T19:24:47.197091608 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.197144802 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.197149936 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.197156604 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.197177875 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.207193963
2020-09-12T19:24:47.197189301 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.207193963
2020-09-12T19:24:47.197192880 cras atlog SLEEP sleep:000000000.010008147
2020-09-12T19:24:47.207245276 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.207313609 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.207309998
2020-09-12T19:24:47.207331515 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.207364678 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.207369569 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.207376580 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.207397598 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.217413615
2020-09-12T19:24:47.207409900 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.217413615
2020-09-12T19:24:47.207413594 cras atlog SLEEP sleep:000000000.010007160
2020-09-12T19:24:47.217559742 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.217629498 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.217625865
2020-09-12T19:24:47.217648039 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:47.217680722 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.217685752 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.217692757 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.217713605 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.226969399
2020-09-12T19:24:47.217725789 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.226969399
2020-09-12T19:24:47.217729483 cras atlog SLEEP sleep:000000000.009247050
2020-09-12T19:24:47.227122988 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.227192588 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.227188897
2020-09-12T19:24:47.227211309 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.227243194 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.227247993 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.227254968 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.227275804 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.237291801
2020-09-12T19:24:47.227288045 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.237291801
2020-09-12T19:24:47.227291772 cras atlog SLEEP sleep:000000000.010007209
2020-09-12T19:24:47.237407514 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.237469130 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.237465747
2020-09-12T19:24:47.237485972 cras atlog READ_AUDIO dev:7 hw_level:528 read:481
2020-09-12T19:24:47.237516768 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.237521594 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.237528393 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.237549291 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.246969239
2020-09-12T19:24:47.237560837 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.246969239
2020-09-12T19:24:47.237564429 cras atlog SLEEP sleep:000000000.009411874
2020-09-12T19:24:47.247027604 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.247121443 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.247117720
2020-09-12T19:24:47.247139589 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.247171933 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.247176894 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.247183926 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:0
2020-09-12T19:24:47.247204441 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.257220653
2020-09-12T19:24:47.247216636 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.257220653
2020-09-12T19:24:47.247220362 cras atlog SLEEP sleep:000000000.010007499
2020-09-12T19:24:47.257372678 cras atlog WAKE num_fds:0
2020-09-12T19:24:47.257440789 cras atlog READ_AUDIO_TSTAMP dev:7 tstamp: 19:24:47.257437186
2020-09-12T19:24:47.257458288 cras atlog READ_AUDIO dev:7 hw_level:480 read:480
2020-09-12T19:24:47.257491194 cras atlog CAPTURE_WRITE stream:0 write:480 shm_fr:0
2020-09-12T19:24:47.257496010 cras atlog READ_AUDIO_DONE read_remainder:0
2020-09-12T19:24:47.257502905 cras atlog CAPTURE_POST stream:0 thresh:480 rd_buf:1
2020-09-12T19:24:47.257523561 cras atlog STREAM_SLEEP_TIME id:0 wake: 19:24:47.266969079
2020-09-12T19:24:47.257535413 cras atlog DEV_SLEEP_TIME dev:7 wake: 19:24:47.266969079
2020-09-12T19:24:47.257539107 cras atlog SLEEP sleep:000000000.009437118