-
Notifications
You must be signed in to change notification settings - Fork 0
/
kodi.log
2611 lines (2611 loc) · 466 KB
/
kodi.log
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
2020-09-02 22:11:50.828 T:2973080672 NOTICE: -----------------------------------------------------------------------
2020-09-02 22:11:50.828 T:2973080672 NOTICE: Starting Kodi (18.7 Git:20200528-2c5354e70a). Platform: Linux ARM 32-bit
2020-09-02 22:11:50.828 T:2973080672 NOTICE: Using Release Kodi x32 build
2020-09-02 22:11:50.828 T:2973080672 NOTICE: Kodi compiled 2020-06-12 by GCC 8.3.0 for Linux ARM 32-bit version 4.18.20 (266772)
2020-09-02 22:11:50.828 T:2973080672 NOTICE: Running on Raspbian GNU/Linux 10 (buster), kernel: Linux ARM 32-bit version 5.4.51-v7l+
2020-09-02 22:11:50.836 T:2973080672 NOTICE: FFmpeg version/source: 4.0.4-Kodi
2020-09-02 22:11:50.836 T:2973080672 NOTICE: Host CPU: ARMv7 Processor rev 3 (v7l), 4 cores available
2020-09-02 22:11:50.836 T:2973080672 NOTICE: ARM Features: Neon enabled
2020-09-02 22:11:50.836 T:2973080672 NOTICE: special://xbmc/ is mapped to: /usr/share/kodi
2020-09-02 22:11:50.836 T:2973080672 NOTICE: special://xbmcbin/ is mapped to: /usr/lib/arm-linux-gnueabihf/kodi
2020-09-02 22:11:50.836 T:2973080672 NOTICE: special://xbmcbinaddons/ is mapped to: /usr/lib/arm-linux-gnueabihf/kodi/addons
2020-09-02 22:11:50.836 T:2973080672 NOTICE: special://masterprofile/ is mapped to: /home/pi/.kodi/userdata
2020-09-02 22:11:50.836 T:2973080672 NOTICE: special://envhome/ is mapped to: /home/pi
2020-09-02 22:11:50.836 T:2973080672 NOTICE: special://home/ is mapped to: /home/pi/.kodi
2020-09-02 22:11:50.836 T:2973080672 NOTICE: special://temp/ is mapped to: /home/pi/.kodi/temp
2020-09-02 22:11:50.836 T:2973080672 NOTICE: special://logpath/ is mapped to: /home/pi/.kodi/temp
2020-09-02 22:11:50.836 T:2973080672 NOTICE: The executable running is: /usr/lib/arm-linux-gnueabihf/kodi/kodi.bin_v8
2020-09-02 22:11:50.836 T:2973080672 NOTICE: Local hostname: raspberrypi
2020-09-02 22:11:50.836 T:2973080672 NOTICE: Log File is located: /home/pi/.kodi/temp/kodi.log
2020-09-02 22:11:50.836 T:2973080672 NOTICE: -----------------------------------------------------------------------
2020-09-02 22:11:50.844 T:2973080672 INFO: loading settings
2020-09-02 22:11:50.846 T:2973080672 NOTICE: special://profile/ is mapped to: special://masterprofile/
2020-09-02 22:11:50.865 T:2973080672 DEBUG: CSkinSettings: no <skinsettings> tag found
2020-09-02 22:11:50.866 T:2973080672 NOTICE: Loaded settings file from special://xbmc/system/advancedsettings.xml
2020-09-02 22:11:50.866 T:2973080672 NOTICE: Contents of special://xbmc/system/advancedsettings.xml are...
<?xml version="1.0" encoding="UTF-8" ?>
<advancedsettings>
<fanartres>720</fanartres>
<imageres>540</imageres>
<video>
<busydialogdelayms>750</busydialogdelayms>
</video>
<samba>
<clienttimeout>30</clienttimeout>
</samba>
<cache>
<memorysize>31457280</memorysize>
</cache>
</advancedsettings>
2020-09-02 22:11:50.866 T:2973080672 WARNING: CSettingsManager: missing version attribute
2020-09-02 22:11:50.867 T:2973080672 NOTICE: No settings file to load (special://masterprofile/advancedsettings.xml)
2020-09-02 22:11:50.867 T:2973080672 NOTICE: Default Video Player: VideoPlayer
2020-09-02 22:11:50.867 T:2973080672 NOTICE: Default Audio Player: paplayer
2020-09-02 22:11:50.867 T:2973080672 NOTICE: Enabled debug logging due to GUI setting (2)
2020-09-02 22:11:50.867 T:2973080672 NOTICE: Log level changed to "LOG_LEVEL_DEBUG_FREEMEM"
2020-09-02 22:11:50.868 T:2973080672 INFO: creating subdirectories
2020-09-02 22:11:50.868 T:2973080672 INFO: userdata folder: special://masterprofile/
2020-09-02 22:11:50.868 T:2973080672 INFO: recording folder:
2020-09-02 22:11:50.868 T:2973080672 INFO: screenshots folder:
2020-09-02 22:11:50.997 T:2973080672 NOTICE: PulseAudio: Server found running - will try to use Pulse
2020-09-02 22:11:50.998 T:2896163024 DEBUG: Thread Lirc start, auto delete: false
2020-09-02 22:11:50.999 T:2896163024 INFO: Loading special://xbmc/system/Lircmap.xml
2020-09-02 22:11:51.001 T:2896163024 INFO: * Adding remote mapping for device 'mceusb'
2020-09-02 22:11:51.001 T:2896163024 INFO: * Adding remote mapping for device 'XboxDVDDongle'
2020-09-02 22:11:51.001 T:2896163024 INFO: * Adding remote mapping for device 'Microsoft_Xbox'
2020-09-02 22:11:51.001 T:2896163024 INFO: * Adding remote mapping for device 'PinnacleSysPCTVRemote'
2020-09-02 22:11:51.001 T:2896163024 INFO: * Adding remote mapping for device 'anysee'
2020-09-02 22:11:51.001 T:2896163024 INFO: * Adding remote mapping for device 'iMON-PAD'
2020-09-02 22:11:51.001 T:2896163024 INFO: * Adding remote mapping for device 'Antec_Veris_RM200'
2020-09-02 22:11:51.001 T:2896163024 INFO: * Adding remote mapping for device 'MCE_via_iMON'
2020-09-02 22:11:51.001 T:2896163024 INFO: * Adding remote mapping for device 'TwinHanRemote'
2020-09-02 22:11:51.002 T:2896163024 INFO: * Adding remote mapping for device 'linux-input-layer'
2020-09-02 22:11:51.002 T:2896163024 INFO: * Linking remote mapping for 'linux-input-layer' to 'cx23885_remote'
2020-09-02 22:11:51.002 T:2896163024 INFO: * Adding remote mapping for device 'mediacenter'
2020-09-02 22:11:51.002 T:2896163024 INFO: * Adding remote mapping for device 'devinput'
2020-09-02 22:11:51.002 T:2896163024 INFO: * Adding remote mapping for device 'devinput-32'
2020-09-02 22:11:51.002 T:2896163024 INFO: * Adding remote mapping for device 'devinput-64'
2020-09-02 22:11:51.002 T:2896163024 DEBUG: CIRTranslator::Load - no userdata Lircmap.xml found, skipping
2020-09-02 22:11:51.007 T:2963271888 DEBUG: Thread libinput start, auto delete: false
2020-09-02 22:11:51.013 T:2973080672 NOTICE: Running database version Addons27
2020-09-02 22:11:51.110 T:2973080672 DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.'
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: audioencoder.kodi.builtin.aac v1.0.0 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: audioencoder.kodi.builtin.wma v1.0.0 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: game.controller.default v1.0.8 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: game.controller.snes v1.0.8 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: inputstream.adaptive v2.4.4 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: inputstream.rtmp v2.0.6 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.global.audioengine v1.0.1 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.global.filesystem v1.0.2 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.global.general v1.0.3 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.global.gui v5.12.0 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.global.main v1.0.14 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.global.network v1.0.0 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.instance.audiodecoder v2.0.0 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.instance.audioencoder v2.0.0 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.instance.game v1.1.0 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.instance.imagedecoder v2.0.0 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.instance.inputstream v2.0.8 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.instance.peripheral v1.3.7 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.instance.pvr v5.10.3 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.instance.screensaver v2.0.0 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.instance.vfs v2.0.0 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.instance.videocodec v1.0.1 installed
2020-09-02 22:11:51.110 T:2973080672 NOTICE: ADDON: kodi.binary.instance.visualization v2.0.1 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: kodi.resource v1.0.0 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: metadata.album.universal v3.1.3 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: metadata.artists.universal v4.3.3 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: metadata.common.allmusic.com v3.2.2 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: metadata.common.fanart.tv v3.6.3 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: metadata.common.imdb.com v3.1.5 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: metadata.common.musicbrainz.org v2.2.4 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: metadata.common.theaudiodb.com v2.0.3 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: metadata.common.themoviedb.org v3.2.3 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: metadata.local v1.0.0 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: metadata.themoviedb.org v5.2.1 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: metadata.tvshows.themoviedb.org v3.5.3 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: peripheral.joystick v1.4.8 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: plugin.video.netflix v1.8.0 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: pvr.iptvsimple v3.8.8 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: repository.castagnait v1.0.1 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: repository.xbmc.org v3.1.6 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: resource.images.weathericons.default v1.1.8 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: resource.language.en_gb v2.0.1 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: resource.uisounds.kodi v1.0.0 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: screensaver.xbmc.builtin.black v1.0.33 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: screensaver.xbmc.builtin.dim v1.0.59 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: script.module.addon.signals v0.0.5 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: script.module.certifi v2019.9.11 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: script.module.chardet v3.0.4 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: script.module.future v0.17.1 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: script.module.idna v2.8 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: script.module.inputstreamhelper v0.5.0 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: script.module.pil v1.1.7 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: script.module.pycryptodome v3.4.3 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: script.module.requests v2.22.0 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: script.module.urllib3 v1.25.6 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: service.xbmc.versioncheck v0.5.6 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: skin.estouchy v2.0.28 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: skin.estuary v2.0.27 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: webinterface.default v18.x-2.4.6 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: xbmc.addon v18.7 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: xbmc.core v0.1.0 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: xbmc.gui v5.14.0 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: xbmc.json v10.3.0 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: xbmc.metadata v2.1.0 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: xbmc.python v2.26.0 installed
2020-09-02 22:11:51.111 T:2973080672 NOTICE: ADDON: xbmc.webinterface v1.0.0 installed
2020-09-02 22:11:51.133 T:2973080672 DEBUG: CFavourites::Load - no system favourites found, skipping
2020-09-02 22:11:51.133 T:2973080672 DEBUG: CFavourites::Load - no userdata favourites found, skipping
2020-09-02 22:11:51.135 T:2973080672 DEBUG: DBus method call to org.freedesktop.ConsoleKit.Manager.CanStop at /org/freedesktop/ConsoleKit/Manager of org.freedesktop.ConsoleKit failed: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.ConsoleKit was not provided by any .service files
2020-09-02 22:11:51.136 T:2973080672 INFO: Selected Logind/UPower as PowerSyscall
2020-09-02 22:11:51.136 T:2973080672 ERROR: DBus error: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.UPower was not provided by any .service files
2020-09-02 22:11:51.136 T:2973080672 INFO: LogindUPowerSyscall - UPower not found, battery information will not be available
2020-09-02 22:11:51.159 T:2973080672 DEBUG: LogindUPowerSyscall - inhibit lock taken, fd 26
2020-09-02 22:11:51.161 T:2973080672 DEBUG: DBus method call to org.freedesktop.UPower.EnumerateDevices at /org/freedesktop/UPower of org.freedesktop.UPower failed: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.UPower was not provided by any .service files
2020-09-02 22:11:51.162 T:2952786128 DEBUG: Thread ActiveAE start, auto delete: false
2020-09-02 22:11:51.162 T:2942300368 DEBUG: Thread AESink start, auto delete: false
2020-09-02 22:11:51.164 T:2952786128 DEBUG: PulseAudio: Context authorizing
2020-09-02 22:11:51.165 T:2952786128 DEBUG: PulseAudio: Context setting name
2020-09-02 22:11:51.166 T:2952786128 DEBUG: PulseAudio: Context ready
2020-09-02 22:11:51.167 T:2952786128 WARNING: Pulseaudio module module-allow-passthrough not loaded - opening PT devices might fail
2020-09-02 22:11:51.167 T:2931814608 DEBUG: PulseAudio: Found Sound Blaster Play! 2 Analog Stereo with devicestring alsa_output.usb-Creative_Technology_Ltd_Sound_Blaster_Play__2_000000000000-00.analog-stereo
2020-09-02 22:11:51.168 T:2931814608 DEBUG: PulseAudio: Skipped Built-in Audio Analog Mono with devicestring alsa_output.platform-bcm2835_audio.analog-mono
2020-09-02 22:11:51.168 T:2931814608 DEBUG: PulseAudio: Skipped Built-in Audio Analog Mono with devicestring alsa_output.platform-bcm2835_audio.analog-mono.2
2020-09-02 22:11:51.168 T:2931814608 DEBUG: PulseAudio: Found RTP Multicast with devicestring rtp
2020-09-02 22:11:51.168 T:2931814608 DEBUG: PulseAudio: Found Simultaneous output to Sound Blaster Play! 2 Analog Stereo, Built-in Audio Analog Mono, Built-in Audio Analog Mono with devicestring combined
2020-09-02 22:11:51.168 T:2952786128 NOTICE: Found 2 Lists of Devices
2020-09-02 22:11:51.169 T:2952786128 NOTICE: Enumerated PI devices:
2020-09-02 22:11:51.169 T:2952786128 NOTICE: Device 1
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_deviceName : HDMI
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_displayName : HDMI
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_displayNameExtra:
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_deviceType : AE_DEVTYPE_HDMI
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_channels : FL, FR
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_sampleRates : 8000,11025,16000,22050,24000,32000,44100,48000,88200,96000,176400,192000
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_S32NE,AE_FMT_S16NE,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,AE_FMT_S32NEP,AE_FMT_S16NEP,AE_FMT_RAW
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_streamTypes : STREAM_TYPE_AC3,STREAM_TYPE_EAC3,STREAM_TYPE_DTSHD_CORE,STREAM_TYPE_DTS_2048,STREAM_TYPE_DTS_1024,STREAM_TYPE_DTS_512
2020-09-02 22:11:51.169 T:2952786128 NOTICE: Device 2
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_deviceName : Analogue
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_displayName : Analogue
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_displayNameExtra:
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_deviceType : AE_DEVTYPE_PCM
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_channels : FL, FR
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_sampleRates : 48000
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,AE_FMT_S32NEP,AE_FMT_S16NEP
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_streamTypes : No passthrough capabilities
2020-09-02 22:11:51.169 T:2952786128 NOTICE: Device 3
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_deviceName : Both
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_displayName : HDMI and Analogue
2020-09-02 22:11:51.169 T:2952786128 NOTICE: m_displayNameExtra:
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_deviceType : AE_DEVTYPE_PCM
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_channels : FL, FR
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_sampleRates : 48000
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_S32LE,AE_FMT_S16LE,AE_FMT_FLOATP,AE_FMT_S32NEP,AE_FMT_S16NEP
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_streamTypes : No passthrough capabilities
2020-09-02 22:11:51.170 T:2952786128 NOTICE: Enumerated PULSE devices:
2020-09-02 22:11:51.170 T:2952786128 NOTICE: Device 1
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_deviceName : Default
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_displayName : Default
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_displayNameExtra: Default Output Device (PULSEAUDIO)
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_deviceType : AE_DEVTYPE_PCM
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_channels : FL, FR
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_dataFormats : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_streamTypes : No passthrough capabilities
2020-09-02 22:11:51.170 T:2952786128 NOTICE: Device 2
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_deviceName : alsa_output.usb-Creative_Technology_Ltd_Sound_Blaster_Play__2_000000000000-00.analog-stereo
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_displayName : Sound Blaster Play! 2 Analog Stereo
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_displayNameExtra: Speakers (PULSEAUDIO)
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_deviceType : AE_DEVTYPE_PCM
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_channels : FL, FR
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_dataFormats : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_streamTypes : No passthrough capabilities
2020-09-02 22:11:51.170 T:2952786128 NOTICE: Device 3
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_deviceName : rtp
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_displayName : RTP Multicast
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_displayNameExtra: RTP Multicast (PULSEAUDIO)
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_deviceType : AE_DEVTYPE_PCM
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_channels : FL, FR
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_dataFormats : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_streamTypes : No passthrough capabilities
2020-09-02 22:11:51.170 T:2952786128 NOTICE: Device 4
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_deviceName : combined
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_displayName : Simultaneous output to Sound Blaster Play! 2 Analog Stereo, Built-in Audio Analog Mono, Built-in Audio Analog Mono
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_displayNameExtra: Simultaneous output to Sound Blaster Play! 2 Analog Stereo, Built-in Audio Analog Mono, Built-in Audio Analog Mono (PULSEAUDIO)
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_deviceType : AE_DEVTYPE_PCM
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_channels : FL, FR
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000,384000
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_dataFormats : AE_FMT_U8,AE_FMT_S16NE,AE_FMT_S24NE3,AE_FMT_S24NE4,AE_FMT_S32NE,AE_FMT_FLOAT
2020-09-02 22:11:51.170 T:2952786128 NOTICE: m_streamTypes : No passthrough capabilities
2020-09-02 22:11:51.171 T:2942300368 INFO: CActiveAESink::OpenSink - initialize sink
2020-09-02 22:11:51.171 T:2942300368 DEBUG: CActiveAESink::OpenSink - trying to open device PULSE:alsa_output.usb-Creative_Technology_Ltd_Sound_Blaster_Play__2_000000000000-00.analog-stereo
2020-09-02 22:11:51.173 T:2942300368 DEBUG: PulseAudio: Context authorizing
2020-09-02 22:11:51.174 T:2942300368 DEBUG: PulseAudio: Context setting name
2020-09-02 22:11:51.175 T:2942300368 DEBUG: PulseAudio: Context ready
2020-09-02 22:11:51.177 T:2942300368 DEBUG: PulseAudio: Stream ready
2020-09-02 22:11:51.177 T:2942300368 NOTICE: PulseAudio: Opened device alsa_output.usb-Creative_Technology_Ltd_Sound_Blaster_Play__2_000000000000-00.analog-stereo in pcm mode with Buffersize 150 ms
2020-09-02 22:11:51.178 T:2942300368 DEBUG: CActiveAESink::OpenSink - PULSE Initialized:
2020-09-02 22:11:51.178 T:2942300368 DEBUG: Output Device : Sound Blaster Play! 2 Analog Stereo
2020-09-02 22:11:51.178 T:2942300368 DEBUG: Sample Rate : 44100
2020-09-02 22:11:51.178 T:2942300368 DEBUG: Sample Format : AE_FMT_FLOAT
2020-09-02 22:11:51.178 T:2942300368 DEBUG: Channel Count : 2
2020-09-02 22:11:51.178 T:2942300368 DEBUG: Channel Layout: FL, FR
2020-09-02 22:11:51.178 T:2942300368 DEBUG: Frames : 2205
2020-09-02 22:11:51.178 T:2942300368 DEBUG: Frame Size : 8
2020-09-02 22:11:51.208 T:2963271888 DEBUG: CLibInputHandler::DeviceAdded - keyboard type device added: Creative Technology Ltd Sound Blaster Play! 2 Consumer Control (event0)
2020-09-02 22:11:51.257 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - could not get key repeat for event0 (Function not implemented)
2020-09-02 22:11:51.257 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - delay: 400ms repeat: 80ms for Creative Technology Ltd Sound Blaster Play! 2 Consumer Control (event0)
2020-09-02 22:11:51.259 T:2931814608 DEBUG: Sink changed
2020-09-02 22:11:51.265 T:2973080672 INFO: CKeyboardLayoutManager: loading keyboard layouts from special://xbmc/system/keyboardlayouts...
2020-09-02 22:11:51.269 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Danish QWERTY" successfully loaded
2020-09-02 22:11:51.270 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak QWERTZ" successfully loaded
2020-09-02 22:11:51.270 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak QWERTY" successfully loaded
2020-09-02 22:11:51.270 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak ABC" successfully loaded
2020-09-02 22:11:51.271 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Chinese BasePY" successfully loaded
2020-09-02 22:11:51.272 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Chinese BaiduPY" successfully loaded
2020-09-02 22:11:51.273 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Thai Kedmanee" successfully loaded
2020-09-02 22:11:51.274 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Hebrew QWERTY" successfully loaded
2020-09-02 22:11:51.274 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Hebrew ABC" successfully loaded
2020-09-02 22:11:51.274 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Polish QWERTY" successfully loaded
2020-09-02 22:11:51.275 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Italian QWERTY" successfully loaded
2020-09-02 22:11:51.276 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Russian ЙЦУКЕН" successfully loaded
2020-09-02 22:11:51.276 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Russian АБВ" successfully loaded
2020-09-02 22:11:51.276 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Turkish QWERTY" successfully loaded
2020-09-02 22:11:51.277 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Romanian QWERTY" successfully loaded
2020-09-02 22:11:51.278 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "English QWERTY" successfully loaded
2020-09-02 22:11:51.278 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "English AZERTY" successfully loaded
2020-09-02 22:11:51.278 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "English ABC" successfully loaded
2020-09-02 22:11:51.279 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Czech QWERTZ" successfully loaded
2020-09-02 22:11:51.280 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Spanish QWERTY" successfully loaded
2020-09-02 22:11:51.280 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Arabic QWERTY" successfully loaded
2020-09-02 22:11:51.281 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "French AZERTY" successfully loaded
2020-09-02 22:11:51.281 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Korean ㄱㄴㄷ" successfully loaded
2020-09-02 22:11:51.282 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Lithuanian AZERTY" successfully loaded
2020-09-02 22:11:51.282 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Lithuanian QWERTY" successfully loaded
2020-09-02 22:11:51.283 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Hungarian QWERTZ" successfully loaded
2020-09-02 22:11:51.283 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Icelandic QWERTY" successfully loaded
2020-09-02 22:11:51.284 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Swedish QWERTY" successfully loaded
2020-09-02 22:11:51.285 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Norwegian QWERTY" successfully loaded
2020-09-02 22:11:51.285 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovenian QWERTZ" successfully loaded
2020-09-02 22:11:51.286 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Silesian QWERTY" successfully loaded
2020-09-02 22:11:51.286 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Croatian QWERTY" successfully loaded
2020-09-02 22:11:51.287 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "German QWERTZ" successfully loaded
2020-09-02 22:11:51.287 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "German ABC" successfully loaded
2020-09-02 22:11:51.288 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Portuguese (Portugal) QWERTY" successfully loaded
2020-09-02 22:11:51.288 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Greek QWERTY" successfully loaded
2020-09-02 22:11:51.289 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Bulgarian ЯВЕРТЪ" successfully loaded
2020-09-02 22:11:51.289 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Bulgarian АБВ" successfully loaded
2020-09-02 22:11:51.290 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Ukrainian ЙЦУКЕН" successfully loaded
2020-09-02 22:11:51.291 T:2973080672 DEBUG: CKeyboardLayoutManager: keyboard layout "Ukrainian АБВ" successfully loaded
2020-09-02 22:11:51.298 T:2973080672 DEBUG: Selected UDisks2 as storage provider
2020-09-02 22:11:51.300 T:2973080672 DEBUG: UDisks2: Daemon version 2.8.1
2020-09-02 22:11:51.300 T:2973080672 DEBUG: UDisks2: Querying available devices
2020-09-02 22:11:51.307 T:2963271888 DEBUG: CLibInputHandler::DeviceAdded - keyboard type device added: Creative Technology Ltd Sound Blaster Play! 2 (event1)
2020-09-02 22:11:51.307 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - could not get key repeat for event1 (Function not implemented)
2020-09-02 22:11:51.307 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - delay: 400ms repeat: 80ms for Creative Technology Ltd Sound Blaster Play! 2 (event1)
2020-09-02 22:11:51.328 T:2973080672 DEBUG: DllBcm: Using omx system library
2020-09-02 22:11:51.330 T:2973080672 DEBUG: SECTION:LoadDLL(libopenmaxil.so)
2020-09-02 22:11:51.333 T:2973080672 DEBUG: Loading: libopenmaxil.so
2020-09-02 22:11:51.349 T:2973080672 DEBUG: CSettingsManager: requested setting (videoscreen.limitgui) was not found.
2020-09-02 22:11:51.349 T:2973080672 NOTICE: Raspberry PI firmware version: Aug 19 2020 17:38:16
Copyright (c) 2012 Broadcom
version e90cba19a98a0d1f2ef086b9cafcbca00778f094 (clean) (release) (start)
2020-09-02 22:11:51.349 T:2973080672 NOTICE: ARM mem: 948MB GPU mem: 76MB MPG2:0 WVC1:0
2020-09-02 22:11:51.349 T:2973080672 NOTICE: Config:
arm_freq=1500
audio_pwm_mode=514
config_hdmi_boost=5
core_freq=500
core_freq_min=200
disable_commandline_tags=2
disable_l2cache=1
disable_splash=1
display_hdmi_rotate=-1
display_lcd_rotate=-1
enable_gic=1
force_eeprom_read=1
force_pwm_open=1
framebuffer_ignore_alpha=1
framebuffer_swap=1
gpu_freq=500
gpu_freq_min=250
init_uart_clock=0x2dc6c00
lcd_framerate=60
mask_gpu_interrupt0=1024
mask_gpu_interrupt1=0x10000
max_framebuffers=2
over_voltage_avs=-20000
pause_burst_frames=1
program_serial_random=1
second_boot=1
total_mem=8192
hdmi_force_cec_address:0=65535
hdmi_force_cec_address:1=65535
hdmi_pixel_freq_limit:0=0x11e1a300
hdmi_pixel_freq_limit:1=0x11e1a300
2020-09-02 22:11:51.349 T:2973080672 NOTICE: Config:
device_tree=-
overlay_prefix=overlays/
hdmi_cvt:0=
hdmi_cvt:1=
hdmi_edid_filename:0=
hdmi_edid_filename:1=
hdmi_timings:0=
hdmi_timings:1=
2020-09-02 22:11:51.350 T:2973080672 INFO: RetroPlayer[PROCESS]: Registering process control for GBM
2020-09-02 22:11:51.350 T:2973080672 INFO: RetroPlayer[RENDER]: Registering renderer factory for OpenGLES
2020-09-02 22:11:51.367 T:2963271888 DEBUG: CLibInputHandler::DeviceAdded - keyboard type device added: Microsoft® LifeCam Cinema(TM): (event2)
2020-09-02 22:11:51.367 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - could not get key repeat for event2 (Function not implemented)
2020-09-02 22:11:51.367 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - delay: 400ms repeat: 80ms for Microsoft® LifeCam Cinema(TM): (event2)
2020-09-02 22:11:51.427 T:2963271888 DEBUG: CLibInputHandler::DeviceAdded - keyboard type device added: UltraBoard Keyboard Keyboard (event3)
2020-09-02 22:11:51.427 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - delay: 250ms repeat: 33ms for UltraBoard Keyboard Keyboard (event3)
2020-09-02 22:11:51.467 T:2963271888 DEBUG: CLibInputHandler::DeviceAdded - pointer type device added: UltraBoard Keyboard Mouse (event4)
2020-09-02 22:11:51.467 T:2963271888 DEBUG: CLibInputHandler::DeviceAdded - keyboard type device added: UltraBoard Keyboard Consumer Control (event5)
2020-09-02 22:11:51.467 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - could not get key repeat for event5 (Function not implemented)
2020-09-02 22:11:51.467 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - delay: 400ms repeat: 80ms for UltraBoard Keyboard Consumer Control (event5)
2020-09-02 22:11:51.517 T:2963271888 DEBUG: CLibInputHandler::DeviceAdded - keyboard type device added: UltraBoard Keyboard System Control (event6)
2020-09-02 22:11:51.517 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - could not get key repeat for event6 (Function not implemented)
2020-09-02 22:11:51.517 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - delay: 400ms repeat: 80ms for UltraBoard Keyboard System Control (event6)
2020-09-02 22:11:51.557 T:2963271888 DEBUG: CLibInputHandler::DeviceAdded - keyboard type device added: MX Master 3 Keyboard (event16)
2020-09-02 22:11:51.557 T:2963271888 DEBUG: CLibInputKeyboard::GetRepeat - delay: 250ms repeat: 33ms for MX Master 3 Keyboard (event16)
2020-09-02 22:11:51.597 T:2963271888 DEBUG: CLibInputHandler::DeviceAdded - pointer type device added: MX Master 3 Mouse (event17)
2020-09-02 22:11:51.979 T:2973080672 DEBUG: CDRMUtils::FindConnector - found connector: 54
2020-09-02 22:11:51.979 T:2973080672 DEBUG: CDRMUtils::OpenDrm - opened device: /dev/dri/card1 using module: vc4
2020-09-02 22:11:52.096 T:2973080672 DEBUG: CDRMUtils::FindConnector - found connector: 54
2020-09-02 22:11:52.096 T:2973080672 DEBUG: CDRMUtils::FindEncoder - found encoder: 53
2020-09-02 22:11:52.096 T:2973080672 DEBUG: CDRMUtils::FindCrtc - found crtc: 52
2020-09-02 22:11:52.097 T:2973080672 DEBUG: CDRMUtils::FindPlane - found video plane 31
2020-09-02 22:11:52.098 T:2973080672 WARNING: CDRMUtils::FindPlane - could not find plane
2020-09-02 22:11:52.098 T:2973080672 DEBUG: CDRMUtils::FindPlane - found gui plane 38
2020-09-02 22:11:52.099 T:2973080672 DEBUG: CDRMUtils::FindPreferredMode - found preferred mode: 3840x2160 @ 30 Hz
2020-09-02 22:11:52.099 T:2973080672 WARNING: CDRMUtils::InitDrm - failed to set drm master, will try to authorize instead: Permission denied
2020-09-02 22:11:52.099 T:2973080672 NOTICE: CDRMUtils::InitDrm - successfully authorized drm magic
2020-09-02 22:11:52.100 T:2973080672 DEBUG: CDRMAtomic::InitDrm - initialized atomic DRM
2020-09-02 22:11:52.579 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 0, event.motion.y: 0
2020-09-02 22:11:53.116 T:2973080672 DEBUG: Previous line repeats 16 times.
2020-09-02 22:11:53.116 T:2973080672 DEBUG: CWinSystemGbm::InitWindowSystem - initialized DRM
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 3840x2160 @ 30.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 3840x2160 @ 29.970032 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 3840x2160 @ 25.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 3840x2160 @ 24.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 3840x2160 @ 23.976025 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1200 with 1920x1200 @ 60.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 1920x1080 @ 60.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 1920x1080 @ 59.940063 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 1920x1080i @ 60.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 1920x1080i @ 59.940063 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 1920x1080 @ 50.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 1920x1080i @ 50.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 1920x1080 @ 24.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1920x1080 with 1920x1080 @ 23.976025 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1600x1200 with 1600x1200 @ 60.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1680x1050 with 1680x1050 @ 60.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1280x1024 with 1280x1024 @ 75.000000 Hz
2020-09-02 22:11:53.117 T:2973080672 NOTICE: Found resolution 1280x1024 with 1280x1024 @ 60.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 1280x800 with 1280x800 @ 60.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 1152x864 with 1152x864 @ 75.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 1280x720 with 1280x720 @ 60.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 1280x720 with 1280x720 @ 59.940063 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 1280x720 with 1280x720 @ 50.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 1024x768 with 1024x768 @ 75.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 1024x768 with 1024x768 @ 60.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 800x600 with 800x600 @ 75.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 800x600 with 800x600 @ 60.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 720x576 with 720x576 @ 50.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 720x576 with 720x576i @ 50.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 720x480 with 720x480 @ 59.940063 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 720x480 with 720x480 @ 60.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 720x480 with 720x480i @ 59.940063 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 720x480 with 720x480i @ 60.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 640x480 with 640x480 @ 75.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 640x480 with 640x480 @ 60.000000 Hz
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Previous line repeats 1 times.
2020-09-02 22:11:53.118 T:2973080672 NOTICE: Found resolution 720x400 with 720x400 @ 70.000000 Hz
2020-09-02 22:11:53.121 T:2973080672 NOTICE: EGL_VERSION = 1.4
2020-09-02 22:11:53.121 T:2973080672 NOTICE: EGL_VENDOR = Mesa Project
2020-09-02 22:11:53.121 T:2973080672 NOTICE: EGL_EXTENSIONS = EGL_ANDROID_blob_cache EGL_EXT_buffer_age EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_KHR_cl_event2 EGL_KHR_config_attribs EGL_KHR_create_context EGL_KHR_create_context_no_error EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_colorspace EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image EGL_KHR_image_base EGL_KHR_image_pixmap EGL_KHR_no_config_context EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_EXT_pixel_format_float EGL_KHR_wait_sync EGL_MESA_configless_context EGL_MESA_drm_image EGL_MESA_image_dma_buf_export EGL_MESA_query_driver EGL_WL_bind_wayland_display
2020-09-02 22:11:53.122 T:2973080672 NOTICE: EGL_CLIENT_EXTENSIONS = EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_EXT_platform_base EGL_KHR_client_get_all_proc_addresses EGL_EXT_client_extensions EGL_KHR_debug EGL_EXT_platform_wayland EGL_EXT_platform_x11 EGL_MESA_platform_gbm EGL_MESA_platform_surfaceless EGL_EXT_platform_device
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL Config Attributes:
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_BUFFER_SIZE: 32
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_ALPHA_SIZE: 8
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_BLUE_SIZE: 8
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_GREEN_SIZE: 8
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_RED_SIZE: 8
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_DEPTH_SIZE: 16
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_STENCIL_SIZE: 0
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_CONFIG_CAVEAT: 0x3038
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_CONFIG_ID: 10
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_LEVEL: 0
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_MAX_PBUFFER_HEIGHT: 4096
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_MAX_PBUFFER_PIXELS: 0
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_MAX_PBUFFER_WIDTH: 4096
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_NATIVE_RENDERABLE: 1
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_NATIVE_VISUAL_ID: 875713089
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_NATIVE_VISUAL_TYPE: 0x3038
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_SAMPLES: 0
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_SAMPLE_BUFFERS: 0
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_SURFACE_TYPE: 4
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_TRANSPARENT_TYPE: 0x3038
2020-09-02 22:11:53.122 T:2973080672 DEBUG: EGL_TRANSPARENT_BLUE_VALUE: 0
2020-09-02 22:11:53.123 T:2973080672 DEBUG: EGL_TRANSPARENT_GREEN_VALUE: 0
2020-09-02 22:11:53.123 T:2973080672 DEBUG: EGL_TRANSPARENT_RED_VALUE: 0
2020-09-02 22:11:53.123 T:2973080672 DEBUG: EGL_BIND_TO_TEXTURE_RGB: 0
2020-09-02 22:11:53.123 T:2973080672 DEBUG: EGL_BIND_TO_TEXTURE_RGBA: 0
2020-09-02 22:11:53.123 T:2973080672 DEBUG: EGL_MIN_SWAP_INTERVAL: 1
2020-09-02 22:11:53.123 T:2973080672 DEBUG: EGL_MAX_SWAP_INTERVAL: 1
2020-09-02 22:11:53.123 T:2973080672 DEBUG: EGL_LUMINANCE_SIZE: 0
2020-09-02 22:11:53.123 T:2973080672 DEBUG: EGL_ALPHA_MASK_SIZE: 0
2020-09-02 22:11:53.123 T:2973080672 DEBUG: EGL_COLOR_BUFFER_TYPE: 0x308e
2020-09-02 22:11:53.123 T:2973080672 DEBUG: EGL_RENDERABLE_TYPE: 77
2020-09-02 22:11:53.123 T:2973080672 DEBUG: EGL_CONFORMANT: 77
2020-09-02 22:11:53.128 T:2973080672 NOTICE: Checking resolution 16
2020-09-02 22:11:53.128 T:2973080672 DEBUG: OnLostDevice - notify display change event
2020-09-02 22:11:53.128 T:2973080672 WARNING: CGBMUtils::DestroySurface - surface already destroyed
2020-09-02 22:11:53.128 T:2973080672 DEBUG: CWinSystemGbmEGLContext::DestroyWindow - deinitialized GBM
2020-09-02 22:11:53.158 T:2973080672 DEBUG: CDRMUtils::SetMode - found crtc mode: 3840x2160 @ 30 Hz
2020-09-02 22:11:53.158 T:2973080672 DEBUG: CGBMUtils::CreateSurface - created surface with size 1920x1080
2020-09-02 22:11:53.180 T:2973080672 DEBUG: CWinSystemGbmEGLContext::CreateNewWindow - initialized GBM
2020-09-02 22:11:53.180 T:2973080672 NOTICE: GL_VENDOR = Broadcom
2020-09-02 22:11:53.180 T:2973080672 NOTICE: GL_RENDERER = V3D 4.2
2020-09-02 22:11:53.180 T:2973080672 NOTICE: GL_VERSION = OpenGL ES 3.1 Mesa 19.3.2
2020-09-02 22:11:53.180 T:2973080672 NOTICE: GL_SHADING_LANGUAGE_VERSION = OpenGL ES GLSL ES 3.10
2020-09-02 22:11:53.180 T:2973080672 NOTICE: GL_EXTENSIONS = GL_EXT_blend_minmax GL_EXT_multi_draw_arrays GL_EXT_texture_format_BGRA8888 GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_element_index_uint GL_OES_fbo_render_mipmap GL_OES_mapbuffer GL_OES_rgb8_rgba8 GL_OES_standard_derivatives GL_OES_stencil8 GL_OES_texture_3D GL_OES_texture_float GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_npot GL_OES_vertex_half_float GL_EXT_texture_sRGB_decode GL_OES_EGL_image GL_OES_depth_texture GL_OES_packed_depth_stencil GL_EXT_texture_type_2_10_10_10_REV GL_OES_get_program_binary GL_APPLE_texture_max_level GL_EXT_discard_framebuffer GL_EXT_read_format_bgra GL_EXT_frag_depth GL_NV_fbo_color_attachments GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_vertex_array_object GL_EXT_occlusion_query_boolean GL_EXT_texture_rg GL_EXT_unpack_subimage GL_NV_draw_buffers GL_NV_read_buffer GL_NV_read_depth GL_NV_read_depth_stencil GL_NV_read_stencil GL_EXT_draw_buffers GL_EXT_map_buffer_range GL_KHR_debug GL_KHR_texture_compression_astc_ldr GL_OES_depth_texture_cube_map GL_OES_required_internalformat GL_OES_surfaceless_context GL_EXT_color_buffer_float GL_EXT_sRGB_write_control GL_EXT_separate_shader_objects GL_EXT_shader_implicit_conversions GL_EXT_shader_integer_mix GL_EXT_base_instance GL_EXT_compressed_ETC1_RGB8_sub_texture GL_EXT_draw_elements_base_vertex GL_EXT_primitive_bounding_box GL_EXT_shader_io_blocks GL_EXT_texture_border_clamp GL_EXT_texture_norm16 GL_KHR_context_flush_control GL_NV_image_formats GL_OES_draw_elements_base_vertex GL_OES_primitive_bounding_box GL_OES_shader_io_blocks GL_OES_texture_border_clamp GL_OES_texture_stencil8 GL_OES_texture_storage_multisample_2d_array GL_EXT_buffer_storage GL_EXT_float_blend GL_KHR_no_error GL_KHR_texture_compression_astc_sliced_3d GL_OES_EGL_image_external_essl3 GL_OES_shader_image_atomic GL_MESA_shader_integer_functions GL_KHR_parallel_shader_compile GL_MESA_framebuffer_flip_y GL_EXT_texture_query_lod
2020-09-02 22:11:53.264 T:2973080672 DEBUG: OnLostDevice - notify display change event
2020-09-02 22:11:53.294 T:2973080672 DEBUG: CDRMUtils::SetMode - found crtc mode: 3840x2160 @ 30 Hz
2020-09-02 22:11:53.294 T:2973080672 INFO: GLES: Maximum texture width: 4096
2020-09-02 22:11:53.294 T:2973080672 DEBUG: guilib: Fill viewport on change for solving rendering passes
2020-09-02 22:11:53.726 T:2973080672 DEBUG: EGL Debugging:
Error: EGL_BAD_SURFACE
Command: eglSwapBuffers
Type: EGL_DEBUG_MSG_ERROR_KHR
Message: dri2_swap_buffers
2020-09-02 22:11:53.745 T:2973080672 DEBUG: CRBP::OpenDisplay device:0 m_display:10000080 (0)
2020-09-02 22:11:53.745 T:2973080672 INFO: load keymapping
2020-09-02 22:11:53.748 T:2973080672 INFO: Loading special://xbmc/system/keymaps/appcommand.xml
2020-09-02 22:11:53.748 T:2973080672 INFO: Loading special://xbmc/system/keymaps/customcontroller.AppleRemote.xml
2020-09-02 22:11:53.749 T:2973080672 INFO: Loading special://xbmc/system/keymaps/customcontroller.Harmony.xml
2020-09-02 22:11:53.751 T:2973080672 INFO: Loading special://xbmc/system/keymaps/gamepad.xml
2020-09-02 22:11:53.753 T:2973080672 INFO: Loading special://xbmc/system/keymaps/joystick.xml
2020-09-02 22:11:53.754 T:2973080672 INFO: Loading special://xbmc/system/keymaps/keyboard.xml
2020-09-02 22:11:53.759 T:2973080672 INFO: Loading special://xbmc/system/keymaps/mouse.xml
2020-09-02 22:11:53.759 T:2973080672 INFO: Loading special://xbmc/system/keymaps/remote.xml
2020-09-02 22:11:53.762 T:2973080672 INFO: Loading special://xbmc/system/keymaps/touchscreen.xml
2020-09-02 22:11:53.764 T:2973080672 INFO: GUI format 1920x1080, Display 3840x2160 @ 30.000000 Hz
2020-09-02 22:11:53.764 T:2973080672 INFO: CLangInfo: loading resource.language.en_gb language information...
2020-09-02 22:11:53.767 T:2973080672 DEBUG: trying to set locale to en_US.UTF-8
2020-09-02 22:11:53.768 T:2973080672 INFO: global locale set to en_US.UTF-8
2020-09-02 22:11:53.768 T:2973080672 INFO: CLangInfo: loading resource.language.en_gb language strings...
2020-09-02 22:11:53.790 T:2973080672 DEBUG: LocalizeStrings: loaded 4029 strings from file resource://resource.language.en_gb/strings.po
2020-09-02 22:11:53.798 T:2973080672 DEBUG: LocalizeStrings: loaded 1 strings from file /usr/share/kodi/addons/audioencoder.kodi.builtin.aac/resources/language/English/strings.po
2020-09-02 22:11:53.800 T:2973080672 DEBUG: LocalizeStrings: loaded 1 strings from file /usr/share/kodi/addons/audioencoder.kodi.builtin.wma/resources/language/English/strings.po
2020-09-02 22:11:53.802 T:2973080672 DEBUG: LocalizeStrings: loaded 18 strings from file /usr/share/kodi/addons/game.controller.default/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.803 T:2973080672 DEBUG: LocalizeStrings: loaded 13 strings from file /usr/share/kodi/addons/game.controller.snes/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.805 T:2973080672 DEBUG: LocalizeStrings: loaded 24 strings from file /usr/share/kodi/addons/inputstream.adaptive/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.805 T:2973080672 DEBUG: LocalizeStrings: loaded 17 strings from file /home/pi/.kodi/addons/metadata.album.universal/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.806 T:2973080672 DEBUG: LocalizeStrings: loaded 32 strings from file /home/pi/.kodi/addons/metadata.artists.universal/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.808 T:2973080672 DEBUG: LocalizeStrings: loaded 9 strings from file /home/pi/.kodi/addons/metadata.themoviedb.org/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.809 T:2973080672 DEBUG: LocalizeStrings: loaded 11 strings from file /home/pi/.kodi/addons/metadata.tvshows.themoviedb.org/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.810 T:2973080672 DEBUG: LocalizeStrings: loaded 9 strings from file /usr/share/kodi/addons/peripheral.joystick/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.811 T:2973080672 DEBUG: LocalizeStrings: loaded 22 strings from file /usr/share/kodi/addons/pvr.iptvsimple/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.815 T:2973080672 DEBUG: LocalizeStrings: loaded 1 strings from file /usr/share/kodi/addons/screensaver.xbmc.builtin.dim/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.817 T:2973080672 DEBUG: LocalizeStrings: loaded 24 strings from file /home/pi/.kodi/addons/service.xbmc.versioncheck/resources/language/English/strings.po
2020-09-02 22:11:53.820 T:2973080672 DEBUG: LocalizeStrings: loaded 83 strings from file /home/pi/.kodi/addons/script.module.inputstreamhelper/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.823 T:2973080672 DEBUG: LocalizeStrings: loaded 246 strings from file /home/pi/.kodi/addons/plugin.video.netflix/resources/language/resource.language.en_gb/strings.po
2020-09-02 22:11:53.824 T:2495467728 DEBUG: Thread JobWorker start, auto delete: true
2020-09-02 22:11:53.824 T:2495467728 DEBUG: Initialize, updating databases...
2020-09-02 22:11:53.825 T:2495467728 NOTICE: Running database version Addons27
2020-09-02 22:11:53.826 T:2495467728 NOTICE: Running database version ViewModes6
2020-09-02 22:11:53.827 T:2495467728 NOTICE: Running database version Textures13
2020-09-02 22:11:53.829 T:2495467728 NOTICE: Running database version MyMusic72
2020-09-02 22:11:53.833 T:2495467728 NOTICE: Running database version MyVideos116
2020-09-02 22:11:53.835 T:2495467728 NOTICE: Running database version TV32
2020-09-02 22:11:53.836 T:2495467728 NOTICE: Running database version Epg12
2020-09-02 22:11:53.836 T:2495467728 DEBUG: Initialize, updating databases... DONE
2020-09-02 22:11:53.878 T:2973080672 NOTICE: start dvd mediatype detection
2020-09-02 22:11:53.878 T:2964394192 DEBUG: Thread DetectDVDMedia start, auto delete: false
2020-09-02 22:11:53.878 T:2973080672 DEBUG: DPMS: supported power-saving modes: OFF
2020-09-02 22:11:53.878 T:2964394192 DEBUG: Compiled with libcdio Version 0.20000
2020-09-02 22:11:53.880 T:2964394192 DEBUG: Thread DetectDVDMedia 2964394192 terminating
2020-09-02 22:11:53.945 T:2973080672 INFO: Unloading old skin ...
2020-09-02 22:11:53.947 T:2973080672 NOTICE: load skin from: /usr/share/kodi/addons/skin.estuary (version: 2.0.27)
2020-09-02 22:11:53.947 T:2973080672 INFO: load fonts for skin...
2020-09-02 22:11:53.949 T:2973080672 INFO: Loading skin includes from /usr/share/kodi/addons/skin.estuary/xml/Includes.xml
2020-09-02 22:11:53.998 T:2973080672 INFO: Loading fonts from /usr/share/kodi/addons/skin.estuary/xml/Font.xml
2020-09-02 22:11:54.024 T:2973080672 DEBUG: LocalizeStrings: loaded 140 strings from file /usr/share/kodi/addons/skin.estuary/language/resource.language.en_gb/strings.po
2020-09-02 22:11:54.024 T:2973080672 INFO: load new skin...
2020-09-02 22:11:54.024 T:2973080672 INFO: Loading custom window XMLs from skin path /usr/share/kodi/addons/skin.estuary/xml
2020-09-02 22:11:54.031 T:2973080672 DEBUG: Load Skin XML: 7.67ms
2020-09-02 22:11:54.031 T:2973080672 INFO: initialize new skin...
2020-09-02 22:11:54.032 T:2973080672 DEBUG: guilib: Fill viewport on change for solving rendering passes
2020-09-02 22:11:54.032 T:2973080672 INFO: Loading skin file: Custom_1109_TopBarOverlay.xml, load type: LOAD_ON_GUI_INIT
2020-09-02 22:11:54.035 T:2973080672 INFO: Loading skin file: DialogNotification.xml, load type: LOAD_ON_GUI_INIT
2020-09-02 22:11:54.036 T:2973080672 INFO: Loading skin file: DialogSeekBar.xml, load type: LOAD_ON_GUI_INIT
2020-09-02 22:11:54.053 T:2973080672 DEBUG: OpenBundle - Opened bundle /usr/share/kodi/addons/skin.estuary/media/Textures.xbt
2020-09-02 22:11:54.053 T:2973080672 INFO: Loading skin file: DialogExtendedProgressBar.xml, load type: LOAD_ON_GUI_INIT
2020-09-02 22:11:54.055 T:2973080672 INFO: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT
2020-09-02 22:11:54.056 T:2973080672 INFO: Loading skin file: DialogVolumeBar.xml, load type: LOAD_ON_GUI_INIT
2020-09-02 22:11:54.057 T:2973080672 INFO: Loading skin file: Pointer.xml, load type: LOAD_ON_GUI_INIT
2020-09-02 22:11:54.058 T:2973080672 INFO: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT
2020-09-02 22:11:54.061 T:2973080672 INFO: Loading resource://resource.uisounds.kodi/sounds.xml
2020-09-02 22:11:54.137 T:2973080672 INFO: skin loaded...
2020-09-02 22:11:54.137 T:2973080672 DEBUG: Activating window ID: 12997
2020-09-02 22:11:54.137 T:2973080672 DEBUG: ------ Window Init () ------
2020-09-02 22:11:54.137 T:2973080672 DEBUG: Activating window ID: 12999
2020-09-02 22:11:54.137 T:2973080672 DEBUG: ------ Window Init (Startup.xml) ------
2020-09-02 22:11:54.138 T:2973080672 INFO: Loading skin file: Startup.xml, load type: LOAD_EVERY_TIME
2020-09-02 22:11:54.138 T:2973080672 DEBUG: Activating window ID: 10000
2020-09-02 22:11:54.138 T:2973080672 DEBUG: ------ Window Deinit (Startup.xml) ------
2020-09-02 22:11:54.138 T:2973080672 DEBUG: ------ Window Init (Home.xml) ------
2020-09-02 22:11:54.138 T:2973080672 INFO: Loading skin file: Home.xml, load type: KEEP_IN_MEMORY
2020-09-02 22:11:54.225 T:2973080672 DEBUG: CDirectoryProvider[addons://]: refreshing..
2020-09-02 22:11:54.225 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing..
2020-09-02 22:11:54.226 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing..
2020-09-02 22:11:54.226 T:2481602768 DEBUG: Thread JobWorker start, auto delete: true
2020-09-02 22:11:54.226 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/game/]: refreshing..
2020-09-02 22:11:54.226 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing..
2020-09-02 22:11:54.226 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing..
2020-09-02 22:11:54.226 T:2473210064 DEBUG: Thread JobWorker start, auto delete: true
2020-09-02 22:11:54.226 T:2973080672 DEBUG: CDirectoryProvider[library://video/]: refreshing..
2020-09-02 22:11:54.226 T:2973080672 DEBUG: CDirectoryProvider[sources://video/]: refreshing..
2020-09-02 22:11:54.226 T:2973080672 DEBUG: CDirectoryProvider[special://videoplaylists/]: refreshing..
2020-09-02 22:11:54.226 T:2973080672 DEBUG: CDirectoryProvider[favourites://]: refreshing..
2020-09-02 22:11:54.226 T:2973080672 DEBUG: CDirectoryProvider[sources://pictures/]: refreshing..
2020-09-02 22:11:54.227 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/game/]: refreshing..
2020-09-02 22:11:54.242 T:2495467728 DEBUG: CAddonMgr::GetAvailableUpdates took 16 ms
2020-09-02 22:11:54.263 T:2973080672 DEBUG: JSONRPC: JSON schema type definition references an unknown type Setting.Details.Setting
2020-09-02 22:11:54.263 T:2973080672 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList"
2020-09-02 22:11:54.263 T:2973080672 INFO: JSONRPC: Adding type "Setting.Details.SettingList" to list of incomplete definitions (waiting for "Setting.Details.Setting")
2020-09-02 22:11:54.264 T:2973080672 INFO: JSONRPC: Resolving incomplete types/methods referencing Setting.Details.Setting
2020-09-02 22:11:54.271 T:2473210064 DEBUG: CMultiPathDirectory::GetDirectory(multipath://special%3a%2f%2fprofile%2fplaylists%2fvideo/special%3a%2f%2fprofile%2fplaylists%2fmixed/)
2020-09-02 22:11:54.271 T:2473210064 DEBUG: Getting Directory (special://profile/playlists/video)
2020-09-02 22:11:54.272 T:2473210064 DEBUG: Getting Directory (special://profile/playlists/mixed)
2020-09-02 22:11:54.272 T:2473210064 DEBUG: CMultiPathDirectory::MergeItems, items = 0
2020-09-02 22:11:54.273 T:2473210064 DEBUG: CRecentlyAddedJob::UpdateMusic() - Running RecentlyAdded home screen update
2020-09-02 22:11:54.281 T:2473210064 DEBUG: GetRecentlyAddedAlbumSongs() query: SELECT songview.*, songartistview.* FROM (SELECT idAlbum FROM album ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN songview ON songview.idAlbum = recentalbums.idAlbum JOIN songartistview ON songview.idSong = songartistview.idSong ORDER BY songview.idAlbum DESC, songview.idSong, songartistview.idRole, songartistview.iOrder
2020-09-02 22:11:54.282 T:2473210064 DEBUG: GetRecentlyAddedAlbums query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM album WHERE strAlbum != '' ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN albumview ON albumview.idAlbum = recentalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.idAlbum desc, albumartistview.iOrder
2020-09-02 22:11:54.284 T:2473210064 DEBUG: CRecentlyAddedJob::UpdateVideos() - Running RecentlyAdded home screen update
2020-09-02 22:11:54.294 T:2973080672 INFO: JSONRPC v10.3.0: Successfully initialized
2020-09-02 22:11:54.296 T:2973080672 DEBUG: LoadMappings - loaded node "Motorola Nyxboard Hybrid"
2020-09-02 22:11:54.296 T:2973080672 DEBUG: LoadMappings - loaded node "CEC Adapter"
2020-09-02 22:11:54.296 T:2973080672 DEBUG: LoadMappings - loaded node "Pulse-Eight CEC Adapter"
2020-09-02 22:11:54.296 T:2973080672 DEBUG: LoadMappings - loaded node "iMON HID device"
2020-09-02 22:11:54.296 T:2973080672 DEBUG: LoadMappings - loaded node "WETEK Play remote"
2020-09-02 22:11:54.296 T:2973080672 DEBUG: LoadMappings - loaded node ""
2020-09-02 22:11:54.300 T:2473210064 DEBUG: CRecentlyAddedJob::UpdateTotal() - Running RecentlyAdded home screen update
2020-09-02 22:11:54.301 T:2973080672 DEBUG: Add-on bus: Registering add-on peripheral.joystick
2020-09-02 22:11:54.301 T:2973080672 DEBUG: PERIPHERAL - CreateAddon - creating peripheral add-on instance 'Joystick Support'
2020-09-02 22:11:54.301 T:2973080672 DEBUG: ADDON: Dll Initializing - Joystick Support
2020-09-02 22:11:54.301 T:2973080672 DEBUG: SECTION:LoadDLL(/usr/lib/arm-linux-gnueabihf/kodi/addons/peripheral.joystick/peripheral.joystick.so.1.4.8)
2020-09-02 22:11:54.301 T:2973080672 DEBUG: Loading: /usr/lib/arm-linux-gnueabihf/kodi/addons/peripheral.joystick/peripheral.joystick.so.1.4.8
2020-09-02 22:11:54.303 T:2473210064 DEBUG: GetArtistsByWhere query: SELECT COUNT(DISTINCT artistview.idArtist) FROM artistview WHERE (EXISTS (SELECT 1 FROM song_artist WHERE song_artist.idArtist = artistview.idArtist AND song_artist.idRole = 1) OR EXISTS (SELECT 1 FROM album_artist WHERE album_artist.idArtist = artistview.idArtist)) AND (artistview.strArtist != '')
2020-09-02 22:11:54.324 T:2973080672 DEBUG: AddOnLog: Joystick Support: Loaded 14 joystick families with 97 total joysticks
2020-09-02 22:11:54.324 T:2973080672 DEBUG: Calling TransferSettings for: Joystick Support
2020-09-02 22:11:54.325 T:2973080672 DEBUG: CAddonSettings[peripheral.joystick]: loading setting definitions
2020-09-02 22:11:54.325 T:2973080672 INFO: AddOnLog: Joystick Support: Enabling joystick interface "linux"
2020-09-02 22:11:54.325 T:2455900368 DEBUG: Thread PeripBusUSBUdev start, auto delete: false
2020-09-02 22:11:54.325 T:2455900368 DEBUG: Process - initialised udev monitor
2020-09-02 22:11:54.326 T:2447507664 DEBUG: Thread PeripBusCEC start, auto delete: false
2020-09-02 22:11:54.327 T:2439114960 DEBUG: Thread PeripBusAddon start, auto delete: false
2020-09-02 22:11:54.328 T:2973080672 DEBUG: Initialise - initialised peripheral on 'keyboard' with 1 features and 0 sub devices
2020-09-02 22:11:54.328 T:2973080672 NOTICE: Register - new keyboard device registered on application->keyboard: Keyboard (0000:0000)
2020-09-02 22:11:54.328 T:2973080672 DEBUG: Initialise - initialised peripheral on 'mouse' with 1 features and 0 sub devices
2020-09-02 22:11:54.328 T:2973080672 NOTICE: Register - new mouse device registered on application->mouse: Mouse (0000:0000)
2020-09-02 22:11:54.330 T:2973080672 DEBUG: ContextMenuManager: addon menus reloaded.
2020-09-02 22:11:54.330 T:2973080672 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerCoreConfig::<ctor>: created player VideoPlayer
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerCoreConfig::<ctor>: created player PAPlayer
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerCoreConfig::<ctor>: created player RetroPlayer
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: system rules
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: mms/udp
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: lastfm/shout
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtmp
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtsp
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: streams
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: aacp/sdp
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: mp2
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvd
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvdimage
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: sdp/asf
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: nsv
2020-09-02 22:11:54.331 T:2973080672 DEBUG: CPlayerSelectionRule::Initialize: creating rule: radio
2020-09-02 22:11:54.331 T:2973080672 NOTICE: Loaded playercorefactory configuration
2020-09-02 22:11:54.331 T:2973080672 NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
2020-09-02 22:11:54.331 T:2973080672 NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
2020-09-02 22:11:54.331 T:2973080672 INFO: removing tempfiles
2020-09-02 22:11:54.333 T:2430722256 DEBUG: Thread PeripEventScanner start, auto delete: false
2020-09-02 22:11:54.338 T:2973080672 DEBUG: CRepositoryUpdater: previous update at 09/01/2020 6:06:36 PM, next at 09/02/2020 10:11:54 PM
2020-09-02 22:11:54.340 T:2973080672 DEBUG: CServiceAddonManager: starting service.xbmc.versioncheck
2020-09-02 22:11:54.340 T:2973080672 DEBUG: CServiceAddonManager: starting plugin.video.netflix
2020-09-02 22:11:54.340 T:2413936848 DEBUG: Thread LanguageInvoker start, auto delete: false
2020-09-02 22:11:54.340 T:2413936848 INFO: initializing python engine.
2020-09-02 22:11:54.343 T:2422329552 DEBUG: Thread Timer start, auto delete: false
2020-09-02 22:11:54.343 T:2973080672 NOTICE: initialize done
2020-09-02 22:11:54.343 T:2973080672 NOTICE: Running the application...
2020-09-02 22:11:54.344 T:2973080672 DEBUG: no profile autoexec.py (/home/pi/.kodi/userdata/autoexec.py) found, skipping
2020-09-02 22:11:54.344 T:2973080672 DEBUG: NetworkMessage - Starting network services
2020-09-02 22:11:54.344 T:2422329552 DEBUG: CRepositoryUpdater: running scheduled update
2020-09-02 22:11:54.346 T:2405544144 DEBUG: Thread LanguageInvoker start, auto delete: false
2020-09-02 22:11:54.346 T:2405544144 INFO: initializing python engine.
2020-09-02 22:11:54.349 T:2422329552 DEBUG: Thread Timer 2422329552 terminating
2020-09-02 22:11:54.349 T:2495467728 DEBUG: CRepositoryUpdateJob[repository.xbmc.org] checking for updates.
2020-09-02 22:11:54.349 T:2473210064 DEBUG: CRepositoryUpdateJob[repository.castagnait] checking for updates.
2020-09-02 22:11:54.349 T:2973080672 DEBUG: CZeroconfAvahi::clientCallback: client is up and running
2020-09-02 22:11:54.349 T:2973080672 NOTICE: starting zeroconf publishing
2020-09-02 22:11:54.351 T:2495467728 DEBUG: CFileCache::Open - opening <addons/leia/addons.xml.gz> using cache
2020-09-02 22:11:54.351 T:2397151440 DEBUG: Thread EventServer start, auto delete: false
2020-09-02 22:11:54.351 T:2397151440 NOTICE: ES: Starting UDP Event server on port 9777
2020-09-02 22:11:54.351 T:2495467728 DEBUG: CurlFile::Open(0x3e09448) http://mirrors.kodi.tv/addons/leia/addons.xml.gz?sha256
2020-09-02 22:11:54.351 T:2397151440 NOTICE: UDP: Listening on port 9777 (ipv6 : false)
2020-09-02 22:11:54.351 T:2495467728 INFO: easy_acquire - Created session to http://mirrors.kodi.tv
2020-09-02 22:11:54.351 T:2481602768 DEBUG: CZeroconfAvahi::doPublishService identifier: servers.eventserver type: _xbmc-events._udp name:Kodi (raspberrypi) port:9777
2020-09-02 22:11:54.351 T:2481602768 DEBUG: CZeroconfAvahi::addService() named: Kodi (raspberrypi) type: _xbmc-events._udp port:9777
2020-09-02 22:11:54.352 T:2973080672 INFO: JSONRPC Server: Successfully initialized
2020-09-02 22:11:54.352 T:2973080672 DEBUG: CPlayerCoreFactory::GetPlayers(/var/run/lirc/lircd)
2020-09-02 22:11:54.352 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules
2020-09-02 22:11:54.352 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerCoreFactory::GetPlayers: adding videodefaultplayer (VideoPlayer)
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=0
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1
2020-09-02 22:11:54.353 T:2973080672 DEBUG: CPlayerCoreFactory::GetPlayers: added 1 players
2020-09-02 22:11:54.356 T:2473210064 DEBUG: CFileCache::Open - opening <CastagnaIT/repository.castagnait/raw/master/addons.xml.md5> using cache
2020-09-02 22:11:54.356 T:2481602768 DEBUG: CZeroconfAvahi::doPublishService identifier: servers.jsonrpc-tpc type: _xbmc-jsonrpc._tcp name:Kodi (raspberrypi) port:9090
2020-09-02 22:11:54.356 T:2973080672 DEBUG: CMMALPool::CMMALPool Created pool 0x3e4fd90 of size 26 x 0 for port vc.ril.video_decode:out:0(I420)
2020-09-02 22:11:54.356 T:2473210064 DEBUG: CurlFile::Open(0xaec244d0) https://github.com/CastagnaIT/repository.castagnait/raw/master/addons.xml.md5
2020-09-02 22:11:54.357 T:2473210064 INFO: easy_acquire - Created session to https://github.com
2020-09-02 22:11:54.357 T:2380230864 DEBUG: Thread TCPServer start, auto delete: false
2020-09-02 22:11:54.361 T:2973080672 DEBUG: Radio UECP (RDS) Processor - new CDVDRadioRDSData
2020-09-02 22:11:54.361 T:2973080672 NOTICE: VideoPlayer::OpenFile: /var/run/lirc/lircd
2020-09-02 22:11:54.361 T:2973080672 DEBUG: CMMALRenderer::CMMALRenderer
2020-09-02 22:11:54.362 T:2973080672 DEBUG: OnPlayBackStarted: CApplication::OnPlayBackStarted
2020-09-02 22:11:54.363 T:2481602768 DEBUG: CZeroconfAvahi::addService() named: Kodi (raspberrypi) type: _xbmc-jsonrpc._tcp port:9090
2020-09-02 22:11:54.363 T:2353729744 DEBUG: Thread MMALProcess start, auto delete: false
2020-09-02 22:11:54.363 T:2353729744 DEBUG: CMMALRenderer::Run - starting
2020-09-02 22:11:54.365 T:2345337040 DEBUG: Thread VideoPlayer start, auto delete: false
2020-09-02 22:11:54.366 T:2345337040 NOTICE: Creating InputStream
2020-09-02 22:11:54.367 T:2345337040 ERROR: CVideoPlayer::OpenInputStream - error opening [/var/run/lirc/lircd]
2020-09-02 22:11:54.367 T:2345337040 NOTICE: CVideoPlayer::OnExit()
2020-09-02 22:11:54.367 T:2345337040 DEBUG: Thread VideoPlayer 2345337040 terminating
2020-09-02 22:11:54.373 T:2481602768 DEBUG: Loading settings for /var/run/lirc/lircd
2020-09-02 22:11:54.375 T:2345337040 DEBUG: Thread JobWorker start, auto delete: true
2020-09-02 22:11:54.380 T:2481602768 DEBUG: OnPlayBackStopped: CApplication::OnPlayBackStopped
2020-09-02 22:11:54.597 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing..
2020-09-02 22:11:54.603 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing..
2020-09-02 22:11:54.603 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/game/]: refreshing..
2020-09-02 22:11:54.603 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing..
2020-09-02 22:11:54.603 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing..
2020-09-02 22:11:54.613 T:2973080672 DEBUG: ------ Window Init () ------
2020-09-02 22:11:54.616 T:2973080672 DEBUG: ------ Window Init (Pointer.xml) ------
2020-09-02 22:11:54.623 T:2413936848 DEBUG: CPythonInvoker(0, /home/pi/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): start processing
2020-09-02 22:11:54.623 T:2405544144 DEBUG: CPythonInvoker(1, /home/pi/.kodi/addons/plugin.video.netflix/service.py): start processing
2020-09-02 22:11:54.762 T:2413936848 DEBUG: -->Python Interpreter Initialized<--
2020-09-02 22:11:54.763 T:2413936848 DEBUG: CPythonInvoker(0, /home/pi/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): the source file to load is "/home/pi/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py"
2020-09-02 22:11:54.763 T:2413936848 DEBUG: CPythonInvoker(0, /home/pi/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): setting the Python path to /home/pi/.kodi/addons/service.xbmc.versioncheck/resources/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-arm-linux-gnueabihf:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/gtk-2.0
2020-09-02 22:11:54.763 T:2413936848 DEBUG: CPythonInvoker(0, /home/pi/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): entering source directory /home/pi/.kodi/addons/service.xbmc.versioncheck/resources/lib
2020-09-02 22:11:54.800 T:2413936848 DEBUG: CPythonInvoker(0, /home/pi/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): instantiating addon using automatically obtained id of "service.xbmc.versioncheck" dependent on version 2.14.0 of the xbmc.python api
2020-09-02 22:11:54.878 T:2973080672 DEBUG: ------ Window Init (DialogBusy.xml) ------
2020-09-02 22:11:54.880 T:2973080672 NOTICE: CVideoPlayer::CloseFile()
2020-09-02 22:11:54.880 T:2973080672 DEBUG: DeleteRenderer - deleting renderer
2020-09-02 22:11:54.880 T:2973080672 DEBUG: CMMALRenderer::~CMMALRenderer
2020-09-02 22:11:54.880 T:2973080672 DEBUG: CMMALRenderer::UnInitMMAL
2020-09-02 22:11:54.880 T:2353729744 DEBUG: CMMALRenderer::Run - stopping
2020-09-02 22:11:54.880 T:2353729744 DEBUG: Thread MMALProcess 2353729744 terminating
2020-09-02 22:11:54.880 T:2973080672 NOTICE: VideoPlayer: waiting for threads to exit
2020-09-02 22:11:54.880 T:2973080672 NOTICE: VideoPlayer: finished waiting
2020-09-02 22:11:54.882 T:2973080672 DEBUG: Radio UECP (RDS) Processor - delete ~CDVDRadioRDSData
2020-09-02 22:11:54.882 T:2973080672 DEBUG: CMMALPool::~CMMALPool Destroying pool 0x3e4fd90 for port vc.ril.video_decode:out:0(I420)
2020-09-02 22:11:54.883 T:2973080672 DEBUG: LogindUPowerSyscall - Received unknown signal NameAcquired
2020-09-02 22:11:54.884 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing..
2020-09-02 22:11:54.891 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing..
2020-09-02 22:11:54.891 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/game/]: refreshing..
2020-09-02 22:11:54.891 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing..
2020-09-02 22:11:54.891 T:2973080672 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing..
2020-09-02 22:11:54.945 T:2973080672 DEBUG: ------ Window Deinit (DialogBusy.xml) ------
2020-09-02 22:11:54.953 T:2345337040 DEBUG: ffmpeg[8BCB00D0]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra.
2020-09-02 22:11:54.959 T:2481602768 DEBUG: ffmpeg[93EA40D0]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra.
2020-09-02 22:11:54.978 T:2973080672 DEBUG: CDirectoryProvider[addons://]: refreshing..
2020-09-02 22:11:54.994 T:2345337040 DEBUG: CAddonMgr::GetAvailableUpdates took 16 ms
2020-09-02 22:11:55.103 T:2413936848 DEBUG: CAddonSettings[service.xbmc.versioncheck]: loading setting definitions
2020-09-02 22:11:55.103 T:2413936848 DEBUG: CAddonSettings[service.xbmc.versioncheck]: trying to load setting definitions from old format...
2020-09-02 22:11:55.103 T:2413936848 DEBUG: CAddonSettings[service.xbmc.versioncheck]: loading setting values
2020-09-02 22:11:55.103 T:2413936848 DEBUG: CSettingsManager: requested setting (lastnotified_stable) was not found.
2020-09-02 22:11:55.103 T:2413936848 DEBUG: CAddonSettings[service.xbmc.versioncheck]: failed to find definition for setting lastnotified_stable. Creating a setting on-the-fly...
2020-09-02 22:11:55.104 T:2413936848 DEBUG: Version Check: Version 0.5.6 started
2020-09-02 22:11:55.104 T:2405544144 DEBUG: -->Python Interpreter Initialized<--
2020-09-02 22:11:55.104 T:2405544144 DEBUG: CPythonInvoker(1, /home/pi/.kodi/addons/plugin.video.netflix/service.py): the source file to load is "/home/pi/.kodi/addons/plugin.video.netflix/service.py"
2020-09-02 22:11:55.105 T:2405544144 DEBUG: CPythonInvoker(1, /home/pi/.kodi/addons/plugin.video.netflix/service.py): setting the Python path to /home/pi/.kodi/addons/plugin.video.netflix:/home/pi/.kodi/addons/script.module.addon.signals/lib:/home/pi/.kodi/addons/script.module.certifi/lib:/home/pi/.kodi/addons/script.module.chardet/lib:/home/pi/.kodi/addons/script.module.future/libs:/home/pi/.kodi/addons/script.module.idna/lib:/home/pi/.kodi/addons/script.module.inputstreamhelper/lib:/home/pi/.kodi/addons/script.module.requests/lib:/home/pi/.kodi/addons/script.module.urllib3/lib:/usr/share/kodi/addons/script.module.pycryptodome/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-arm-linux-gnueabihf:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/gtk-2.0
2020-09-02 22:11:55.105 T:2405544144 DEBUG: CPythonInvoker(1, /home/pi/.kodi/addons/plugin.video.netflix/service.py): entering source directory /home/pi/.kodi/addons/plugin.video.netflix
2020-09-02 22:11:55.105 T:2405544144 DEBUG: CPythonInvoker(1, /home/pi/.kodi/addons/plugin.video.netflix/service.py): instantiating addon using automatically obtained id of "plugin.video.netflix" dependent on version 2.26.0 of the xbmc.python api
2020-09-02 22:11:55.311 T:2353729744 DEBUG: Thread FileCache start, auto delete: false
2020-09-02 22:11:55.311 T:2353729744 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?)
2020-09-02 22:11:55.348 T:2422329552 DEBUG: CZeroconfAvahi::groupCallback: Service successfully established
2020-09-02 22:11:55.361 T:2353729744 DEBUG: Previous line repeats 1 times.
2020-09-02 22:11:55.361 T:2353729744 DEBUG: Thread FileCache 2353729744 terminating
2020-09-02 22:11:55.361 T:2495467728 DEBUG: CurlFile::Open(0x94bdc580) http://mirrors.kodi.tv/addons/leia/addons.xml.gz
2020-09-02 22:11:55.481 T:2447507664 DEBUG: GetMappingForDevice - device (2708:1001) mapped to CEC Adapter (type = cec)
2020-09-02 22:11:55.483 T:2447507664 DEBUG: InitialiseFeature - using libCEC v4.0.4
2020-09-02 22:11:55.483 T:2447507664 DEBUG: Initialise - initialised peripheral on 'RPI' with 2 features and 0 sub devices
2020-09-02 22:11:55.484 T:2447507664 NOTICE: Register - new cec device registered on cec->RPI: CEC Adapter (2708:1001)
2020-09-02 22:11:55.484 T:2447507664 DEBUG: Thread PeripBusCEC 2447507664 terminating
2020-09-02 22:11:55.484 T:2353729744 DEBUG: Thread CECAdapter start, auto delete: false
2020-09-02 22:11:55.484 T:2353729744 DEBUG: OpenConnection - opening a connection to the CEC adapter: RPI
2020-09-02 22:11:55.512 T:2973080672 DEBUG: ------ Window Init (DialogNotification.xml) ------
2020-09-02 22:11:55.580 T:2973080672 DEBUG: ------ Window Deinit (Pointer.xml) ------
2020-09-02 22:11:55.654 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 0, event.motion.y: 0
2020-09-02 22:11:55.662 T:2963271888 DEBUG: Previous line repeats 1 times.
2020-09-02 22:11:55.662 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 0, event.motion.y: 1
2020-09-02 22:11:55.669 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 0, event.motion.y: 3
2020-09-02 22:11:55.684 T:2973080672 DEBUG: ------ Window Init (Pointer.xml) ------
2020-09-02 22:11:55.684 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 0, event.motion.y: 5
2020-09-02 22:11:55.684 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 0, event.motion.y: 8
2020-09-02 22:11:55.691 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 0, event.motion.y: 11
2020-09-02 22:11:55.699 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 0, event.motion.y: 13
2020-09-02 22:11:55.706 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1, event.motion.y: 15
2020-09-02 22:11:55.714 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 4, event.motion.y: 19
2020-09-02 22:11:55.721 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 11, event.motion.y: 26
2020-09-02 22:11:55.729 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 21, event.motion.y: 36
2020-09-02 22:11:55.738 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 35, event.motion.y: 46
2020-09-02 22:11:55.743 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 60, event.motion.y: 65
2020-09-02 22:11:55.751 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 88, event.motion.y: 83
2020-09-02 22:11:55.759 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 122, event.motion.y: 103
2020-09-02 22:11:55.766 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 133, event.motion.y: 108
2020-09-02 22:11:55.773 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 173, event.motion.y: 131
2020-09-02 22:11:55.781 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 209, event.motion.y: 147
2020-09-02 22:11:55.789 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 265, event.motion.y: 171
2020-09-02 22:11:55.796 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 323, event.motion.y: 195
2020-09-02 22:11:55.811 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 383, event.motion.y: 223
2020-09-02 22:11:55.818 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 457, event.motion.y: 257
2020-09-02 22:11:55.819 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 477, event.motion.y: 265
2020-09-02 22:11:55.826 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 533, event.motion.y: 289
2020-09-02 22:11:55.833 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 607, event.motion.y: 321
2020-09-02 22:11:55.841 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 661, event.motion.y: 343
2020-09-02 22:11:55.848 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 713, event.motion.y: 365
2020-09-02 22:11:55.856 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 769, event.motion.y: 387
2020-09-02 22:11:55.863 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 821, event.motion.y: 407
2020-09-02 22:11:55.871 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 853, event.motion.y: 419
2020-09-02 22:11:55.879 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 883, event.motion.y: 431
2020-09-02 22:11:55.886 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 929, event.motion.y: 449
2020-09-02 22:11:55.893 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 965, event.motion.y: 463
2020-09-02 22:11:55.901 T:2481602768 DEBUG: ffmpeg[93EA40D0]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra.
2020-09-02 22:11:55.901 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 993, event.motion.y: 475
2020-09-02 22:11:55.909 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1011, event.motion.y: 483
2020-09-02 22:11:55.916 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1026, event.motion.y: 488
2020-09-02 22:11:55.924 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1034, event.motion.y: 492
2020-09-02 22:11:55.937 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1042, event.motion.y: 496
2020-09-02 22:11:55.944 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1045, event.motion.y: 498
2020-09-02 22:11:55.947 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1049, event.motion.y: 500
2020-09-02 22:11:55.954 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1053, event.motion.y: 502
2020-09-02 22:11:55.962 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1055, event.motion.y: 503
2020-09-02 22:11:55.969 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1057, event.motion.y: 505
2020-09-02 22:11:56.239 T:2963271888 DEBUG: Previous line repeats 1 times.
2020-09-02 22:11:56.239 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1057, event.motion.y: 506
2020-09-02 22:11:56.246 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1056, event.motion.y: 514
2020-09-02 22:11:56.253 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1056, event.motion.y: 519
2020-09-02 22:11:56.261 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1055, event.motion.y: 525
2020-09-02 22:11:56.268 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1055, event.motion.y: 543
2020-09-02 22:11:56.276 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1055, event.motion.y: 567
2020-09-02 22:11:56.291 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1056, event.motion.y: 591
2020-09-02 22:11:56.321 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1058, event.motion.y: 604
2020-09-02 22:11:56.336 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1060, event.motion.y: 616
2020-09-02 22:11:56.359 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1065, event.motion.y: 632
2020-09-02 22:11:56.366 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1068, event.motion.y: 646
2020-09-02 22:11:56.373 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1105, event.motion.y: 758
2020-09-02 22:11:56.374 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1125, event.motion.y: 804
2020-09-02 22:11:56.381 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1130, event.motion.y: 813
2020-09-02 22:11:56.389 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1132, event.motion.y: 821
2020-09-02 22:11:56.396 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1134, event.motion.y: 826
2020-09-02 22:11:56.404 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1136, event.motion.y: 830
2020-09-02 22:11:56.410 T:2405544144 DEBUG: CAddonSettings[plugin.video.netflix]: loading setting definitions
2020-09-02 22:11:56.410 T:2405544144 DEBUG: CAddonSettings[plugin.video.netflix]: trying to load setting definitions from old format...
2020-09-02 22:11:56.411 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1137, event.motion.y: 836
2020-09-02 22:11:56.414 T:2405544144 DEBUG: CAddonSettings[plugin.video.netflix]: loading setting values
2020-09-02 22:11:56.417 T:2405544144 INFO: [plugin.video.netflix (0)] The debug logging level is set as "Verbose"
2020-09-02 22:11:56.426 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1137, event.motion.y: 837
2020-09-02 22:11:56.437 T:2405544144 DEBUG: [plugin.video.netflix (0)] Trying connection to the database nf_local.sqlite3
2020-09-02 22:11:56.438 T:2405544144 DEBUG: [plugin.video.netflix (0)] Database connection nf_local.sqlite3 was successful (SQLite ver. 3.27.2)
2020-09-02 22:11:56.441 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1137, event.motion.y: 837
2020-09-02 22:11:56.614 T:2405544144 DEBUG: [plugin.video.netflix (0)] Trying connection to the database nf_shared.sqlite3
2020-09-02 22:11:56.614 T:2405544144 DEBUG: [plugin.video.netflix (0)] Database connection nf_shared.sqlite3 was successful (SQLite ver. 3.27.2)
2020-09-02 22:11:56.660 T:2405544144 DEBUG: [plugin.video.netflix (0)] Executing JSON-RPC: {"params": {"properties": ["thumbnail", "lockmode"]}, "jsonrpc": "2.0", "method": "Profiles.GetCurrentProfile", "id": 1}
2020-09-02 22:11:56.723 T:2353729744 DEBUG: OpenConnection - connection to the CEC adapter opened
2020-09-02 22:11:56.723 T:2353729744 DEBUG: SetConfigurationFromLibCEC - settings updated by libCEC
2020-09-02 22:11:56.724 T:2301620432 DEBUG: Thread CECAdapterUpdate start, auto delete: false
2020-09-02 22:11:56.728 T:2473210064 DEBUG: CCurlFile::Open - effective URL: <https://raw.githubusercontent.com/CastagnaIT/repository.castagnait/master/addons.xml.md5>
2020-09-02 22:11:56.729 T:2261766352 DEBUG: Thread FileCache start, auto delete: false
2020-09-02 22:11:56.729 T:2261766352 INFO: CFileCache::Process - Source read didn't return any data! Hit eof(?)
2020-09-02 22:11:56.764 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1137, event.motion.y: 837
2020-09-02 22:11:56.779 T:2261766352 DEBUG: Previous line repeats 1 times.
2020-09-02 22:11:56.779 T:2261766352 DEBUG: Thread FileCache 2261766352 terminating
2020-09-02 22:11:56.779 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1136, event.motion.y: 837
2020-09-02 22:11:56.794 T:2473210064 DEBUG: CRepositoryUpdateJob[repository.castagnait] checksum not changed.
2020-09-02 22:11:56.852 T:2405544144 INFO: [plugin.video.netflix (0)] [MSL] Picked Port: 57695
2020-09-02 22:11:56.852 T:2405544144 INFO: [plugin.video.netflix (0)] Constructing MSLTCPServer
2020-09-02 22:11:56.852 T:2405544144 INFO: [plugin.video.netflix (0)] Loaded MSL data from disk
2020-09-02 22:11:57.281 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1135, event.motion.y: 837
2020-09-02 22:11:57.311 T:2963271888 DEBUG: Previous line repeats 2 times.
2020-09-02 22:11:57.311 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1134, event.motion.y: 837
2020-09-02 22:11:57.319 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1133, event.motion.y: 837
2020-09-02 22:11:57.334 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1132, event.motion.y: 836
2020-09-02 22:11:57.341 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1131, event.motion.y: 836
2020-09-02 22:11:57.349 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1130, event.motion.y: 836
2020-09-02 22:11:57.356 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1129, event.motion.y: 836
2020-09-02 22:11:57.364 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1128, event.motion.y: 836
2020-09-02 22:11:57.371 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1127, event.motion.y: 836
2020-09-02 22:11:57.378 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1126, event.motion.y: 835
2020-09-02 22:11:57.386 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1125, event.motion.y: 835
2020-09-02 22:11:57.394 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1124, event.motion.y: 835
2020-09-02 22:11:57.401 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1123, event.motion.y: 835
2020-09-02 22:11:57.408 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1122, event.motion.y: 835
2020-09-02 22:11:57.416 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1121, event.motion.y: 835
2020-09-02 22:11:57.424 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1120, event.motion.y: 835
2020-09-02 22:11:57.431 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1119, event.motion.y: 835
2020-09-02 22:11:57.438 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1118, event.motion.y: 835
2020-09-02 22:11:57.446 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1117, event.motion.y: 835
2020-09-02 22:11:57.469 T:2963271888 DEBUG: Previous line repeats 2 times.
2020-09-02 22:11:57.469 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1114, event.motion.y: 835
2020-09-02 22:11:57.476 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1111, event.motion.y: 835
2020-09-02 22:11:57.484 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1109, event.motion.y: 835
2020-09-02 22:11:57.493 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1107, event.motion.y: 836
2020-09-02 22:11:57.498 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1106, event.motion.y: 836
2020-09-02 22:11:57.506 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1105, event.motion.y: 836
2020-09-02 22:11:57.513 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1103, event.motion.y: 836
2020-09-02 22:11:57.521 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1102, event.motion.y: 836
2020-09-02 22:11:57.528 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1100, event.motion.y: 836
2020-09-02 22:11:57.536 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1097, event.motion.y: 836
2020-09-02 22:11:57.543 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1096, event.motion.y: 836
2020-09-02 22:11:57.551 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1095, event.motion.y: 836
2020-09-02 22:11:57.558 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1094, event.motion.y: 836
2020-09-02 22:11:57.566 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1093, event.motion.y: 836
2020-09-02 22:11:57.573 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1091, event.motion.y: 836
2020-09-02 22:11:57.581 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1090, event.motion.y: 836
2020-09-02 22:11:57.588 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1088, event.motion.y: 836
2020-09-02 22:11:57.596 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1087, event.motion.y: 836
2020-09-02 22:11:57.607 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1086, event.motion.y: 836
2020-09-02 22:11:57.611 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1085, event.motion.y: 836
2020-09-02 22:11:57.618 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1083, event.motion.y: 836
2020-09-02 22:11:57.626 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1082, event.motion.y: 836
2020-09-02 22:11:57.633 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1081, event.motion.y: 836
2020-09-02 22:11:57.641 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1079, event.motion.y: 836
2020-09-02 22:11:57.648 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1078, event.motion.y: 836
2020-09-02 22:11:57.656 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1077, event.motion.y: 836
2020-09-02 22:11:57.663 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1076, event.motion.y: 836
2020-09-02 22:11:57.671 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1075, event.motion.y: 836
2020-09-02 22:11:57.678 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1074, event.motion.y: 836
2020-09-02 22:11:57.686 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1073, event.motion.y: 836
2020-09-02 22:11:57.693 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1071, event.motion.y: 836
2020-09-02 22:11:57.701 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1070, event.motion.y: 836
2020-09-02 22:11:57.708 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1069, event.motion.y: 836
2020-09-02 22:11:57.716 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1068, event.motion.y: 836
2020-09-02 22:11:57.723 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1067, event.motion.y: 836
2020-09-02 22:11:57.731 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1066, event.motion.y: 835
2020-09-02 22:11:57.738 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1063, event.motion.y: 835
2020-09-02 22:11:57.746 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1062, event.motion.y: 835
2020-09-02 22:11:57.753 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1060, event.motion.y: 834
2020-09-02 22:11:57.761 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1058, event.motion.y: 834
2020-09-02 22:11:57.768 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1056, event.motion.y: 834
2020-09-02 22:11:57.776 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1054, event.motion.y: 834
2020-09-02 22:11:57.784 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1051, event.motion.y: 833
2020-09-02 22:11:57.791 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1047, event.motion.y: 832
2020-09-02 22:11:57.799 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1044, event.motion.y: 832
2020-09-02 22:11:57.806 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1040, event.motion.y: 831
2020-09-02 22:11:57.813 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1036, event.motion.y: 831
2020-09-02 22:11:57.821 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1032, event.motion.y: 830
2020-09-02 22:11:57.828 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1028, event.motion.y: 829
2020-09-02 22:11:57.836 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1022, event.motion.y: 828
2020-09-02 22:11:57.843 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1016, event.motion.y: 827
2020-09-02 22:11:57.858 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 1002, event.motion.y: 823
2020-09-02 22:11:57.859 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 993, event.motion.y: 822
2020-09-02 22:11:57.866 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 984, event.motion.y: 821
2020-09-02 22:11:57.873 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 978, event.motion.y: 820
2020-09-02 22:11:57.881 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 972, event.motion.y: 819
2020-09-02 22:11:57.888 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 967, event.motion.y: 817
2020-09-02 22:11:57.896 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 963, event.motion.y: 816
2020-09-02 22:11:57.903 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 959, event.motion.y: 815
2020-09-02 22:11:57.918 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 956, event.motion.y: 814
2020-09-02 22:11:57.919 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 949, event.motion.y: 813
2020-09-02 22:11:57.926 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 944, event.motion.y: 812
2020-09-02 22:11:57.933 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 941, event.motion.y: 811
2020-09-02 22:11:57.941 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 938, event.motion.y: 810
2020-09-02 22:11:57.949 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 934, event.motion.y: 809
2020-09-02 22:11:57.956 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 931, event.motion.y: 808
2020-09-02 22:11:57.964 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 927, event.motion.y: 808
2020-09-02 22:11:57.971 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 924, event.motion.y: 807
2020-09-02 22:11:57.979 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 920, event.motion.y: 806
2020-09-02 22:11:57.986 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 917, event.motion.y: 806
2020-09-02 22:11:57.994 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 913, event.motion.y: 805
2020-09-02 22:11:58.001 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 909, event.motion.y: 805
2020-09-02 22:11:58.009 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 905, event.motion.y: 804
2020-09-02 22:11:58.023 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 901, event.motion.y: 804
2020-09-02 22:11:58.024 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 892, event.motion.y: 803
2020-09-02 22:11:58.031 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 883, event.motion.y: 802
2020-09-02 22:11:58.039 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 877, event.motion.y: 800
2020-09-02 22:11:58.053 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 870, event.motion.y: 799
2020-09-02 22:11:58.054 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 859, event.motion.y: 796
2020-09-02 22:11:58.061 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 848, event.motion.y: 793
2020-09-02 22:11:58.069 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 822, event.motion.y: 786
2020-09-02 22:11:58.076 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 811, event.motion.y: 783
2020-09-02 22:11:58.084 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 803, event.motion.y: 781
2020-09-02 22:11:58.091 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 779, event.motion.y: 776
2020-09-02 22:11:58.099 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 768, event.motion.y: 773
2020-09-02 22:11:58.106 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 758, event.motion.y: 772
2020-09-02 22:11:58.114 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 749, event.motion.y: 769
2020-09-02 22:11:58.121 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 725, event.motion.y: 764
2020-09-02 22:11:58.129 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 714, event.motion.y: 763
2020-09-02 22:11:58.136 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 692, event.motion.y: 758
2020-09-02 22:11:58.144 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 679, event.motion.y: 755
2020-09-02 22:11:58.151 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 670, event.motion.y: 754
2020-09-02 22:11:58.159 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 662, event.motion.y: 752
2020-09-02 22:11:58.166 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 654, event.motion.y: 751
2020-09-02 22:11:58.174 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 632, event.motion.y: 746
2020-09-02 22:11:58.181 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 621, event.motion.y: 743
2020-09-02 22:11:58.189 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 613, event.motion.y: 742
2020-09-02 22:11:58.196 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 594, event.motion.y: 739
2020-09-02 22:11:58.204 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 586, event.motion.y: 738
2020-09-02 22:11:58.211 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 582, event.motion.y: 737
2020-09-02 22:11:58.219 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 576, event.motion.y: 737
2020-09-02 22:11:58.226 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 572, event.motion.y: 736
2020-09-02 22:11:58.234 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 568, event.motion.y: 736
2020-09-02 22:11:58.241 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 562, event.motion.y: 735
2020-09-02 22:11:58.256 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 551, event.motion.y: 733
2020-09-02 22:11:58.263 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 545, event.motion.y: 733
2020-09-02 22:11:58.264 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 536, event.motion.y: 732
2020-09-02 22:11:58.271 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 527, event.motion.y: 731
2020-09-02 22:11:58.279 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 519, event.motion.y: 730
2020-09-02 22:11:58.286 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 511, event.motion.y: 729
2020-09-02 22:11:58.294 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 501, event.motion.y: 728
2020-09-02 22:11:58.301 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 490, event.motion.y: 725
2020-09-02 22:11:58.309 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 459, event.motion.y: 722
2020-09-02 22:11:58.316 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 446, event.motion.y: 721
2020-09-02 22:11:58.323 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 433, event.motion.y: 720
2020-09-02 22:11:58.331 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 420, event.motion.y: 719
2020-09-02 22:11:58.338 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 409, event.motion.y: 718
2020-09-02 22:11:58.346 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 400, event.motion.y: 717
2020-09-02 22:11:58.353 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 392, event.motion.y: 717
2020-09-02 22:11:58.361 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 386, event.motion.y: 717
2020-09-02 22:11:58.368 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 382, event.motion.y: 716
2020-09-02 22:11:58.376 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 375, event.motion.y: 716
2020-09-02 22:11:58.383 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 369, event.motion.y: 715
2020-09-02 22:11:58.400 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 368, event.motion.y: 715
2020-09-02 22:11:58.400 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 364, event.motion.y: 714
2020-09-02 22:11:58.406 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 363, event.motion.y: 714
2020-09-02 22:11:58.413 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 361, event.motion.y: 713
2020-09-02 22:11:58.464 T:2495467728 DEBUG: CCurlFile::Open - effective URL: <https://ftp.halifax.rwth-aachen.de/xbmc/addons/leia/addons.xml.gz>
2020-09-02 22:11:58.511 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 361, event.motion.y: 713
2020-09-02 22:11:58.526 T:2963271888 DEBUG: Previous line repeats 1 times.
2020-09-02 22:11:58.526 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 361, event.motion.y: 712
2020-09-02 22:11:58.533 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 361, event.motion.y: 711
2020-09-02 22:11:58.541 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 361, event.motion.y: 710
2020-09-02 22:11:58.548 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 361, event.motion.y: 709
2020-09-02 22:11:58.556 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 362, event.motion.y: 708
2020-09-02 22:11:58.593 T:2963271888 DEBUG: Previous line repeats 2 times.
2020-09-02 22:11:58.593 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 364, event.motion.y: 708
2020-09-02 22:11:58.601 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 366, event.motion.y: 707
2020-09-02 22:11:58.608 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 370, event.motion.y: 707
2020-09-02 22:11:58.616 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 377, event.motion.y: 707
2020-09-02 22:11:58.623 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 394, event.motion.y: 707
2020-09-02 22:11:58.631 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 416, event.motion.y: 707
2020-09-02 22:11:58.638 T:2963271888 DEBUG: CLibInputPointer::ProcessMotion - event.type: 3, event.motion.x: 422, event.motion.y: 706