Save New Duplicate & Edit Just Text Twitter 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 21:23:31.990 T:18446744073433549104 NOTICE: special://profile/ is mapped to: special://masterprofile/ 21:23:31.990 T:18446744073433549104 NOTICE: ----------------------------------------------------------------------- 21:23:31.990 T:18446744073433549104 NOTICE: Starting Kodi (17.6 Git:20171114-a9a7a20). Platform: Android ARM 32-bit 21:23:31.991 T:18446744073433549104 NOTICE: Using Release Kodi x32 build 21:23:31.991 T:18446744073433549104 NOTICE: Kodi compiled Nov 14 2017 by GCC 4.9.0 for Android ARM 32-bit API level 21 (API level 21) 21:23:31.991 T:18446744073433549104 NOTICE: Running on MINIX NEO-U9-H with Android 6.0.1 API level 23, kernel: Linux ARM 32-bit version 3.14.29 21:23:31.991 T:18446744073433549104 NOTICE: FFmpeg version/source: ffmpeg-3.1-kodi 21:23:31.991 T:18446744073433549104 NOTICE: Host CPU: AArch64 Processor rev 4 (aarch64), 8 cores available 21:23:31.991 T:18446744073433549104 NOTICE: Product: q200, Device: NEO-U9-H, Board: NEO-U9-H - Manufacturer: MINIX, Brand: MINIX, Model: NEO-U9-H, Hardware: amlogic 21:23:31.997 T:18446744073433549104 NOTICE: External storage path = /storage/emulated/0; status = ok 21:23:31.998 T:18446744073433549104 NOTICE: ARM Features: Neon enabled 21:23:31.998 T:18446744073433549104 NOTICE: special://xbmc/ is mapped to: /data/user/0/org.xbmc.kodi/cache/apk/assets 21:23:31.998 T:18446744073433549104 NOTICE: special://xbmcbin/ is mapped to: /data/user/0/org.xbmc.kodi/cache/apk/assets 21:23:31.998 T:18446744073433549104 NOTICE: special://xbmcbinaddons/ is mapped to: /data/app/org.xbmc.kodi-2/lib/arm 21:23:31.998 T:18446744073433549104 NOTICE: special://masterprofile/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata 21:23:31.998 T:18446744073433549104 NOTICE: special://envhome/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files 21:23:31.998 T:18446744073433549104 NOTICE: special://home/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi 21:23:31.998 T:18446744073433549104 NOTICE: special://temp/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp 21:23:31.998 T:18446744073433549104 NOTICE: special://logpath/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp 21:23:31.999 T:18446744073433549104 NOTICE: The executable running is: /data/app/org.xbmc.kodi-2/lib/arm/libkodi.so 21:23:31.999 T:18446744073433549104 NOTICE: Local hostname: localhost 21:23:31.999 T:18446744073433549104 NOTICE: Log File is located: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp//kodi.log 21:23:31.999 T:18446744073433549104 NOTICE: ----------------------------------------------------------------------- 21:23:32.000 T:18446744073433549104 NOTICE: load settings... 21:23:32.028 T:18446744073433549104 DEBUG: CSettings: loaded settings definition from special://xbmc/system/settings/settings.xml 21:23:32.031 T:18446744073433549104 WARNING: CSettingInt: unknown options filler "audiocdactions" of "audiocds.autoaction" 21:23:32.051 T:18446744073433549104 DEBUG: CSettings: loaded settings definition from special://xbmc/system/settings/android.xml 21:23:32.057 T:18446744073433549104 NOTICE: Float is supported 21:23:32.058 T:18446744073433549104 NOTICE: AML device detected 21:23:32.059 T:18446744073433549104 DEBUG: AESinkAUDIOTRACK - 32000 supported 21:23:32.059 T:18446744073433549104 DEBUG: AESinkAUDIOTRACK - 44100 supported 21:23:32.060 T:18446744073433549104 DEBUG: AESinkAUDIOTRACK - 48000 supported 21:23:32.060 T:18446744073433549104 DEBUG: AESinkAUDIOTRACK - 88200 supported 21:23:32.061 T:18446744073433549104 DEBUG: AESinkAUDIOTRACK - 96000 supported 21:23:32.062 T:18446744073433549104 DEBUG: AESinkAUDIOTRACK - 176400 supported 21:23:32.062 T:18446744073433549104 DEBUG: AESinkAUDIOTRACK - 192000 supported 21:23:32.067 T:18446744073433549104 DEBUG: Firmware implements AC3 RAW 21:23:32.072 T:18446744073433549104 DEBUG: Firmware implements EAC3 RAW 21:23:32.078 T:18446744073433549104 DEBUG: Firmware implements DTS RAW 21:23:32.084 T:18446744073433549104 DEBUG: Firmware implements DTS-HD RAW 21:23:32.091 T:18446744073433549104 DEBUG: AESinkAUDIOTrack: Using IEC PT mode: 13 21:23:32.098 T:18446744073433549104 DEBUG: 8 Channel PT via IEC61937 is supported 21:23:32.098 T:18446744073433549104 NOTICE: Found 1 Lists of Devices 21:23:32.098 T:18446744073433549104 NOTICE: Enumerated AUDIOTRACK devices: 21:23:32.098 T:18446744073433549104 NOTICE: Device 1 21:23:32.098 T:18446744073433549104 NOTICE: m_deviceName : AudioTrack 21:23:32.099 T:18446744073433549104 NOTICE: m_displayName : android 21:23:32.099 T:18446744073433549104 NOTICE: m_displayNameExtra: audiotrack 21:23:32.099 T:18446744073433549104 NOTICE: m_deviceType : AE_DEVTYPE_HDMI 21:23:32.099 T:18446744073433549104 NOTICE: m_channels : FL,FR,FC,LFE,SL,SR,BL,BR,BC,BLOC,BROC 21:23:32.099 T:18446744073433549104 NOTICE: m_sampleRates : 32000,44100,48000,88200,96000,176400,192000 21:23:32.099 T:18446744073433549104 NOTICE: m_dataFormats : AE_FMT_S16LE,AE_FMT_FLOAT,AE_FMT_RAW,AE_FMT_RAW 21:23:32.100 T:18446744073433549104 NOTICE: m_streamTypes : STREAM_TYPE_AC3,STREAM_TYPE_DTSHD_CORE,STREAM_TYPE_DTS_1024,STREAM_TYPE_DTS_2048,STREAM_TYPE_DTS_512,STREAM_TYPE_EAC3,STREAM_TYPE_DTSHD,STREAM_TYPE_TRUEHD 21:23:32.111 T:18446744073433549104 DEBUG: CSkinSettings: no tag found 21:23:32.112 T:18446744073433549104 NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml) 21:23:32.113 T:18446744073433549104 NOTICE: No settings file to load (special://masterprofile/advancedsettings.xml) 21:23:32.113 T:18446744073433549104 NOTICE: Default Video Player: VideoPlayer 21:23:32.113 T:18446744073433549104 NOTICE: Default Audio Player: paplayer 21:23:32.113 T:18446744073433549104 NOTICE: Enabled debug logging due to GUI setting (2) 21:23:32.113 T:18446744073433549104 NOTICE: Log level changed to "LOG_LEVEL_DEBUG_FREEMEM" 21:23:32.113 T:18446744073433549104 NOTICE: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml 21:23:32.114 T:18446744073433549104 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml. 21:23:32.115 T:18446744073433549104 DEBUG: CPlayerCoreConfig::: created player VideoPlayer 21:23:32.115 T:18446744073433549104 DEBUG: CPlayerCoreConfig::: created player PAPlayer 21:23:32.115 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: system rules 21:23:32.115 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: mms/udp 21:23:32.115 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: lastfm/shout 21:23:32.115 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtmp 21:23:32.116 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtsp 21:23:32.116 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: streams 21:23:32.116 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: aacp/sdp 21:23:32.116 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: mp2 21:23:32.116 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvd 21:23:32.116 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvdimage 21:23:32.116 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: sdp/asf 21:23:32.116 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: nsv 21:23:32.116 T:18446744073433549104 DEBUG: CPlayerSelectionRule::Initialize: creating rule: radio 21:23:32.116 T:18446744073433549104 NOTICE: Loaded playercorefactory configuration 21:23:32.117 T:18446744073433549104 NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml. 21:23:32.117 T:18446744073433549104 NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping. 21:23:32.120 T:18446744073433549104 NOTICE: LoadFromXML - unable to load:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/wakeonlan.xml 21:23:32.133 T:18446744073433549104 INFO: creating subdirectories 21:23:32.133 T:18446744073433549104 INFO: userdata folder: special://masterprofile/ 21:23:32.134 T:18446744073433549104 INFO: recording folder: 21:23:32.134 T:18446744073433549104 INFO: screenshots folder: 21:23:32.150 T:18446744073433549104 NOTICE: Running database version Addons27 21:23:32.150 T:18446744073433549104 DEBUG: SECTION:LoadDLL(libcpluff-arm.so) 21:23:32.151 T:18446744073433549104 DEBUG: Loading: /data/app/org.xbmc.kodi-2/lib/arm/libcpluff-arm.so 21:23:32.242 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in xbmc.json has been installed.' 21:23:32.242 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.fanart.tv has been installed.' 21:23:32.242 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in resource.images.weathericons.default has been installed.' 21:23:32.242 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.nosefart has been installed.' 21:23:32.242 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.timidity has been installed.' 21:23:32.242 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.octonet has been installed.' 21:23:32.242 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in xbmc.audioencoder has been installed.' 21:23:32.243 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.vbox has been installed.' 21:23:32.243 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in webinterface.default has been installed.' 21:23:32.243 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in kodi.audiodecoder has been installed.' 21:23:32.243 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in repository.xbmc.org has been installed.' 21:23:32.243 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in script.module.six has been installed.' 21:23:32.243 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in kodi.peripheral has been installed.' 21:23:32.243 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.black has been installed.' 21:23:32.243 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.modplug has been installed.' 21:23:32.243 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in kodi.guilib has been installed.' 21:23:32.243 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.vdr.vnsi has been installed.' 21:23:32.244 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.argustv has been installed.' 21:23:32.244 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in peripheral.joystick has been installed.' 21:23:32.244 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.mediaportal.tvserver has been installed.' 21:23:32.244 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in kodi.adsp has been installed.' 21:23:32.244 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.vorbis has been installed.' 21:23:32.244 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.xbmc.builtin.wma has been installed.' 21:23:32.244 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in script.module.chardet has been installed.' 21:23:32.244 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.wav has been installed.' 21:23:32.244 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in game.controller.default has been installed.' 21:23:32.244 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.dim has been installed.' 21:23:32.244 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in script.module.idna has been installed.' 21:23:32.245 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in kodi.game has been installed.' 21:23:32.245 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in service.libraryautoupdate has been installed.' 21:23:32.245 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in script.module.urllib3 has been installed.' 21:23:32.245 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in metadata.themoviedb.org has been installed.' 21:23:32.245 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in visualization.shadertoy has been installed.' 21:23:32.245 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in xbmc.metadata has been installed.' 21:23:32.245 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.wmc has been installed.' 21:23:32.245 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in service.xbmc.versioncheck has been installed.' 21:23:32.245 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.dvblink has been installed.' 21:23:32.246 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.flac has been installed.' 21:23:32.246 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in inputstream.rtmp has been installed.' 21:23:32.246 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.hdhomerun has been installed.' 21:23:32.246 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in kodi.resource has been installed.' 21:23:32.246 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in script.logviewer has been installed.' 21:23:32.246 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in script.module.pil has been installed.' 21:23:32.246 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in xbmc.gui has been installed.' 21:23:32.246 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in inputstream.adaptive has been installed.' 21:23:32.246 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.mythtv has been installed.' 21:23:32.246 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.vuplus has been installed.' 21:23:32.246 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in xbmc.core has been installed.' 21:23:32.247 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in skin.estouchy has been installed.' 21:23:32.247 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in script.module.pyqrcode has been installed.' 21:23:32.247 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.youtube has been installed.' 21:23:32.247 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.demo has been installed.' 21:23:32.247 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.sidplay has been installed.' 21:23:32.247 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in script.module.requests has been installed.' 21:23:32.247 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.pctv has been installed.' 21:23:32.247 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in kodi.inputstream has been installed.' 21:23:32.247 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in script.module.certifi has been installed.' 21:23:32.247 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.iptvsimple has been installed.' 21:23:32.248 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in xbmc.pvr has been installed.' 21:23:32.248 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.njoy has been installed.' 21:23:32.248 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.nextpvr has been installed.' 21:23:32.248 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.vgmstream has been installed.' 21:23:32.248 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.xbmc.builtin.aac has been installed.' 21:23:32.248 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in metadata.album.universal has been installed.' 21:23:32.248 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.stsound has been installed.' 21:23:32.248 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.dvbviewer has been installed.' 21:23:32.248 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in visualization.spectrum has been installed.' 21:23:32.248 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in resource.language.en_gb has been installed.' 21:23:32.248 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.stalker has been installed.' 21:23:32.249 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in script.kodi.loguploader has been installed.' 21:23:32.249 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.snesapu has been installed.' 21:23:32.249 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in metadata.tvdb.com has been installed.' 21:23:32.249 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.musicbrainz.org has been installed.' 21:23:32.249 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.allmusic.com has been installed.' 21:23:32.249 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in metadata.local has been installed.' 21:23:32.249 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.lame has been installed.' 21:23:32.249 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in xbmc.webinterface has been installed.' 21:23:32.249 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in resource.uisounds.kodi has been installed.' 21:23:32.249 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in resource.language.de_de has been installed.' 21:23:32.250 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.themoviedb.org has been installed.' 21:23:32.250 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.theaudiodb.com has been installed.' 21:23:32.250 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in metadata.artists.universal has been installed.' 21:23:32.250 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in xbmc.python has been installed.' 21:23:32.250 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.imdb.com has been installed.' 21:23:32.250 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.filmon has been installed.' 21:23:32.250 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in xbmc.addon has been installed.' 21:23:32.250 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in pvr.hts has been installed.' 21:23:32.250 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in xbmc.codec has been installed.' 21:23:32.250 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Plug-in skin.estuary has been installed.' 21:23:32.250 T:18446744073433549104 DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.' 21:23:32.271 T:18446744073165191472 DEBUG: Thread JobWorker start, auto delete: true 21:23:32.327 T:18446744073433549104 NOTICE: ADDONS: Using repository repository.xbmc.org 21:23:32.456 T:18446744073164146992 DEBUG: Thread ActiveAE start, auto delete: false 21:23:32.456 T:18446744073163102512 DEBUG: Thread AESink start, auto delete: false 21:23:32.457 T:18446744073163102512 INFO: CActiveAESink::OpenSink - initialize sink 21:23:32.457 T:18446744073163102512 DEBUG: CActiveAESink::OpenSink - trying to open device AUDIOTRACK:AudioTrack 21:23:32.457 T:18446744073163102512 DEBUG: CAESinkAUDIOTRACK::Initialize requested: sampleRate 44100; format: AE_FMT_FLOAT; channels: 2 21:23:32.457 T:18446744073163102512 DEBUG: Updated SampleRate: 32000 Distance: 108900 21:23:32.458 T:18446744073163102512 DEBUG: Updated SampleRate: 44100 Distance: 0 21:23:32.458 T:18446744073163102512 NOTICE: Trying to open: 44100 samplerate 12 channelMask 4 encoding 21:23:32.460 T:18446744073163102512 DEBUG: Minimum size we need for stream: 30208 21:23:32.460 T:18446744073163102512 DEBUG: Created Audiotrackbuffer with playing time of 171.247166 ms min buffer size: 60416 bytes 21:23:32.466 T:18446744073163102512 NOTICE: CAESinkAUDIOTRACK::Initializing with: m_sampleRate: 44100 format: AE_FMT_FLOAT (AE) method: PCM stream-type: PCM-STREAM min_buffer_size: 60416 m_frames: 3776 m_frameSize: 8 channels: 2 21:23:32.466 T:18446744073163102512 DEBUG: CActiveAESink::OpenSink - AUDIOTRACK Initialized: 21:23:32.467 T:18446744073163102512 DEBUG: Output Device : android 21:23:32.467 T:18446744073163102512 DEBUG: Sample Rate : 44100 21:23:32.467 T:18446744073163102512 DEBUG: Sample Format : AE_FMT_FLOAT 21:23:32.467 T:18446744073163102512 DEBUG: Channel Count : 2 21:23:32.468 T:18446744073163102512 DEBUG: Channel Layout: FL,FR 21:23:32.468 T:18446744073163102512 DEBUG: Frames : 3776 21:23:32.468 T:18446744073163102512 DEBUG: Frame Size : 8 21:23:32.486 T:18446744073433549104 INFO: CKeyboardLayoutManager: loading keyboard layouts from special://xbmc/system/keyboardlayouts... 21:23:32.488 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Ukrainian ЙЦУКЕН" successfully loaded 21:23:32.489 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Ukrainian АБВ" successfully loaded 21:23:32.490 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Bulgarian ЯВЕРТЪ" successfully loaded 21:23:32.491 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Bulgarian АБВ" successfully loaded 21:23:32.492 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Russian ЙЦУКЕН" successfully loaded 21:23:32.492 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Russian АБВ" successfully loaded 21:23:32.494 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Polish QWERTY" successfully loaded 21:23:32.495 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Lithuanian AZERTY" successfully loaded 21:23:32.496 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Lithuanian QWERTY" successfully loaded 21:23:32.497 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Arabic QWERTY" successfully loaded 21:23:32.498 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Korean ㄱㄴㄷ" successfully loaded 21:23:32.499 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Italian QWERTY" successfully loaded 21:23:32.500 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Hungarian QWERTZ" successfully loaded 21:23:32.502 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "German QWERTZ" successfully loaded 21:23:32.502 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "German ABC" successfully loaded 21:23:32.503 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Chinese BasePY" successfully loaded 21:23:32.504 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Chinese BaiduPY" successfully loaded 21:23:32.505 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Icelandic QWERTY" successfully loaded 21:23:32.506 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Czech QWERTZ" successfully loaded 21:23:32.508 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Spanish QWERTY" successfully loaded 21:23:32.509 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Hebrew QWERTY" successfully loaded 21:23:32.510 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Hebrew ABC" successfully loaded 21:23:32.511 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Portuguese (Portugal) QWERTY" successfully loaded 21:23:32.512 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Danish QWERTY" successfully loaded 21:23:32.513 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Croatian QWERTY" successfully loaded 21:23:32.514 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "French AZERTY" successfully loaded 21:23:32.516 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Silesian QWERTY" successfully loaded 21:23:32.517 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "English QWERTY" successfully loaded 21:23:32.518 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "English AZERTY" successfully loaded 21:23:32.518 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "English ABC" successfully loaded 21:23:32.520 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Greek QWERTY" successfully loaded 21:23:32.521 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Romanian QWERTY" successfully loaded 21:23:32.522 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak QWERTZ" successfully loaded 21:23:32.523 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak QWERTY" successfully loaded 21:23:32.524 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak ABC" successfully loaded 21:23:32.525 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Norwegian QWERTY" successfully loaded 21:23:32.526 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Turkish QWERTY" successfully loaded 21:23:32.527 T:18446744073433549104 DEBUG: CKeyboardLayoutManager: keyboard layout "Swedish QWERTY" successfully loaded 21:23:32.533 T:18446744073433549104 DEBUG: CEGLNativeTypeAndroid: current mode: 1: 1920x1080@60.000004 21:23:32.535 T:18446744073433549104 DEBUG: CEGLNativeTypeAndroid: available mode: 1: 1920x1080@60.000004 21:23:32.535 T:18446744073433549104 DEBUG: CEGLNativeTypeAndroid: available mode: 2: 1920x1080@24.000000 21:23:32.535 T:18446744073433549104 DEBUG: CEGLNativeTypeAndroid: available mode: 3: 1920x1080@50.000000 21:23:32.535 T:18446744073433549104 DEBUG: CEGLNativeTypeAndroid: available mode: 4: 1920x1080@23.976025 21:23:32.535 T:18446744073433549104 DEBUG: CEGLNativeTypeAndroid: available mode: 5: 1920x1080@29.970030 21:23:32.536 T:18446744073433549104 DEBUG: CEGLNativeTypeAndroid: available mode: 6: 1920x1080@59.940060 21:23:32.536 T:18446744073433549104 DEBUG: CEGLNativeTypeAndroid: maximum/current resolution: 1920x1080 21:23:32.536 T:18446744073433549104 DEBUG: CEGLNativeTypeAndroid: selected resolution: 1920x1080 21:23:32.536 T:18446744073433549104 NOTICE: InitWindowSystem: Using EGL Implementation: android 21:23:32.654 T:18446744073433549104 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 60.000004 Hz 21:23:32.654 T:18446744073433549104 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 24.000000 Hz 21:23:32.655 T:18446744073433549104 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 50.000000 Hz 21:23:32.655 T:18446744073433549104 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 23.976025 Hz 21:23:32.655 T:18446744073433549104 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 29.970030 Hz 21:23:32.655 T:18446744073433549104 NOTICE: Found resolution 1920 x 1080 for display 0 with 1920 x 1080 @ 59.940060 Hz 21:23:32.655 T:18446744073433549104 NOTICE: Found (1920x1080@60.000004) at 16, setting to RES_DESKTOP at 16 21:23:32.656 T:18446744073433549104 NOTICE: Checking resolution 16 21:23:32.720 T:18446744073163102512 DEBUG: Draining Audio 21:23:32.723 T:18446744073433549104 DEBUG: CEGLNativeTypeAndroid: SetNativeResolution: 1: 1920x1080@60.000004 21:23:32.730 T:18446744073433549104 DEBUG: CreateWindow: Created surface of size 1920x1080 21:23:32.739 T:18446744073433549104 NOTICE: GL_VENDOR = ARM 21:23:32.739 T:18446744073433549104 NOTICE: GL_RENDERER = Mali-T820 21:23:32.739 T:18446744073433549104 NOTICE: GL_VERSION = OpenGL ES 3.2 v1.r11p0-00rel0.f83e33152085d4fe9267c1d35c6f9fca 21:23:32.739 T:18446744073433549104 NOTICE: GL_SHADING_LANGUAGE_VERSION = OpenGL ES GLSL ES 3.20 21:23:32.740 T:18446744073433549104 DEBUG: GLES: Extension Support Test - GL_NVX_gpu_memory_info NO 21:23:32.740 T:18446744073433549104 NOTICE: GL_EXTENSIONS = GL_EXT_debug_marker GL_ARM_rgba8 GL_ARM_mali_shader_binary GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_image_external_essl3 GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_EXT_shadow_samplers GL_OES_texture_compression_astc GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_KHR_texture_compression_astc_sliced_3d GL_KHR_debug GL_EXT_occlusion_query_boolean GL_EXT_disjoint_timer_query GL_EXT_blend_minmax GL_EXT_discard_framebuffer GL_OES_get_program_binary GL_OES_texture_3D GL_EXT_texture_storage GL_EXT_multisampled_render_to_texture GL_OES_surfaceless_context GL_OES_texture_stencil8 GL_EXT_shader_pixel_local_storage GL_ARM_shader_framebuffer_fetch GL_ARM_shader_framebuffer_fetch_depth_stencil GL_ARM_mali_program_binary GL_EXT_sRGB GL_EXT_sRGB_write_control GL_EXT_texture_sRGB_decode GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_OES_texture_storage_multisample_2d_array GL_OES_shader_image_atomic GL_EXT_robustness GL_EXT_draw_buffers_indexed GL_OES_draw_buffers_indexed GL_EXT_texture_border_clamp GL_OES_texture_border_clamp GL_EXT_texture_cube_map_array GL_OES_texture_cube_map_array GL_OES_sample_variables GL_OES_sample_shading GL_OES_shader_multisample_interpolation GL_EXT_shader_io_blocks GL_OES_shader_io_blocks GL_EXT_tessellation_shader GL_OES_tessellation_shader GL_EXT_primitive_bounding_box GL_OES_primitive_bounding_box GL_EXT_geometry_shader GL_OES_geometry_shader GL_ANDROID_extension_pack_es31a GL_EXT_gpu_shader5 GL_OES_gpu_shader5 GL_EXT_texture_buffer GL_OES_texture_buffer GL_EXT_copy_image GL_OES_copy_image GL_EXT_color_buffer_half_float GL_EXT_color_buffer_float GL_OVR_multiview GL_OVR_multiview2 GL_OVR_multiview_multisampled_render_to_texture GL_ARM_packed_arithmetic GL_KHR_robustness GL_KHR_robust_buffer_access_behavior GL_EXT_draw_elements_base_vertex GL_OES_draw_elements_base_vertex 21:23:32.740 T:18446744073433549104 DEBUG: GLES: Extension Support Test - GL_EXT_texture_format_BGRA8888 YES 21:23:32.740 T:18446744073433549104 DEBUG: GLES: Extension Support Test - GL_IMG_texture_format_BGRA8888 NO 21:23:32.740 T:18446744073433549104 DEBUG: GLES: Extension Support Test - GL_APPLE_texture_format_BGRA8888 NO 21:23:32.742 T:18446744073433549104 DEBUG: GL: Vertex Shader compilation log: 21:23:32.743 T:18446744073433549104 DEBUG: GL: Vertex Shader compiled successfully 21:23:32.743 T:18446744073433549104 DEBUG: GL: Pixel Shader compilation log: 21:23:32.743 T:18446744073433549104 DEBUG: GL: Fragment Shader compiled successfully 21:23:32.744 T:18446744073433549104 DEBUG: GUI Shader [guishader_frag_default.glsl]- Initialise successful : 0xdf5bef00 21:23:32.745 T:18446744073433549104 DEBUG: GL: Vertex Shader compilation log: 21:23:32.745 T:18446744073433549104 DEBUG: GL: Vertex Shader compiled successfully 21:23:32.745 T:18446744073433549104 DEBUG: GL: Pixel Shader compilation log: 21:23:32.746 T:18446744073433549104 DEBUG: GL: Fragment Shader compiled successfully 21:23:32.747 T:18446744073433549104 DEBUG: GUI Shader [guishader_frag_texture.glsl]- Initialise successful : 0xdf419a00 21:23:32.747 T:18446744073433549104 DEBUG: GL: Vertex Shader compilation log: 21:23:32.748 T:18446744073433549104 DEBUG: GL: Vertex Shader compiled successfully 21:23:32.748 T:18446744073433549104 DEBUG: GL: Pixel Shader compilation log: 21:23:32.748 T:18446744073433549104 DEBUG: GL: Fragment Shader compiled successfully 21:23:32.749 T:18446744073433549104 DEBUG: GUI Shader [guishader_frag_multi.glsl]- Initialise successful : 0xdf419e80 21:23:32.750 T:18446744073433549104 DEBUG: GL: Vertex Shader compilation log: 21:23:32.750 T:18446744073433549104 DEBUG: GL: Vertex Shader compiled successfully 21:23:32.750 T:18446744073433549104 DEBUG: GL: Pixel Shader compilation log: 21:23:32.750 T:18446744073433549104 DEBUG: GL: Fragment Shader compiled successfully 21:23:32.751 T:18446744073433549104 DEBUG: GUI Shader [guishader_frag_fonts.glsl]- Initialise successful : 0xdf43e280 21:23:32.752 T:18446744073433549104 DEBUG: GL: Vertex Shader compilation log: 21:23:32.753 T:18446744073433549104 DEBUG: GL: Vertex Shader compiled successfully 21:23:32.753 T:18446744073433549104 DEBUG: GL: Pixel Shader compilation log: 21:23:32.753 T:18446744073433549104 DEBUG: GL: Fragment Shader compiled successfully 21:23:32.754 T:18446744073433549104 DEBUG: GUI Shader [guishader_frag_texture_noblend.glsl]- Initialise successful : 0xdf43e700 21:23:32.755 T:18446744073433549104 DEBUG: GL: Vertex Shader compilation log: 21:23:32.755 T:18446744073433549104 DEBUG: GL: Vertex Shader compiled successfully 21:23:32.755 T:18446744073433549104 DEBUG: GL: Pixel Shader compilation log: 21:23:32.755 T:18446744073433549104 DEBUG: GL: Fragment Shader compiled successfully 21:23:32.756 T:18446744073433549104 DEBUG: GUI Shader [guishader_frag_multi_blendcolor.glsl]- Initialise successful : 0xdf43eb00 21:23:32.757 T:18446744073433549104 DEBUG: GL: Vertex Shader compilation log: 21:23:32.757 T:18446744073433549104 DEBUG: GL: Vertex Shader compiled successfully 21:23:32.757 T:18446744073433549104 DEBUG: GL: Pixel Shader compilation log: 21:23:32.757 T:18446744073433549104 DEBUG: GL: Fragment Shader compiled successfully 21:23:32.758 T:18446744073433549104 DEBUG: GUI Shader [guishader_frag_rgba.glsl]- Initialise successful : 0xdf43ef80 21:23:32.758 T:18446744073433549104 DEBUG: GLES: Extension Support Test - GL_OES_EGL_image_external YES 21:23:32.759 T:18446744073433549104 DEBUG: GL: Vertex Shader compilation log: 21:23:32.759 T:18446744073433549104 DEBUG: GL: Vertex Shader compiled successfully 21:23:32.759 T:18446744073433549104 DEBUG: GL: Pixel Shader compilation log: 21:23:32.759 T:18446744073433549104 DEBUG: GL: Fragment Shader compiled successfully 21:23:32.760 T:18446744073433549104 DEBUG: GUI Shader [guishader_frag_rgba_oes.glsl]- Initialise successful : 0xdf3ef400 21:23:32.761 T:18446744073433549104 DEBUG: GL: Vertex Shader compilation log: 21:23:32.761 T:18446744073433549104 DEBUG: GL: Vertex Shader compiled successfully 21:23:32.761 T:18446744073433549104 DEBUG: GL: Pixel Shader compilation log: 21:23:32.761 T:18446744073433549104 DEBUG: GL: Fragment Shader compiled successfully 21:23:32.762 T:18446744073433549104 DEBUG: GUI Shader [guishader_frag_rgba_blendcolor.glsl]- Initialise successful : 0xdf3efa00 21:23:32.763 T:18446744073433549104 DEBUG: GL: Vertex Shader compilation log: 21:23:32.763 T:18446744073433549104 DEBUG: GL: Vertex Shader compiled successfully 21:23:32.763 T:18446744073433549104 DEBUG: GL: Pixel Shader compilation log: 21:23:32.763 T:18446744073433549104 DEBUG: GL: Fragment Shader compiled successfully 21:23:32.764 T:18446744073433549104 DEBUG: GUI Shader [guishader_frag_rgba_bob.glsl]- Initialise successful : 0xdf3efe00 21:23:32.764 T:18446744073433549104 DEBUG: GLES: Extension Support Test - GL_OES_EGL_image_external YES 21:23:32.765 T:18446744073433549104 DEBUG: GL: Vertex Shader compilation log: 21:23:32.765 T:18446744073433549104 DEBUG: GL: Vertex Shader compiled successfully 21:23:32.765 T:18446744073433549104 DEBUG: GL: Pixel Shader compilation log: 21:23:32.765 T:18446744073433549104 DEBUG: GL: Fragment Shader compiled successfully 21:23:32.766 T:18446744073433549104 DEBUG: GUI Shader [guishader_frag_rgba_bob_oes.glsl]- Initialise successful : 0xdf396400 21:23:32.766 T:18446744073433549104 DEBUG: CWinSystemEGL::CreateNewWindow: No need to create a new window 21:23:32.766 T:18446744073433549104 INFO: GLES: Maximum texture width: 8192 21:23:32.990 T:18446744073433549104 INFO: GLES: Enabling VSYNC 21:23:32.990 T:18446744073433549104 INFO: GLES: Selected vsync mode 10 21:23:32.992 T:18446744073433549104 INFO: load keymapping 21:23:32.998 T:18446744073433549104 INFO: Loading special://xbmc/system/keymaps/appcommand.xml 21:23:32.999 T:18446744073433549104 INFO: Loading special://xbmc/system/keymaps/customcontroller.AppleRemote.xml 21:23:33.003 T:18446744073433549104 INFO: Loading special://xbmc/system/keymaps/customcontroller.Harmony.xml 21:23:33.009 T:18446744073433549104 INFO: Loading special://xbmc/system/keymaps/gamepad.xml 21:23:33.015 T:18446744073433549104 INFO: Loading special://xbmc/system/keymaps/joystick.xml 21:23:33.020 T:18446744073433549104 INFO: Loading special://xbmc/system/keymaps/keyboard.xml 21:23:33.038 T:18446744073433549104 INFO: Loading special://xbmc/system/keymaps/mouse.xml 21:23:33.040 T:18446744073433549104 INFO: Loading special://xbmc/system/keymaps/remote.xml 21:23:33.053 T:18446744073433549104 INFO: Loading special://xbmc/system/keymaps/touchscreen.xml 21:23:33.059 T:18446744073433549104 INFO: GUI format 1920x1080, Display 1920x1080 @ 60.000004 - Full Screen 21:23:33.059 T:18446744073433549104 DEBUG: guilib: Fill viewport on change for solving rendering passes 21:23:33.060 T:18446744073433549104 INFO: CLangInfo: loading resource.language.de_de language information... 21:23:33.063 T:18446744073433549104 DEBUG: trying to set locale to de_DE.UTF-8 21:23:33.063 T:18446744073433549104 INFO: global locale set to C 21:23:33.063 T:18446744073433549104 INFO: CLangInfo: loading resource.language.de_de language strings... 21:23:33.112 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 3768 strings from file resource://resource.language.de_de/strings.po 21:23:33.145 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 12 strings from file resource://resource.language.en_gb/strings.po 21:23:33.223 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 1 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/audiodecoder.timidity/resources/language/English/strings.po 21:23:33.228 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 1 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/audioencoder.flac/resources/language/English/strings.po 21:23:33.230 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 6 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/audioencoder.lame/resources/language/English/strings.po 21:23:33.233 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 6 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/audioencoder.vorbis/resources/language/English/strings.po 21:23:33.237 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 1 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/audioencoder.xbmc.builtin.aac/resources/language/English/strings.po 21:23:33.240 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 1 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/audioencoder.xbmc.builtin.wma/resources/language/English/strings.po 21:23:33.242 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 18 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/game.controller.default/resources/language/resource.language.en_gb/strings.po 21:23:33.243 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 10 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/inputstream.adaptive/resources/language/resource.language.en_gb/strings.po 21:23:33.250 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 11 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.album.universal/resources/language/German/strings.po 21:23:33.254 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 2 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.album.universal/resources/language/English/strings.po 21:23:33.258 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 23 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.artists.universal/resources/language/German/strings.po 21:23:33.262 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 3 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.artists.universal/resources/language/English/strings.po 21:23:33.304 T:18446744073433549104 DEBUG: POParser: PO file has Win Style Line Endings. Converted in memory to Linux LF for file: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.themoviedb.org/resources/language/German/strings.po 21:23:33.305 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 7 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.themoviedb.org/resources/language/German/strings.po 21:23:33.309 T:18446744073433549104 DEBUG: POParser: PO file has Win Style Line Endings. Converted in memory to Linux LF for file: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.themoviedb.org/resources/language/English/strings.po 21:23:33.309 T:18446744073433549104 DEBUG: POParser: id:30003 was recently re-used in the English string file, which is not yet changed in the translated file. Using the English string instead 21:23:33.309 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 2 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.themoviedb.org/resources/language/English/strings.po 21:23:33.314 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 5 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.tvdb.com/resources/language/German/strings.po 21:23:33.318 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 5 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/metadata.tvdb.com/resources/language/English/strings.po 21:23:33.321 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 8 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.argustv/resources/language/resource.language.de_de/strings.po 21:23:33.322 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.argustv/resources/language/resource.language.en_gb/strings.po 21:23:33.325 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 67 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.dvblink/resources/language/resource.language.de_de/strings.po 21:23:33.326 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.dvblink/resources/language/resource.language.en_gb/strings.po 21:23:33.327 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 43 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.dvbviewer/resources/language/resource.language.de_de/strings.po 21:23:33.328 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 5 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.dvbviewer/resources/language/resource.language.en_gb/strings.po 21:23:33.328 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 3 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.filmon/resources/language/resource.language.de_de/strings.po 21:23:33.329 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.filmon/resources/language/resource.language.en_gb/strings.po 21:23:33.329 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 5 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.hdhomerun/resources/language/resource.language.de_de/strings.po 21:23:33.330 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.hdhomerun/resources/language/resource.language.en_gb/strings.po 21:23:33.331 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 74 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.hts/resources/language/resource.language.de_de/strings.po 21:23:33.332 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 1 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.hts/resources/language/resource.language.en_gb/strings.po 21:23:33.333 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 22 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.iptvsimple/resources/language/resource.language.de_de/strings.po 21:23:33.333 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.iptvsimple/resources/language/resource.language.en_gb/strings.po 21:23:33.335 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 71 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.mediaportal.tvserver/resources/language/resource.language.de_de/strings.po 21:23:33.336 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.mediaportal.tvserver/resources/language/resource.language.en_gb/strings.po 21:23:33.337 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 92 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.mythtv/resources/language/resource.language.de_de/strings.po 21:23:33.339 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 11 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.mythtv/resources/language/resource.language.en_gb/strings.po 21:23:33.340 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 28 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.nextpvr/resources/language/resource.language.de_de/strings.po 21:23:33.340 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.nextpvr/resources/language/resource.language.en_gb/strings.po 21:23:33.341 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 2 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.njoy/resources/language/resource.language.de_de/strings.po 21:23:33.341 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.njoy/resources/language/resource.language.en_gb/strings.po 21:23:33.343 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 2 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.octonet/resources/language/resource.language.en_gb/strings.po 21:23:33.343 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 8 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.pctv/resources/language/resource.language.de_de/strings.po 21:23:33.344 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.pctv/resources/language/resource.language.en_gb/strings.po 21:23:33.345 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 43 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.stalker/resources/language/resource.language.de_de/strings.po 21:23:33.346 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.stalker/resources/language/resource.language.en_gb/strings.po 21:23:33.346 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 25 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.vbox/resources/language/resource.language.de_de/strings.po 21:23:33.347 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.vbox/resources/language/resource.language.en_gb/strings.po 21:23:33.348 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 69 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.vdr.vnsi/resources/language/resource.language.de_de/strings.po 21:23:33.349 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 1 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.vdr.vnsi/resources/language/resource.language.en_gb/strings.po 21:23:33.350 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 27 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.vuplus/resources/language/resource.language.de_de/strings.po 21:23:33.350 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.vuplus/resources/language/resource.language.en_gb/strings.po 21:23:33.352 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 70 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.wmc/resources/language/resource.language.de_de/strings.po 21:23:33.353 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/pvr.wmc/resources/language/resource.language.en_gb/strings.po 21:23:33.365 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 1 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/screensaver.xbmc.builtin.dim/resources/language/resource.language.de_de/strings.po 21:23:33.365 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/screensaver.xbmc.builtin.dim/resources/language/resource.language.en_gb/strings.po 21:23:33.372 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 21 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/resources/language/German/strings.po 21:23:33.377 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/resources/language/English/strings.po 21:23:33.385 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 15 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/visualization.spectrum/resources/language/German/strings.po 21:23:33.386 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/visualization.spectrum/resources/language/English/strings.po 21:23:33.427 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 107 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.youtube/resources/language/resource.language.de_de/strings.po 21:23:33.429 T:18446744073433549104 DEBUG: POParser: id:30100 was recently re-used in the English string file, which is not yet changed in the translated file. Using the English string instead 21:23:33.429 T:18446744073433549104 DEBUG: POParser: id:30200 was recently re-used in the English string file, which is not yet changed in the translated file. Using the English string instead 21:23:33.430 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 101 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.youtube/resources/language/resource.language.en_gb/strings.po 21:23:33.432 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 44 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.libraryautoupdate/resources/language/resource.language.de_de/strings.po 21:23:33.433 T:18446744073433549104 DEBUG: POParser: id:30020 was recently re-used in the English string file, which is not yet changed in the translated file. Using the English string instead 21:23:33.433 T:18446744073433549104 DEBUG: POParser: id:30021 was recently re-used in the English string file, which is not yet changed in the translated file. Using the English string instead 21:23:33.433 T:18446744073433549104 DEBUG: POParser: id:30022 was recently re-used in the English string file, which is not yet changed in the translated file. Using the English string instead 21:23:33.433 T:18446744073433549104 DEBUG: POParser: id:30023 was recently re-used in the English string file, which is not yet changed in the translated file. Using the English string instead 21:23:33.433 T:18446744073433549104 DEBUG: POParser: id:30030 was recently re-used in the English string file, which is not yet changed in the translated file. Using the English string instead 21:23:33.433 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 5 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.libraryautoupdate/resources/language/resource.language.en_gb/strings.po 21:23:33.445 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 16 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.logviewer/resources/language/English/strings.po 21:23:33.454 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 24 strings from file /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/resources/language/resource.language.en_gb/strings.po 21:23:33.459 T:18446744073433549104 DEBUG: LoadMappings - loaded node "Motorola Nyxboard Hybrid" 21:23:33.459 T:18446744073433549104 DEBUG: LoadMappings - loaded node "CEC Adapter" 21:23:33.459 T:18446744073433549104 DEBUG: LoadMappings - loaded node "Pulse-Eight CEC Adapter" 21:23:33.460 T:18446744073433549104 DEBUG: LoadMappings - loaded node "iMON HID device" 21:23:33.460 T:18446744073433549104 DEBUG: LoadMappings - loaded node "WETEK Play remote" 21:23:33.460 T:18446744073433549104 DEBUG: LoadMappings - loaded node "" 21:23:33.498 T:18446744073433549104 DEBUG: Add-on bus: Registering add-on peripheral.joystick 21:23:33.498 T:18446744073433549104 DEBUG: PERIPHERAL - CreateAddon - creating peripheral add-on instance 'Joystick Support' 21:23:33.499 T:18446744073433549104 DEBUG: ADDON: Dll Initializing - Joystick Support 21:23:33.499 T:18446744073433549104 DEBUG: SECTION:LoadDLL(/data/app/org.xbmc.kodi-2/lib/arm/libperipheral.joystick.so) 21:23:33.499 T:18446744073433549104 DEBUG: Loading: /data/app/org.xbmc.kodi-2/lib/arm/libperipheral.joystick.so 21:23:33.537 T:18446744073433549104 DEBUG: AddOnLog: Joystick Support: No joystick APIs in use 21:23:33.540 T:18446744073433549104 DEBUG: AddOnLog: Joystick Support: Loaded 14 joystick families with 97 total joysticks 21:23:33.541 T:18446744073433549104 DEBUG: Calling TransferSettings for: Joystick Support 21:23:33.541 T:18446744073433549104 INFO: CPeripheralBusAndroid: scanning for input devices... 21:23:33.543 T:18446744073433549104 DEBUG: CPeripheralBusAndroid: ignoring virtual input device "Virtual" with ID -1 21:23:33.544 T:18446744073433549104 DEBUG: CPeripheralBusAndroid: ignoring unknown input device "cec_input" with ID 1 21:23:33.545 T:18446744073433549104 DEBUG: CPeripheralBusAndroid: ignoring unknown input device "gpio_keypad" with ID 2 21:23:33.546 T:18446744073433549104 DEBUG: CPeripheralBusAndroid: ignoring unknown input device "aml_keypad" with ID 3 21:23:33.547 T:18446744073433549104 DEBUG: CPeripheralBusAndroid: ignoring unknown input device "minix_mcu" with ID 4 21:23:33.547 T:18446744073109715248 DEBUG: Thread PeripBusAddon start, auto delete: false 21:23:33.548 T:18446744073433549104 DEBUG: SECTION:LoadDLL(libcurl.so) 21:23:33.548 T:18446744073108670768 DEBUG: Thread PeripEventScanner start, auto delete: false 21:23:33.548 T:18446744073433549104 DEBUG: Loading: /data/app/org.xbmc.kodi-2/lib/arm/libcurl.so 21:23:33.566 T:18446744073165191472 NOTICE: Running database version Addons27 21:23:33.566 T:18446744073165191472 DEBUG: Initialize, updating databases... 21:23:33.570 T:18446744073165191472 NOTICE: Running database version ViewModes6 21:23:33.575 T:18446744073165191472 NOTICE: Running database version Textures13 21:23:33.584 T:18446744073165191472 NOTICE: Running database version MyMusic60 21:23:33.599 T:18446744073165191472 NOTICE: Running database version MyVideos107 21:23:33.604 T:18446744073165191472 NOTICE: Running database version TV29 21:23:33.607 T:18446744073165191472 NOTICE: Running database version Epg11 21:23:33.611 T:18446744073165191472 DEBUG: Initialize, updating databases... DONE 21:23:33.615 T:18446744073433549104 INFO: DPMS: not supported on this platform 21:23:33.700 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc 21:23:33.700 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear 21:23:33.774 T:18446744073433549104 INFO: Unloading old skin ... 21:23:33.777 T:18446744073433549104 INFO: load skin from: /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary (version: 1.9.16) 21:23:33.778 T:18446744073433549104 INFO: load fonts for skin... 21:23:33.783 T:18446744073433549104 INFO: Loading fonts from /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/xml/Font.xml 21:23:33.826 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 132 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/language/resource.language.de_de/strings.po 21:23:33.828 T:18446744073433549104 DEBUG: LocalizeStrings: loaded 0 strings from file /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/language/resource.language.en_gb/strings.po 21:23:33.828 T:18446744073433549104 INFO: Loading skin includes from /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/xml/Includes.xml 21:23:33.952 T:18446744073433549104 INFO: load new skin... 21:23:33.952 T:18446744073433549104 INFO: Loading user windows, path /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/xml 21:23:33.984 T:18446744073433549104 DEBUG: Load Skin XML: 31.77ms 21:23:33.984 T:18446744073433549104 INFO: initialize new skin... 21:23:33.984 T:18446744073433549104 DEBUG: guilib: Fill viewport on change for solving rendering passes 21:23:33.984 T:18446744073433549104 INFO: Loading skin file: Pointer.xml, load type: LOAD_ON_GUI_INIT 21:23:33.990 T:18446744073433549104 DEBUG: OpenBundle - Opened bundle /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/media/Textures.xbt 21:23:33.991 T:18446744073433549104 INFO: Loading skin file: DialogVolumeBar.xml, load type: LOAD_ON_GUI_INIT 21:23:33.994 T:18446744073433549104 INFO: Loading skin file: DialogNotification.xml, load type: LOAD_ON_GUI_INIT 21:23:33.997 T:18446744073433549104 INFO: Loading skin file: DialogSeekBar.xml, load type: LOAD_ON_GUI_INIT 21:23:34.013 T:18446744073433549104 INFO: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT 21:23:34.016 T:18446744073433549104 INFO: Loading skin file: DialogExtendedProgressBar.xml, load type: LOAD_ON_GUI_INIT 21:23:34.024 T:18446744073433549104 INFO: Loading resource://resource.uisounds.kodi/sounds.xml 21:23:34.073 T:18446744073433549104 INFO: skin loaded... 21:23:34.073 T:18446744073433549104 DEBUG: Activating window ID: 12997 21:23:34.073 T:18446744073433549104 DEBUG: ------ Window Init () ------ 21:23:34.074 T:18446744073433549104 INFO: load splash image: /data/user/0/org.xbmc.kodi/cache/apk/assets/media/Splash.png 21:23:34.119 T:18446744073433549104 DEBUG: JSONRPC: JSON schema type definition references an unknown type Setting.Details.Setting 21:23:34.120 T:18446744073433549104 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList" 21:23:34.120 T:18446744073433549104 INFO: JSONRPC: Adding type "Setting.Details.SettingList" to list of incomplete definitions (waiting for "Setting.Details.Setting") 21:23:34.121 T:18446744073433549104 INFO: JSONRPC: Resolving incomplete types/methods referencing Setting.Details.Setting 21:23:34.195 T:18446744073433549104 INFO: JSONRPC v8.0.0: Successfully initialized 21:23:34.195 T:18446744073433549104 DEBUG: ADDON: Starting service addons. 21:23:34.234 T:18446744073088981296 DEBUG: Thread LanguageInvoker start, auto delete: false 21:23:34.234 T:18446744073088981296 INFO: initializing python engine. 21:23:34.234 T:18446744073087936816 DEBUG: Thread LanguageInvoker start, auto delete: false 21:23:34.235 T:18446744073087936816 DEBUG: Previous line repeats 1 times. 21:23:34.235 T:18446744073087936816 INFO: initializing python engine. 21:23:34.235 T:18446744073433549104 INFO: Previous line repeats 1 times. 21:23:34.235 T:18446744073433549104 DEBUG: Activating window ID: 12999 21:23:34.235 T:18446744073085847856 DEBUG: Thread LanguageInvoker start, auto delete: false 21:23:34.235 T:18446744073433549104 DEBUG: ------ Window Init (Startup.xml) ------ 21:23:34.235 T:18446744073085847856 INFO: initializing python engine. 21:23:34.235 T:18446744073433549104 INFO: Loading skin file: Startup.xml, load type: LOAD_EVERY_TIME 21:23:34.236 T:18446744073433549104 DEBUG: Activating window ID: 10000 21:23:34.236 T:18446744073433549104 DEBUG: ------ Window Deinit (Startup.xml) ------ 21:23:34.236 T:18446744073433549104 DEBUG: ------ Window Init (Home.xml) ------ 21:23:34.236 T:18446744073433549104 INFO: Loading skin file: Home.xml, load type: KEEP_IN_MEMORY 21:23:34.400 T:18446744073088981296 DEBUG: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): start processing 21:23:34.400 T:18446744073087936816 DEBUG: CPythonInvoker(1, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.youtube/resources/lib/startup.py): start processing 21:23:34.400 T:18446744073086892336 DEBUG: CPythonInvoker(2, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.libraryautoupdate/default.py): start processing 21:23:34.400 T:18446744073085847856 DEBUG: CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.logviewer/service.py): start processing 21:23:34.449 T:18446744073088981296 DEBUG: -->Python Interpreter Initialized<-- 21:23:34.450 T:18446744073088981296 DEBUG: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py" 21:23:34.451 T:18446744073088981296 DEBUG: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck:/:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-dynload 21:23:34.452 T:18446744073088981296 DEBUG: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck 21:23:34.454 T:18446744073088981296 DEBUG: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): instantiating addon using automatically obtained id of "service.xbmc.versioncheck" dependent on version 2.1.0 of the xbmc.python api 21:23:34.581 T:18446744073433549104 DEBUG: CDirectoryProvider[library://video/movies/]: refreshing.. 21:23:34.581 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/inprogress_movies.xsp]: refreshing.. 21:23:34.582 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/recent_unwatched_movies.xsp]: refreshing.. 21:23:34.582 T:18446744073082763568 DEBUG: Thread JobWorker start, auto delete: true 21:23:34.582 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_movies.xsp]: refreshing.. 21:23:34.582 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/random_movies.xsp]: refreshing.. 21:23:34.582 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://movies/genres/]: refreshing.. 21:23:34.582 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://movies/sets/]: refreshing.. 21:23:34.582 T:18446744073433549104 DEBUG: CDirectoryProvider[library://video/tvshows/]: refreshing.. 21:23:34.583 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://inprogresstvshows]: refreshing.. 21:23:34.583 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/recent_unwatched_episodes.xsp]: refreshing.. 21:23:34.583 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_tvshows.xsp]: refreshing.. 21:23:34.583 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://tvshows/genres/]: refreshing.. 21:23:34.583 T:18446744073081719088 DEBUG: Thread JobWorker start, auto delete: true 21:23:34.583 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://tvshows/studios/]: refreshing.. 21:23:34.584 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing.. 21:23:34.584 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing.. 21:23:34.584 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing.. 21:23:34.585 T:18446744073433549104 DEBUG: CDirectoryProvider[androidapp://sources/apps/]: refreshing.. 21:23:34.585 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing.. 21:23:34.585 T:18446744073433549104 DEBUG: CDirectoryProvider[library://video/]: refreshing.. 21:23:34.585 T:18446744073433549104 DEBUG: CDirectoryProvider[sources://video/]: refreshing.. 21:23:34.585 T:18446744073433549104 DEBUG: CDirectoryProvider[special://videoplaylists/]: refreshing.. 21:23:34.586 T:18446744073433549104 DEBUG: CDirectoryProvider[favourites://]: refreshing.. 21:23:34.614 T:18446744073082763568 DEBUG: RunQuery took 4 ms for 2 items query: select * from movie_view WHERE (movie_view.idFile IN (SELECT DISTINCT idFile FROM bookmark WHERE type = 1)) 21:23:34.620 T:18446744073081719088 DEBUG: RunQuery took 8 ms for 30 items query: select * from movie_view WHERE ((movie_view.dateAdded > '1900-01-01')) AND ((movie_view.playCount IS NULL OR movie_view.playCount < 1)) 21:23:34.629 T:18446744073433549104 DEBUG: ContextMenuManager: addon menus reloaded. 21:23:34.629 T:18446744073433549104 INFO: removing tempfiles 21:23:34.634 T:18446744073433549104 NOTICE: UpdateLibraries: Starting video library startup scan 21:23:34.635 T:18446744073433549104 DEBUG: ADDON: Starting service addons. 21:23:34.686 T:18446744073088981296 DEBUG: Version Check: Version 0.3.26 started 21:23:34.687 T:18446744073087936816 DEBUG: -->Python Interpreter Initialized<-- 21:23:34.687 T:18446744073087936816 DEBUG: CPythonInvoker(1, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.youtube/resources/lib/startup.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.youtube/resources/lib/startup.py" 21:23:34.699 T:18446744073082763568 DEBUG: RunQuery took 6 ms for 30 items query: select * from movie_view WHERE ((movie_view.playCount IS NULL OR movie_view.playCount = 0)) 21:23:34.758 T:18446744073085847856 DEBUG: -->Python Interpreter Initialized<-- 21:23:34.758 T:18446744073085847856 DEBUG: CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.logviewer/service.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.logviewer/service.py" 21:23:34.758 T:18446744073433549104 DEBUG: CRepositoryUpdater: previous update at 16.06.2018 21:20:56, next at 17.06.2018 21:20:56 21:23:34.759 T:18446744073433549104 NOTICE: initialize done 21:23:34.759 T:18446744073074247984 DEBUG: Thread Timer start, auto delete: false 21:23:34.759 T:18446744073433549104 NOTICE: Running the application... 21:23:34.759 T:18446744073086892336 DEBUG: -->Python Interpreter Initialized<-- 21:23:34.760 T:18446744073086892336 DEBUG: CPythonInvoker(2, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.libraryautoupdate/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.libraryautoupdate/default.py" 21:23:34.760 T:18446744073087936816 DEBUG: CPythonInvoker(1, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.youtube/resources/lib/startup.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.youtube/resources/lib:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.certifi/lib:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.chardet/lib:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.idna/lib:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.requests/lib:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.six/lib:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.urllib3/lib:/:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-dynload 21:23:34.761 T:18446744073087936816 DEBUG: CPythonInvoker(1, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.youtube/resources/lib/startup.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.youtube/resources/lib 21:23:34.761 T:18446744073433549104 DEBUG: no profile autoexec.py (/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/autoexec.py) found, skipping 21:23:34.762 T:18446744073085847856 DEBUG: CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.logviewer/service.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.logviewer:/:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-dynload 21:23:34.762 T:18446744073433549104 DEBUG: NetworkMessage - Starting network services 21:23:34.762 T:18446744073085847856 DEBUG: CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.logviewer/service.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.logviewer 21:23:34.762 T:18446744073087936816 DEBUG: CPythonInvoker(1, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.youtube/resources/lib/startup.py): instantiating addon using automatically obtained id of "plugin.video.youtube" dependent on version 2.20.0 of the xbmc.python api 21:23:34.763 T:18446744073433549104 NOTICE: CWebServer[8080]: Started 21:23:34.763 T:18446744073433549104 NOTICE: starting upnp client 21:23:34.767 T:18446744073433549104 INFO: JSONRPC Server: Successfully initialized 21:23:34.768 T:18446744073067981104 DEBUG: Thread EventServer start, auto delete: false 21:23:34.768 T:18446744073433549104 DEBUG: CWinSystemEGL::CreateNewWindow: No need to create a new window 21:23:34.768 T:18446744073066936624 DEBUG: Thread TCPServer start, auto delete: false 21:23:34.768 T:18446744073067981104 NOTICE: ES: Starting UDP Event server on port 9777 21:23:34.769 T:18446744073433549104 NOTICE: GL_VENDOR = ARM 21:23:34.769 T:18446744073067981104 NOTICE: UDP: Listening on port 9777 (ipv6 : true) 21:23:34.769 T:18446744073433549104 NOTICE: GL_RENDERER = Mali-T820 21:23:34.769 T:18446744073433549104 NOTICE: GL_VERSION = OpenGL ES 3.2 v1.r11p0-00rel0.f83e33152085d4fe9267c1d35c6f9fca 21:23:34.769 T:18446744073433549104 NOTICE: GL_SHADING_LANGUAGE_VERSION = OpenGL ES GLSL ES 3.20 21:23:34.770 T:18446744073433549104 DEBUG: GLES: Extension Support Test - GL_NVX_gpu_memory_info NO 21:23:34.770 T:18446744073433549104 NOTICE: GL_EXTENSIONS = GL_EXT_debug_marker GL_ARM_rgba8 GL_ARM_mali_shader_binary GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_image_external_essl3 GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_EXT_shadow_samplers GL_OES_texture_compression_astc GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_KHR_texture_compression_astc_sliced_3d GL_KHR_debug GL_EXT_occlusion_query_boolean GL_EXT_disjoint_timer_query GL_EXT_blend_minmax GL_EXT_discard_framebuffer GL_OES_get_program_binary GL_OES_texture_3D GL_EXT_texture_storage GL_EXT_multisampled_render_to_texture GL_OES_surfaceless_context GL_OES_texture_stencil8 GL_EXT_shader_pixel_local_storage GL_ARM_shader_framebuffer_fetch GL_ARM_shader_framebuffer_fetch_depth_stencil GL_ARM_mali_program_binary GL_EXT_sRGB GL_EXT_sRGB_write_control GL_EXT_texture_sRGB_decode GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_OES_texture_storage_multisample_2d_array GL_OES_shader_image_atomic GL_EXT_robustness GL_EXT_draw_buffers_indexed GL_OES_draw_buffers_indexed GL_EXT_texture_border_clamp GL_OES_texture_border_clamp GL_EXT_texture_cube_map_array GL_OES_texture_cube_map_array GL_OES_sample_variables GL_OES_sample_shading GL_OES_shader_multisample_interpolation GL_EXT_shader_io_blocks GL_OES_shader_io_blocks GL_EXT_tessellation_shader GL_OES_tessellation_shader GL_EXT_primitive_bounding_box GL_OES_primitive_bounding_box GL_EXT_geometry_shader GL_OES_geometry_shader GL_ANDROID_extension_pack_es31a GL_EXT_gpu_shader5 GL_OES_gpu_shader5 GL_EXT_texture_buffer GL_OES_texture_buffer GL_EXT_copy_image GL_OES_copy_image GL_EXT_color_buffer_half_float GL_EXT_color_buffer_float GL_OVR_multiview GL_OVR_multiview2 GL_OVR_multiview_multisampled_render_to_texture GL_ARM_packed_arithmetic GL_KHR_robustness GL_KHR_robust_buffer_access_behavior GL_EXT_draw_elements_base_vertex GL_OES_draw_elements_base_vertex 21:23:34.770 T:18446744073086892336 DEBUG: CPythonInvoker(2, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.libraryautoupdate/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.libraryautoupdate:/:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-dynload 21:23:34.770 T:18446744073433549104 DEBUG: GLES: Extension Support Test - GL_EXT_texture_format_BGRA8888 YES 21:23:34.770 T:18446744073086892336 DEBUG: CPythonInvoker(2, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.libraryautoupdate/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.libraryautoupdate 21:23:34.770 T:18446744073433549104 DEBUG: GLES: Extension Support Test - GL_IMG_texture_format_BGRA8888 NO 21:23:34.771 T:18446744073433549104 DEBUG: GLES: Extension Support Test - GL_APPLE_texture_format_BGRA8888 NO 21:23:34.771 T:18446744073433549104 DEBUG: GUI Shader - Tried to Initialise again. Was this intentional? 21:23:34.784 T:18446744073081719088 DEBUG: RunQuery took 10 ms for 34 items query: select * from movie_view 21:23:34.789 T:18446744073165191472 DEBUG: RunQuery took 4 ms for 16 items query: SELECT genre.genre_id, genre.name, count(1), count(files.playCount) FROM genre JOIN genre_link ON genre.genre_id = genre_link.genre_id JOIN movie_view ON genre_link.media_id = movie_view.idMovie AND genre_link.media_type='movie' JOIN files ON files.idFile = movie_view.idFile GROUP BY genre.genre_id 21:23:34.799 T:18446744073086892336 DEBUG: CPythonInvoker(2, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.libraryautoupdate/default.py): instantiating addon using automatically obtained id of "service.libraryautoupdate" dependent on version 2.24.0 of the xbmc.python api 21:23:34.800 T:18446744073085847856 DEBUG: CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.logviewer/service.py): instantiating addon using automatically obtained id of "script.logviewer" dependent on version 2.14.0 of the xbmc.python api 21:23:34.840 T:18446744073082763568 DEBUG: RunQuery took 12 ms for 5 items query: select * from movie_view JOIN sets ON movie_view.idSet = sets.idSet ORDER BY sets.idSet 21:23:34.915 T:18446744073165191472 DEBUG: RunQuery took 16 ms for 4 items query: SELECT * FROM tvshow_view WHERE watchedCount != 0 AND totalCount != watchedCount ORDER BY c00 21:23:34.923 T:18446744073082763568 DEBUG: RunQuery took 6 ms for 33 items query: select * from episode_view WHERE ((episode_view.dateAdded > '1900-01-01')) AND ((episode_view.playCount IS NULL OR episode_view.playCount < 1)) 21:23:34.992 T:18446744073081719088 DEBUG: RunQuery took 24 ms for 2 items query: SELECT * FROM tvshow_view WHERE ((tvshow_view.watchedcount = 0)) AND ((tvshow_view.totalCount > 0)) 21:23:35.028 T:18446744073165191472 DEBUG: RunQuery took 15 ms for 13 items query: SELECT genre.genre_id, genre.name FROM genre JOIN genre_link ON genre.genre_id = genre_link.genre_id JOIN tvshow_view ON genre_link.media_id = tvshow_view.idShow AND genre_link.media_type='tvshow' GROUP BY genre.genre_id 21:23:35.067 T:18446744073081719088 DEBUG: RunQuery took 16 ms for 12 items query: SELECT studio.studio_id, studio.name FROM studio JOIN studio_link ON studio.studio_id = studio_link.studio_id JOIN tvshow_view ON studio_link.media_id = tvshow_view.idShow AND studio_link.media_type='tvshow' GROUP BY studio.studio_id 21:23:35.184 T:18446744073080142128 DEBUG: Thread JobWorker start, auto delete: true 21:23:35.206 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.324 T:18446744073433549104 DEBUG: Previous line repeats 5 times. 21:23:35.325 T:18446744073433549104 DEBUG: ------ Window Init () ------ 21:23:35.348 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.350 T:18446744073082763568 DEBUG: ffmpeg[DAA3F930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.372 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.385 T:18446744073082763568 DEBUG: ffmpeg[DAA3F930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.400 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.416 T:18446744073165191472 DEBUG: ffmpeg[DF8DB930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.427 T:18446744073081719088 DEBUG: ffmpeg[DA940930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.428 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.433 T:18446744073082763568 DEBUG: ffmpeg[DAA3F930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.439 T:18446744073082763568 DEBUG: CAndroidAppDirectory::GetDirectory: apps 21:23:35.455 T:18446744073081719088 DEBUG: ffmpeg[DA940930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.461 T:18446744073433549104 INFO: GLES: Enabling VSYNC 21:23:35.461 T:18446744073433549104 INFO: GLES: Selected vsync mode 10 21:23:35.461 T:18446744073164146992 DEBUG: CActiveAE - display reset event 21:23:35.461 T:18446744073163102512 INFO: CActiveAESink::OpenSink - initialize sink 21:23:35.462 T:18446744073163102512 DEBUG: CActiveAESink::OpenSink - trying to open device AUDIOTRACK:AudioTrack 21:23:35.462 T:18446744073163102512 DEBUG: CAESinkAUDIOTRACK::Initialize requested: sampleRate 44100; format: AE_FMT_FLOAT; channels: 2 21:23:35.462 T:18446744073163102512 DEBUG: Updated SampleRate: 32000 Distance: 108900 21:23:35.462 T:18446744073163102512 DEBUG: Updated SampleRate: 44100 Distance: 0 21:23:35.462 T:18446744073165191472 DEBUG: ffmpeg[DF8DB930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:35.462 T:18446744073163102512 NOTICE: Trying to open: 44100 samplerate 12 channelMask 4 encoding 21:23:35.463 T:18446744073163102512 DEBUG: Minimum size we need for stream: 30208 21:23:35.464 T:18446744073163102512 DEBUG: Created Audiotrackbuffer with playing time of 171.247166 ms min buffer size: 60416 bytes 21:23:35.469 T:18446744073163102512 NOTICE: CAESinkAUDIOTRACK::Initializing with: m_sampleRate: 44100 format: AE_FMT_FLOAT (AE) method: PCM stream-type: PCM-STREAM min_buffer_size: 60416 m_frames: 3776 m_frameSize: 8 channels: 2 21:23:35.469 T:18446744073163102512 DEBUG: CActiveAESink::OpenSink - AUDIOTRACK Initialized: 21:23:35.469 T:18446744073163102512 DEBUG: Output Device : android 21:23:35.469 T:18446744073163102512 DEBUG: Sample Rate : 44100 21:23:35.470 T:18446744073163102512 DEBUG: Sample Format : AE_FMT_FLOAT 21:23:35.470 T:18446744073163102512 DEBUG: Channel Count : 2 21:23:35.470 T:18446744073163102512 DEBUG: Channel Layout: FL,FR 21:23:35.470 T:18446744073163102512 DEBUG: Frames : 3776 21:23:35.470 T:18446744073163102512 DEBUG: Frame Size : 8 21:23:35.476 T:18446744073164146992 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted 21:23:35.558 T:18446744073165191472 DEBUG: CMultiPathDirectory::GetDirectory(multipath://special%3a%2f%2fprofile%2fplaylists%2fvideo/special%3a%2f%2fprofile%2fplaylists%2fmixed/) 21:23:35.559 T:18446744073165191472 DEBUG: Getting Directory (special://profile/playlists/video) 21:23:35.561 T:18446744073165191472 DEBUG: Getting Directory (special://profile/playlists/mixed) 21:23:35.563 T:18446744073165191472 DEBUG: CMultiPathDirectory::MergeItems, items = 0 21:23:35.565 T:18446744073165191472 DEBUG: CFavourites::Load - no system favourites found, skipping 21:23:35.565 T:18446744073165191472 DEBUG: CFavourites::Load - no userdata favourites found, skipping 21:23:35.566 T:18446744073165191472 DEBUG: CRecentlyAddedJob::UpdateMusic() - Running RecentlyAdded home screen update 21:23:35.591 T:18446744073165191472 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 21:23:35.594 T:18446744073165191472 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 21:23:35.599 T:18446744073165191472 DEBUG: CRecentlyAddedJob::UpdateVideos() - Running RecentlyAdded home screen update 21:23:35.640 T:18446744073165191472 DEBUG: RunQuery took 10 ms for 10 items query: select * from movie_view ORDER BY dateAdded desc, idMovie desc LIMIT 10 21:23:35.699 T:18446744073165191472 DEBUG: RunQuery took 8 ms for 10 items query: select * from episode_view ORDER BY dateAdded desc, idEpisode desc LIMIT 10 21:23:35.772 T:18446744073165191472 DEBUG: RunQuery took 3 ms for 0 items query: select * from musicvideo_view ORDER BY dateAdded desc, idMVideo desc LIMIT 10 21:23:35.781 T:18446744073165191472 DEBUG: CRecentlyAddedJob::UpdateTotal() - Running RecentlyAdded home screen update 21:23:35.791 T:18446744073165191472 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 != '')) AND (artistview.strArtist <> 'Verschiedene Interpreten') 21:23:35.896 T:18446744073433549104 DEBUG: ------ Window Init (DialogExtendedProgressBar.xml) ------ 21:23:35.908 T:18446744073165191472 NOTICE: VideoInfoScanner: Starting scan .. 21:23:35.908 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnScanStarted from xbmc 21:23:35.908 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 16, from xbmc, message OnScanStarted 21:23:36.177 T:18446744073165191472 DEBUG: VideoInfoScanner: Skipping dir 'smb://192.168.1.80/video/Filme/' due to no change (fasthash) 21:23:36.203 T:18446744073165191472 DEBUG: VideoInfoScanner: Scanning dir 'smb://192.168.1.80/video/Filme/GoPro/' as not in the database 21:23:36.212 T:18446744073165191472 DEBUG: VideoInfoScanner: No (new) information was found in dir smb://192.168.1.80/video/Filme/GoPro/ 21:23:36.216 T:18446744073087936816 DEBUG: [plugin.video.youtube] YouTube settings startup initialization... 21:23:36.221 T:18446744073165191472 DEBUG: VideoInfoScanner: Skipping dir 'smb://192.168.1.80/video/Filme/GoPro/Silverster Scheveningen 2017/' due to no change (fasthash) 21:23:36.235 T:18446744073087936816 ERROR: GetDirectory - Error getting /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp/plugin.video.youtube/ 21:23:36.276 T:18446744073165191472 DEBUG: VideoInfoScanner: Skipping dir 'smb://192.168.1.80/video/Serien/Star Trek Discovery/' due to no change 21:23:36.300 T:18446744073165191472 DEBUG: VideoInfoScanner: Skipping dir 'smb://192.168.1.80/video/Serien/Westworld/' due to no change 21:23:36.327 T:18446744073165191472 DEBUG: VideoInfoScanner: Skipping dir 'smb://192.168.1.80/video/Serien/El Chapo/' due to no change 21:23:36.344 T:18446744073165191472 DEBUG: VideoInfoScanner: Skipping dir 'smb://192.168.1.80/video/Serien/Britannia/' due to no change 21:23:36.371 T:18446744073165191472 DEBUG: VideoInfoScanner: Skipping dir 'smb://192.168.1.80/video/Serien/Billions/' due to no change 21:23:36.397 T:18446744073165191472 DEBUG: VideoInfoScanner: Skipping dir 'smb://192.168.1.80/video/Serien/New Girl/' due to no change 21:23:36.398 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/Altered Carbon/' does not exist - skipping scan. 21:23:36.398 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/American Dad/' does not exist - skipping scan. 21:23:36.399 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/Babylon Berlin/' does not exist - skipping scan. 21:23:36.399 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/Dark/' does not exist - skipping scan. 21:23:36.399 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/Elementary/' does not exist - skipping scan. 21:23:36.399 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/Game of Thrones/' does not exist - skipping scan. 21:23:36.400 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/Gomorrha/' does not exist - skipping scan. 21:23:36.400 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/Gotham/' does not exist - skipping scan. 21:23:36.400 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/Marvels the Punisher/' does not exist - skipping scan. 21:23:36.401 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/Ss-Gb/' does not exist - skipping scan. 21:23:36.401 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/Stranger Things/' does not exist - skipping scan. 21:23:36.401 T:18446744073165191472 WARNING: Process directory 'smb://192.168.1.80/video/Serien/The Good Fight/' does not exist - skipping scan. 21:23:36.413 T:18446744073165191472 NOTICE: VideoInfoScanner: Finished scan. Scanning for video info took 00:00 21:23:36.413 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnScanFinished from xbmc 21:23:36.414 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 16, from xbmc, message OnScanFinished 21:23:36.415 T:18446744073081719088 DEBUG: CRecentlyAddedJob::UpdateVideos() - Running RecentlyAdded home screen update 21:23:36.430 T:18446744073086892336 NOTICE: service.libraryautoupdate-1.0.2 : Update Library Service starting... 21:23:36.431 T:18446744073086892336 NOTICE: service.libraryautoupdate-1.0.2 : update timers 21:23:36.434 T:18446744073086892336 NOTICE: service.libraryautoupdate-1.0.2 : Creating timer for Video Library 21:23:36.439 T:18446744073086892336 DEBUG: service.libraryautoupdate-1.0.2 : Created 1 schedules 21:23:36.457 T:18446744073081719088 DEBUG: RunQuery took 8 ms for 10 items query: select * from movie_view ORDER BY dateAdded desc, idMovie desc LIMIT 10 21:23:36.484 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/inprogress_movies.xsp]: refreshing.. 21:23:36.484 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/recent_unwatched_movies.xsp]: refreshing.. 21:23:36.484 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_movies.xsp]: refreshing.. 21:23:36.484 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/random_movies.xsp]: refreshing.. 21:23:36.484 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://movies/genres/]: refreshing.. 21:23:36.499 T:18446744073433549104 DEBUG: ------ Window Init (DialogNotification.xml) ------ 21:23:36.511 T:18446744073081719088 DEBUG: RunQuery took 9 ms for 10 items query: select * from episode_view ORDER BY dateAdded desc, idEpisode desc LIMIT 10 21:23:36.523 T:18446744073082763568 DEBUG: RunQuery took 3 ms for 2 items query: select * from movie_view WHERE (movie_view.idFile IN (SELECT DISTINCT idFile FROM bookmark WHERE type = 1)) 21:23:36.529 T:18446744073080142128 DEBUG: RunQuery took 6 ms for 30 items query: select * from movie_view WHERE ((movie_view.dateAdded > '1900-01-01')) AND ((movie_view.playCount IS NULL OR movie_view.playCount < 1)) 21:23:36.572 T:18446744073081719088 DEBUG: RunQuery took 3 ms for 0 items query: select * from musicvideo_view ORDER BY dateAdded desc, idMVideo desc LIMIT 10 21:23:36.582 T:18446744073081719088 DEBUG: CRecentlyAddedJob::UpdateTotal() - Running RecentlyAdded home screen update 21:23:36.590 T:18446744073081719088 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 != '')) AND (artistview.strArtist <> 'Verschiedene Interpreten') 21:23:36.602 T:18446744073082763568 DEBUG: RunQuery took 13 ms for 30 items query: select * from movie_view WHERE ((movie_view.playCount IS NULL OR movie_view.playCount = 0)) 21:23:36.668 T:18446744073081719088 DEBUG: RunQuery took 8 ms for 34 items query: select * from movie_view 21:23:36.671 T:18446744073080142128 DEBUG: RunQuery took 4 ms for 16 items query: SELECT genre.genre_id, genre.name, count(1), count(files.playCount) FROM genre JOIN genre_link ON genre.genre_id = genre_link.genre_id JOIN movie_view ON genre_link.media_id = movie_view.idMovie AND genre_link.media_type='movie' JOIN files ON files.idFile = movie_view.idFile GROUP BY genre.genre_id 21:23:36.716 T:18446744073433549104 DEBUG: ------ Window Deinit (DialogExtendedProgressBar.xml) ------ 21:23:36.745 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:36.752 T:18446744073165191472 DEBUG: ffmpeg[DF8DB930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:36.793 T:18446744073080142128 DEBUG: Previous line repeats 1 times. 21:23:36.793 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:36.797 T:18446744073082763568 DEBUG: ffmpeg[DAA3F930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:39.737 T:18446744073088981296 DEBUG: Version Check: Version installed {u'major': 17, u'tag': u'stable', u'minor': 6, u'revision': u'20171114-a9a7a20'} 21:23:39.738 T:18446744073088981296 DEBUG: Version Check: Version available {u'major': u'17', u'extrainfo': u'final', u'tagversion': u'', u'tag': u'stable', u'addon_support': u'yes', u'minor': u'6', u'revision': u'20171114-a9a7a20'} 21:23:39.738 T:18446744073088981296 DEBUG: Version Check: There is no newer stable available 21:23:39.739 T:18446744073088981296 INFO: CPythonInvoker(0, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/service.py): script successfully run 21:23:39.800 T:18446744073088981296 INFO: Python script stopped 21:23:39.800 T:18446744073088981296 DEBUG: Thread LanguageInvoker 18446744073088981296 terminating 21:23:41.297 T:18446744073433549104 DEBUG: ------ Window Deinit (DialogNotification.xml) ------ 21:23:42.600 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:42.601 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:23:42.604 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://inprogresstvshows]: refreshing.. 21:23:42.605 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/recent_unwatched_episodes.xsp]: refreshing.. 21:23:42.605 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_tvshows.xsp]: refreshing.. 21:23:42.605 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://tvshows/genres/]: refreshing.. 21:23:42.606 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://tvshows/studios/]: refreshing.. 21:23:42.655 T:18446744073165191472 DEBUG: RunQuery took 8 ms for 4 items query: SELECT * FROM tvshow_view WHERE watchedCount != 0 AND totalCount != watchedCount ORDER BY c00 21:23:42.665 T:18446744073081719088 DEBUG: RunQuery took 8 ms for 33 items query: select * from episode_view WHERE ((episode_view.dateAdded > '1900-01-01')) AND ((episode_view.playCount IS NULL OR episode_view.playCount < 1)) 21:23:42.666 T:18446744073082763568 DEBUG: RunQuery took 8 ms for 2 items query: SELECT * FROM tvshow_view WHERE ((tvshow_view.watchedcount = 0)) AND ((tvshow_view.totalCount > 0)) 21:23:42.736 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:42.752 T:18446744073082763568 DEBUG: RunQuery took 16 ms for 12 items query: SELECT studio.studio_id, studio.name FROM studio JOIN studio_link ON studio.studio_id = studio_link.studio_id JOIN tvshow_view ON studio_link.media_id = tvshow_view.idShow AND studio_link.media_type='tvshow' GROUP BY studio.studio_id 21:23:42.752 T:18446744073165191472 DEBUG: RunQuery took 16 ms for 13 items query: SELECT genre.genre_id, genre.name FROM genre JOIN genre_link ON genre.genre_id = genre_link.genre_id JOIN tvshow_view ON genre_link.media_id = tvshow_view.idShow AND genre_link.media_type='tvshow' GROUP BY genre.genre_id 21:23:42.769 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:42.817 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:23:42.818 T:18446744073433549104 DEBUG: [Warning] CGUITextureManager::GetTexturePath: could not find texture 'DefaultStudio.png' 21:23:42.829 T:18446744073080142128 DEBUG: Previous line repeats 5 times. 21:23:42.830 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:42.836 T:18446744073082763568 DEBUG: ffmpeg[DAA3F930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:42.838 T:18446744073165191472 DEBUG: ffmpeg[DF8DB930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:42.897 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:42.898 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:23:42.898 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:23:42.909 T:18446744073081719088 DEBUG: ffmpeg[DA940930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:43.216 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:43.549 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 21:23:43.549 T:18446744073433549104 DEBUG: OnKey: up (0xf080) pressed, action is Up 21:23:43.883 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 21:23:43.933 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:23:44.267 T:18446744073433549104 DEBUG: OnKey: return (0xf00d) pressed, action is Select 21:23:44.280 T:18446744073433549104 DEBUG: Activating window ID: 10025 21:23:44.581 T:18446744073433549104 DEBUG: ------ Window Deinit (Home.xml) ------ 21:23:44.635 T:18446744073433549104 DEBUG: ------ Window Init (MyVideoNav.xml) ------ 21:23:44.635 T:18446744073433549104 INFO: Loading skin file: MyVideoNav.xml, load type: KEEP_IN_MEMORY 21:23:44.880 T:18446744073433549104 DEBUG: CDirectoryProvider[]: refreshing.. 21:23:44.881 T:18446744073082763568 DEBUG: Previous line repeats 3 times. 21:23:44.881 T:18446744073082763568 ERROR: GetDirectory - Error getting 21:23:44.882 T:18446744073433549104 ERROR: Previous line repeats 1 times. 21:23:44.882 T:18446744073433549104 DEBUG: CDirectoryProvider[]: refreshing.. 21:23:44.882 T:18446744073165191472 ERROR: GetDirectory - Error getting 21:23:44.883 T:18446744073433549104 DEBUG: CDirectoryProvider[]: refreshing.. 21:23:44.883 T:18446744073082763568 ERROR: GetDirectory - Error getting 21:23:44.883 T:18446744073433549104 DEBUG: CDirectoryProvider[]: refreshing.. 21:23:44.884 T:18446744073081719088 ERROR: GetDirectory - Error getting 21:23:44.885 T:18446744073433549104 ERROR: Previous line repeats 2 times. 21:23:44.885 T:18446744073433549104 DEBUG: CGUIMediaWindow::GetDirectory (videodb://tvshows/titles/) 21:23:44.885 T:18446744073433549104 DEBUG: ParentPath = [videodb://tvshows/titles/] 21:23:44.910 T:18446744073433549104 DEBUG: RunQuery took 8 ms for 6 items query: SELECT * FROM tvshow_view WHERE totalCount IS NOT NULL AND totalCount > 0 21:23:44.932 T:18446744073006238000 DEBUG: Thread BackgroundLoader start, auto delete: false 21:23:44.956 T:18446744073006238000 DEBUG: Thread BackgroundLoader 18446744073006238000 terminating 21:23:44.969 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:23:44.986 T:18446744073165191472 DEBUG: ffmpeg[DF8DB930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:44.987 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:44.999 T:18446744073081719088 DEBUG: ffmpeg[DA940930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:45.000 T:18446744073082763568 DEBUG: ffmpeg[DAA3F930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:45.001 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:45.002 T:18446744073165191472 DEBUG: ffmpeg[DF8DB930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:45.012 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:23:45.012 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is Right 21:23:45.039 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:23:45.086 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:45.315 T:18446744073082763568 ERROR: DoWork - Direct texture file loading failed for resource://resource.images.studios.white/Showtime.png 21:23:45.316 T:18446744073082763568 DEBUG: GetImageHash - unable to stat url resource://resource.images.studios.white/Showtime.png 21:23:45.498 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:45.498 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:23:45.502 T:18446744073082763568 ERROR: DoWork - Direct texture file loading failed for resource://resource.images.studios.white/Univision.png 21:23:45.503 T:18446744073082763568 DEBUG: GetImageHash - unable to stat url resource://resource.images.studios.white/Univision.png 21:23:45.611 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:45.629 T:18446744073080142128 DEBUG: DoWork - took 128 ms to load special://masterprofile/Thumbnails/b/b3dbfe1d.jpg 21:23:45.630 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:45.701 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:23:45.701 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:23:45.704 T:18446744073165191472 ERROR: DoWork - Direct texture file loading failed for resource://resource.images.studios.white/CBS All Access.png 21:23:45.706 T:18446744073165191472 DEBUG: GetImageHash - unable to stat url resource://resource.images.studios.white/CBS All Access.png 21:23:45.795 T:18446744073081719088 DEBUG: ffmpeg[DA940930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:45.814 T:18446744073081719088 DEBUG: DoWork - took 111 ms to load special://masterprofile/Thumbnails/3/3ecf682a.jpg 21:23:45.860 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:45.910 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:23:45.910 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:23:45.913 T:18446744073080142128 ERROR: DoWork - Direct texture file loading failed for resource://resource.images.studios.white/HBO.png 21:23:45.914 T:18446744073080142128 DEBUG: GetImageHash - unable to stat url resource://resource.images.studios.white/HBO.png 21:23:45.977 T:18446744073082763568 DEBUG: ffmpeg[DAA3F930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:46.054 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:46.456 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 21:23:46.456 T:18446744073433549104 DEBUG: OnKey: left (0xf082) pressed, action is Left 21:23:46.764 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 21:23:47.301 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:23:47.301 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is Right 21:23:47.413 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:23:47.731 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:47.732 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:23:47.865 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:48.416 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 21:23:48.416 T:18446744073433549104 DEBUG: OnKey: up (0xf080) pressed, action is Up 21:23:48.530 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 21:23:49.015 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:23:49.162 T:18446744073433549104 DEBUG: OnKey: return (0xf00d) pressed, action is Select 21:23:49.165 T:18446744073433549104 DEBUG: CGUIMediaWindow::GetDirectory (videodb://tvshows/titles/18/) 21:23:49.165 T:18446744073433549104 DEBUG: ParentPath = [videodb://tvshows/titles/] 21:23:49.195 T:18446744073080142128 DEBUG: RunQuery took 13 ms for 1 items query: SELECT * FROM season_view WHERE season_view.idShow = 18 21:23:49.202 T:18446744073080142128 DEBUG: RunQuery took 5 ms for 0 items query: select * from movie_view join movielinktvshow on movielinktvshow.idMovie=movie_view.idMovie WHERE movielinktvshow.idShow = 18 21:23:49.233 T:18446744073433549104 DEBUG: CGUIMediaWindow::GetDirectory (videodb://tvshows/titles/18/-2/?tvshowid=18) 21:23:49.233 T:18446744073433549104 DEBUG: ParentPath = [videodb://tvshows/titles/] 21:23:49.255 T:18446744073081719088 DEBUG: RunQuery took 4 ms for 7 items query: select * from episode_view WHERE episode_view.idShow = 18 21:23:49.275 T:18446744073081719088 DEBUG: RunQuery took 5 ms for 0 items query: select * from movie_view join movielinktvshow on movielinktvshow.idMovie=movie_view.idMovie WHERE movielinktvshow.idShow = 18 21:23:49.306 T:18446744073433549104 DEBUG: WindowVideoNav::GetDirectory 21:23:49.332 T:18446744072953452848 DEBUG: Thread BackgroundLoader start, auto delete: false 21:23:49.356 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:23:49.372 T:18446744072953452848 DEBUG: Thread BackgroundLoader 18446744072953452848 terminating 21:23:50.452 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:50.453 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:23:50.781 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:51.032 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:23:51.359 T:18446744073433549104 DEBUG: OnKey: return (0xf00d) pressed, action is Select 21:23:51.429 T:18446744073433549104 DEBUG: ------ Window Init (DialogVideoInfo.xml) ------ 21:23:51.429 T:18446744073433549104 INFO: Loading skin file: DialogVideoInfo.xml, load type: KEEP_IN_MEMORY 21:23:51.510 T:18446744073081719088 DEBUG: ffmpeg[DA940930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:51.512 T:18446744073165191472 DEBUG: ffmpeg[DF8DB930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:51.515 T:18446744073082763568 DEBUG: ffmpeg[DAA3F930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:51.521 T:18446744073080142128 DEBUG: ffmpeg[DA7BF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:23:52.861 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:23:53.189 T:18446744073433549104 DEBUG: OnKey: return (0xf00d) pressed, action is Select 21:23:53.196 T:18446744073433549104 DEBUG: ------ Window Deinit (DialogVideoInfo.xml) ------ 21:23:53.199 T:18446744073433549104 INFO: Loading skin file: DialogContextMenu.xml, load type: KEEP_IN_MEMORY 21:23:53.213 T:18446744073433549104 DEBUG: ------ Window Init (DialogContextMenu.xml) ------ 21:23:54.742 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:54.743 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:23:55.069 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:23:55.188 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:23:55.322 T:18446744073433549104 DEBUG: OnKey: return (0xf00d) pressed, action is Select 21:23:55.323 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:23:55.580 T:18446744073433549104 DEBUG: ------ Window Deinit (DialogContextMenu.xml) ------ 21:23:55.582 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnAdd from xbmc 21:23:55.583 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnAdd 21:23:55.602 T:18446744073433549104 DEBUG: Loading settings for smb://192.168.1.80/video/Serien/Westworld/Season 2/Westworld - S02E01 - German Dubbed Dl.mkv 21:23:55.619 T:18446744073433549104 DEBUG: CPlayerCoreFactory::GetPlayers(smb://192.168.1.80/video/Serien/Westworld/Season 2/Westworld - S02E01 - German Dubbed Dl.mkv) 21:23:55.620 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules 21:23:55.620 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules 21:23:55.620 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp 21:23:55.620 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout 21:23:55.620 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp 21:23:55.620 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp 21:23:55.620 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams 21:23:55.620 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd 21:23:55.620 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage 21:23:55.621 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf 21:23:55.621 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv 21:23:55.621 T:18446744073433549104 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio 21:23:55.621 T:18446744073433549104 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players 21:23:55.621 T:18446744073433549104 DEBUG: CPlayerCoreFactory::GetPlayers: adding videodefaultplayer (VideoPlayer) 21:23:55.621 T:18446744073433549104 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=0 21:23:55.621 T:18446744073433549104 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1 21:23:55.621 T:18446744073433549104 DEBUG: CPlayerCoreFactory::GetPlayers: added 1 players 21:23:55.624 T:18446744073433549104 DEBUG: Radio UECP (RDS) Processor - new CDVDRadioRDSData 21:23:55.625 T:18446744073433549104 NOTICE: VideoPlayer: Opening: smb://192.168.1.80/video/Serien/Westworld/Season 2/Westworld - S02E01 - German Dubbed Dl.mkv 21:23:55.625 T:18446744073433549104 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED 21:23:55.625 T:18446744073433549104 DEBUG: LinuxRendererGL: Cleaning up GL resources 21:23:55.625 T:18446744072953452848 DEBUG: Thread VideoPlayer start, auto delete: false 21:23:55.625 T:18446744072953452848 NOTICE: Creating InputStream 21:23:55.640 T:18446744072953452848 DEBUG: CSMBFile::Open - opened smb://192.168.1.80/video/Serien/Westworld/Season 2/Westworld - S02E01 - German Dubbed Dl.mkv, fd=10000 21:23:55.642 T:18446744072953452848 DEBUG: ScanForExternalSubtitles: Searching for subtitles... 21:23:55.647 T:18446744072953452848 DEBUG: ScanForExternalSubtitles: END (total time: 6 ms) 21:23:55.647 T:18446744072953452848 NOTICE: Creating Demuxer 21:23:55.664 T:18446744072953452848 DEBUG: Open - probing detected format [matroska,webm] 21:23:55.668 T:18446744072953452848 DEBUG: Open - avformat_find_stream_info starting 21:23:55.703 T:18446744072953452848 DEBUG: Open - av_find_stream_info finished 21:23:55.703 T:18446744072953452848 INFO: ffmpeg[D2EED930]: Input #0, matroska,webm, smb://192.168.1.80/video/Serien/Westworld/Season 2/Westworld - S02E01 - German Dubbed Dl.mk': 21:23:55.703 T:18446744072953452848 INFO: ffmpeg[D2EED930]: Metadata: 21:23:55.703 T:18446744072953452848 INFO: ffmpeg[D2EED930]: encoder : libebml v1.3.1 + libmatroska v1.4.2 21:23:55.703 T:18446744072953452848 INFO: ffmpeg[D2EED930]: creation_time : 2018-04-23 12:03:59 21:23:55.704 T:18446744072953452848 INFO: ffmpeg[D2EED930]: Duration: 01:10:35.36, start: 0.000000, bitrate: 4056 kb/s 21:23:55.704 T:18446744072953452848 INFO: ffmpeg[D2EED930]: Stream #0:0(eng): Video: h264 (High), yuv420p(tv, bt709), 1920x1080 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 1k tbn, 47.95 tbc (default) 21:23:55.704 T:18446744072953452848 INFO: ffmpeg[D2EED930]: Stream #0:1(ger): Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s (default) (forced) 21:23:55.704 T:18446744072953452848 INFO: ffmpeg[D2EED930]: Stream #0:2(eng): Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s 21:23:55.705 T:18446744072953452848 DEBUG: CDVDDemuxFFmpeg::AddStream ID: 0 21:23:55.705 T:18446744072953452848 DEBUG: CDVDDemuxFFmpeg::AddStream ID: 1 21:23:55.705 T:18446744072953452848 DEBUG: CDVDDemuxFFmpeg::AddStream ID: 2 21:23:55.705 T:18446744072953452848 NOTICE: Opening stream: 0 source: 256 21:23:55.705 T:18446744072953452848 NOTICE: Creating video codec with codec id: 28 21:23:55.705 T:18446744072953452848 DEBUG: FactoryCodec - Video: mediacodec - Opening 21:23:55.706 T:18446744072953452848 INFO: CBitstreamConverter::Open bitstream to annexb init 21:23:55.995 T:18446744072953452848 DEBUG: CDVDVideoCodecAndroidMediaCodec::Open m_codecname(OMX.amlogic.avc.decoder.awesome), colorFormat(2135033992) 21:23:55.996 T:18446744072953452848 DEBUG: CDVDVideoCodecAndroidMediaCodec::Open m_codecname(OMX.amlogic.avc.decoder.awesome), colorFormat(21) 21:23:56.047 T:18446744072953452848 DEBUG: CDVDVideoCodecAndroidMediaCodec:: width(1920), height(1080), stride(0), slice-height(0), color-format(0) 21:23:56.048 T:18446744072953452848 DEBUG: CDVDVideoCodecAndroidMediaCodec:: crop-left(0), crop-top(0), crop-right(0), crop-bottom(0) 21:23:56.048 T:18446744072953452848 DEBUG: CDVDVideoCodecAndroidMediaCodec:: Multi-Surface Rendering 21:23:56.048 T:18446744072953452848 INFO: CDVDVideoCodecAndroidMediaCodec:: Open Android MediaCodec OMX.amlogic.avc.decoder.awesome 21:23:56.048 T:18446744072953452848 DEBUG: FactoryCodec - Video: amc-h264 - Opened 21:23:56.048 T:18446744072953452848 DEBUG: CVideoPlayerVideo::OpenStream - open stream with codec id: 28 21:23:56.048 T:18446744072953452848 NOTICE: Creating video thread 21:23:56.049 T:18446744072953452848 NOTICE: Opening stream: 1 source: 256 21:23:56.049 T:18446744072953452848 NOTICE: Finding audio codec for: 86019 21:23:56.050 T:18446744072953452848 DEBUG: FactoryCodec - Audio: passthrough - Opening 21:23:56.050 T:18446744072953452848 DEBUG: FactoryCodec - Audio: passthrough - Opened 21:23:56.050 T:18446744072953452848 NOTICE: Creating audio thread 21:23:56.050 T:18446744073088981296 DEBUG: Thread VideoPlayerVideo start, auto delete: false 21:23:56.051 T:18446744072953452848 DEBUG: ReadEditDecisionLists - Checking for edit decision lists (EDL) on local drive or remote share for: smb://192.168.1.80/video/Serien/Westworld/Season 2/Westworld - S02E01 - German Dubbed Dl.mkv 21:23:56.052 T:18446744073088981296 NOTICE: running thread: video_thread 21:23:56.053 T:18446744072885397808 DEBUG: Thread VideoPlayerAudio start, auto delete: false 21:23:56.054 T:18446744072953452848 DEBUG: OnPlayBackStarted: play state was 1, starting 1 21:23:56.054 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 2 21:23:56.055 T:18446744072885397808 NOTICE: running thread: CVideoPlayerAudio::Process() 21:23:56.055 T:18446744073433549104 DEBUG: PlayFile: OpenFile succeed, play state 2 21:23:56.056 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:23:56.056 T:18446744072885397808 DEBUG: CDVDAudio::Pause - pausing audio stream 21:23:56.058 T:18446744073433549104 DEBUG: OnPlayBackStarted: play state was 2, starting 0 21:23:56.058 T:18446744073088981296 INFO: CVideoPlayerVideo - Stillframe left, switching to normal playback 21:23:56.060 T:18446744072885397808 INFO: CAEStreamParser::SyncAC3 - AC3 stream detected (2 channels, 48000Hz) 21:23:56.065 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:23:56.066 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 0->4000000 21:23:56.067 T:18446744072885397808 NOTICE: Creating audio stream (codec id: 86019, channels: 2, sample rate: 48000, pass-through) 21:23:56.068 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Decode current state (2) 21:23:56.070 T:18446744072885397808 DEBUG: CVideoPlayerAudio:: synctype set to 0: clock feedback 21:23:56.077 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:23:56.093 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Decode current state (2) 21:23:56.098 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:23:56.109 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Decode current state (2) 21:23:56.112 T:18446744073081719088 DEBUG: CGUIInfoManager::SetCurrentMovie(smb://192.168.1.80/video/Serien/Westworld/Season 2/Westworld - S02E01 - German Dubbed Dl.mkv) 21:23:56.112 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnPlay from xbmc 21:23:56.112 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnPlay 21:23:56.126 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Decode current state (2) 21:23:56.132 T:18446744073081719088 DEBUG: GetMovieId (smb://192.168.1.80/video/Serien/Westworld/Season 2/Westworld - S02E01 - German Dubbed Dl.mkv), query = select idMovie from movie where idFile=254 21:23:56.135 T:18446744073081719088 DEBUG: GetEpisodeId (smb://192.168.1.80/video/Serien/Westworld/Season 2/Westworld - S02E01 - German Dubbed Dl.mkv), query = select idEpisode from episode where idFile=254 21:23:56.138 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:23:56.208 T:18446744073163102512 DEBUG: Previous line repeats 6 times. 21:23:56.208 T:18446744073163102512 INFO: CActiveAESink::OpenSink - initialize sink 21:23:56.209 T:18446744073163102512 DEBUG: Draining Audio 21:23:56.213 T:18446744073163102512 DEBUG: CActiveAESink::OpenSink - trying to open device AUDIOTRACK:AudioTrack 21:23:56.213 T:18446744073163102512 DEBUG: CAESinkAUDIOTRACK::Initialize requested: sampleRate 48000; format: AE_FMT_RAW; channels: 2 21:23:56.213 T:18446744073163102512 DEBUG: Updated SampleRate: 32000 Distance: 144000 21:23:56.213 T:18446744073163102512 DEBUG: Updated SampleRate: 44100 Distance: 35100 21:23:56.213 T:18446744073163102512 DEBUG: Updated SampleRate: 48000 Distance: 0 21:23:56.213 T:18446744073163102512 NOTICE: Trying to open: 48000 samplerate 12 channelMask 13 encoding 21:23:56.214 T:18446744073163102512 DEBUG: Minimum size we need for stream: 16416 21:23:56.214 T:18446744073163102512 DEBUG: Created Audiotrackbuffer with playing time of 171.000000 ms min buffer size: 32832 bytes 21:23:56.215 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:23:56.223 T:18446744073163102512 NOTICE: CAESinkAUDIOTRACK::Initializing with: m_sampleRate: 48000 format: AE_FMT_S16LE (AE) method: IEC (PT) stream-type: STREAM_TYPE_AC3 min_buffer_size: 32832 m_frames: 4104 m_frameSize: 4 channels: 2 21:23:56.226 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec:: width(1920), height(1080), stride(1920), slice-height(1088), color-format(17) 21:23:56.226 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec:: crop-left(0), crop-top(0), crop-right(1919), crop-bottom(1079) 21:23:56.226 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec:: Multi-Surface Rendering 21:23:56.227 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:23:56.228 T:18446744073163102512 DEBUG: CActiveAESink::OpenSink - AUDIOTRACK Initialized: 21:23:56.229 T:18446744073163102512 DEBUG: Output Device : android 21:23:56.229 T:18446744073163102512 DEBUG: Sample Rate : 48000 21:23:56.229 T:18446744073088981296 DEBUG: CRenderManager::Configure - change configuration. 1920x1080. display: 1920x1080. framerate: 25.00. format: MEDIACODECSURFACE 21:23:56.230 T:18446744073163102512 DEBUG: Sample Format : AE_FMT_S16NE 21:23:56.230 T:18446744073163102512 DEBUG: Channel Count : 2 21:23:56.230 T:18446744073163102512 DEBUG: Channel Layout: FL,FR 21:23:56.230 T:18446744073163102512 DEBUG: Frames : 4104 21:23:56.230 T:18446744073163102512 DEBUG: Frame Size : 4 21:23:56.249 T:18446744073164146992 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted 21:23:56.249 T:18446744073433549104 DEBUG: DeleteRenderer - deleting renderer 21:23:56.249 T:18446744073164146992 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted 21:23:56.249 T:18446744073433549104 DEBUG: LinuxRendererGL: Cleaning up GL resources 21:23:56.250 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:23:56.250 T:18446744073433549104 NOTICE: Using GL_TEXTURE_2D 21:23:56.253 T:18446744073433549104 NOTICE: GL: Using MediaCodec (Surface) render method 21:23:56.254 T:18446744073433549104 NOTICE: GL: NPOT texture support detected 21:23:56.254 T:18446744073433549104 DEBUG: CLinuxRendererGLES: Reorder drawpoints due to method change from 1 to 2048 21:23:56.255 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 1 21:23:56.255 T:18446744073433549104 DEBUG: CRenderManager::Configure - 3 21:23:56.257 T:18446744073433549104 DEBUG: RenderUpdate: Dest - 0.000000+0.000000-1920.000000x1080.000000 21:23:56.258 T:18446744073433549104 DEBUG: RenderUpdate: Adj - 0.000000+0.000000-1920.000000x1080.000000 21:23:56.259 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 2 21:23:56.259 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 3 21:23:56.259 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:23:56.259 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 0 21:23:56.260 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:23:56.260 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Audio - pts: 224000.000000, cache: 288000.017405, totalcache: 570999.979973 21:23:56.260 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Video - pts: 0.000000, cache: 50000.000000, totalcache: 100000.000000 21:23:56.263 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_RESYNC(-100000.000000) 21:23:56.263 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_RESYNC(-100000.000000) 21:23:56.263 T:18446744072885397808 DEBUG: CDVDAudio::Resume - resume audio stream 21:23:56.263 T:18446744073164146992 DEBUG: ActiveAE - start sync of audio stream 21:23:56.264 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:23:56.265 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 1 21:23:56.267 T:18446744073433549104 DEBUG: Activating window ID: 12005 21:23:56.268 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 4000000->0 21:23:56.269 T:18446744073433549104 DEBUG: ------ Window Deinit (MyVideoNav.xml) ------ 21:23:56.271 T:18446744073433549104 DEBUG: ------ Window Init (VideoFullScreen.xml) ------ 21:23:56.272 T:18446744073433549104 INFO: Loading skin file: VideoFullScreen.xml, load type: KEEP_IN_MEMORY 21:23:56.372 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error of -3.912281, start adjusting 21:23:56.372 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error -3.912281 below threshold of 30.000000 21:23:57.417 T:18446744072885397808 DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-44780.170688, adjusted:-44780.170688 21:23:59.495 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:23:59.495 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:23:59.496 T:18446744073433549104 DEBUG: ------ Window Init (DialogSeekBar.xml) ------ 21:23:59.499 T:18446744073433549104 DEBUG: ------ Window Init (Custom_1109_TopBarOverlay.xml) ------ 21:23:59.499 T:18446744073433549104 INFO: Loading skin file: Custom_1109_TopBarOverlay.xml, load type: KEEP_IN_MEMORY 21:23:59.814 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:23:59.931 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:23:59.931 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:00.268 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:00.268 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:24:00.268 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:00.531 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:00.532 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:24:00.532 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:00.764 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:00.765 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:24:00.765 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:00.912 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:01.065 T:18446744073088981296 DEBUG: CPullupCorrection: detected pattern of length 1: 40000.00, frameduration: 40000.000000 21:24:01.529 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnSeek from xbmc 21:24:01.530 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnSeek 21:24:01.534 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 2 21:24:01.534 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:24:01.535 T:18446744072953452848 DEBUG: demuxer seek to: 305126.000000 21:24:01.556 T:18446744072885397808 DEBUG: CDVDAudio::Pause - pausing audio stream 21:24:02.026 T:18446744073088981296 WARNING: CRenderManager::WaitForBuffer - timeout waiting for buffer 21:24:24.901 T:18446744072953452848 DEBUG: SeekTime - seek ended up on time 309680 21:24:24.901 T:18446744072953452848 DEBUG: demuxer seek to: 305126.000000, success 21:24:24.901 T:18446744072953452848 DEBUG: CVideoPlayer::FlushBuffers - flushing buffers 21:24:24.910 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Reset Current state (3) 21:24:24.916 T:18446744072885397808 DEBUG: CDVDAudio::Flush - flush audio stream 21:24:24.916 T:18446744072885397808 DEBUG: CDVDAudio::Pause - pausing audio stream 21:24:24.959 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_SYNCHRONIZE 21:24:24.960 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_SYNCHRONIZE 21:24:24.969 T:18446744073088981296 INFO: CVideoPlayerVideo - Stillframe left, switching to normal playback 21:24:24.970 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:24:24.970 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 0->4000000 21:24:24.970 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Decode current state (2) 21:24:24.970 T:18446744072885397808 INFO: CAEStreamParser::SyncAC3 - AC3 stream detected (2 channels, 48000Hz) 21:24:24.975 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 1 21:24:24.982 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:24:25.071 T:18446744072953452848 DEBUG: Previous line repeats 5 times. 21:24:25.071 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 2 21:24:25.071 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 3 21:24:25.071 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:24:25.071 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 0 21:24:25.072 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:24:25.072 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Audio - pts: 309888000.000000, cache: 292911.771482, totalcache: 570999.979973 21:24:25.072 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Video - pts: 309680000.000000, cache: 50000.000000, totalcache: 100000.000000 21:24:25.072 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_RESYNC(309580000.000000) 21:24:25.072 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_RESYNC(309580000.000000) 21:24:25.072 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:24:25.072 T:18446744072885397808 DEBUG: CDVDAudio::Resume - resume audio stream 21:24:25.072 T:18446744073164146992 DEBUG: ActiveAE - start sync of audio stream 21:24:25.081 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 1 21:24:25.084 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 4000000->0 21:24:25.172 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error of 43.322671, start adjusting 21:24:25.172 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error 11.322671 below threshold of 30.000000 21:24:26.112 T:18446744073165191472 DEBUG: Thread JobWorker 18446744073165191472 terminating (autodelete) 21:24:26.112 T:18446744073080142128 DEBUG: Thread JobWorker 18446744073080142128 terminating (autodelete) 21:24:26.113 T:18446744073082763568 DEBUG: Thread JobWorker 18446744073082763568 terminating (autodelete) 21:24:26.205 T:18446744073081719088 DEBUG: Thread JobWorker 18446744073081719088 terminating (autodelete) 21:24:26.238 T:18446744072885397808 DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-15060.131616, adjusted:-15060.131616 21:24:27.448 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:27.449 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:27.764 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:27.781 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:24:27.782 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:28.099 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:28.113 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:24:28.113 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:28.264 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:28.630 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:24:28.630 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:28.764 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:29.183 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:24:29.183 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:29.314 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:29.849 T:18446744073088981296 DEBUG: CPullupCorrection: detected pattern of length 1: 40000.00, frameduration: 40000.000000 21:24:29.947 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnSeek from xbmc 21:24:29.947 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnSeek 21:24:29.948 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 2 21:24:29.949 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:24:29.949 T:18446744072953452848 DEBUG: demuxer seek to: 614441.000000 21:24:29.951 T:18446744072885397808 DEBUG: CDVDAudio::Pause - pausing audio stream 21:24:30.442 T:18446744073088981296 WARNING: CRenderManager::WaitForBuffer - timeout waiting for buffer 21:24:42.641 T:18446744072953452848 DEBUG: SeekTime - seek ended up on time 614920 21:24:42.641 T:18446744072953452848 DEBUG: demuxer seek to: 614441.000000, success 21:24:42.641 T:18446744072953452848 DEBUG: CVideoPlayer::FlushBuffers - flushing buffers 21:24:42.644 T:18446744072885397808 DEBUG: CDVDAudio::Flush - flush audio stream 21:24:42.644 T:18446744072885397808 DEBUG: CDVDAudio::Pause - pausing audio stream 21:24:42.650 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Reset Current state (3) 21:24:42.699 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_SYNCHRONIZE 21:24:42.700 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_SYNCHRONIZE 21:24:42.711 T:18446744073088981296 INFO: CVideoPlayerVideo - Stillframe left, switching to normal playback 21:24:42.712 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Decode current state (2) 21:24:42.720 T:18446744072885397808 INFO: CAEStreamParser::SyncAC3 - AC3 stream detected (2 channels, 48000Hz) 21:24:42.721 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 1 21:24:42.723 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:24:42.724 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 0->4000000 21:24:42.735 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:24:42.818 T:18446744072953452848 DEBUG: Previous line repeats 6 times. 21:24:42.818 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 2 21:24:42.818 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 3 21:24:42.818 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:24:42.818 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 0 21:24:42.819 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:24:42.819 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Audio - pts: 615136000.000000, cache: 290766.146480, totalcache: 570999.979973 21:24:42.819 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Video - pts: 614920000.000000, cache: 50000.000000, totalcache: 100000.000000 21:24:42.819 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_RESYNC(614820000.000000) 21:24:42.819 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_RESYNC(614820000.000000) 21:24:42.819 T:18446744072885397808 DEBUG: CDVDAudio::Resume - resume audio stream 21:24:42.819 T:18446744073164146992 DEBUG: ActiveAE - start sync of audio stream 21:24:42.819 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:24:42.841 T:18446744073088981296 DEBUG: Previous line repeats 1 times. 21:24:42.841 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 1 21:24:42.845 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 4000000->0 21:24:42.964 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error of 53.873709, start adjusting 21:24:42.964 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error 21.873709 below threshold of 30.000000 21:24:45.528 T:18446744073433549104 DEBUG: ------ Window Deinit (DialogSeekBar.xml) ------ 21:24:45.528 T:18446744073433549104 DEBUG: ------ Window Deinit (Custom_1109_TopBarOverlay.xml) ------ 21:24:45.662 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:45.662 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:45.663 T:18446744073433549104 DEBUG: ------ Window Init (DialogSeekBar.xml) ------ 21:24:45.665 T:18446744073433549104 DEBUG: ------ Window Init (Custom_1109_TopBarOverlay.xml) ------ 21:24:45.986 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:45.996 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:24:45.997 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:46.330 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:46.349 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:24:46.349 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:46.682 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:46.713 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:24:46.713 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:46.847 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:47.080 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:24:47.080 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:24:47.231 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:24:47.582 T:18446744073088981296 DEBUG: CPullupCorrection: detected pattern of length 1: 40000.00, frameduration: 40000.000000 21:24:47.832 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnSeek from xbmc 21:24:47.832 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnSeek 21:24:47.840 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 2 21:24:47.841 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:24:47.841 T:18446744072953452848 DEBUG: demuxer seek to: 919841.000000 21:24:47.870 T:18446744072885397808 DEBUG: CDVDAudio::Pause - pausing audio stream 21:24:48.326 T:18446744073088981296 WARNING: CRenderManager::WaitForBuffer - timeout waiting for buffer 21:25:09.002 T:18446744072953452848 DEBUG: SeekTime - seek ended up on time 923120 21:25:09.002 T:18446744072953452848 DEBUG: demuxer seek to: 919841.000000, success 21:25:09.002 T:18446744072953452848 DEBUG: CVideoPlayer::FlushBuffers - flushing buffers 21:25:09.012 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Reset Current state (3) 21:25:09.012 T:18446744072885397808 DEBUG: CDVDAudio::Flush - flush audio stream 21:25:09.012 T:18446744072885397808 DEBUG: CDVDAudio::Pause - pausing audio stream 21:25:09.058 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_SYNCHRONIZE 21:25:09.058 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_SYNCHRONIZE 21:25:09.075 T:18446744073088981296 INFO: CVideoPlayerVideo - Stillframe left, switching to normal playback 21:25:09.075 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:25:09.075 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 0->4000000 21:25:09.076 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Decode current state (2) 21:25:09.079 T:18446744072885397808 INFO: CAEStreamParser::SyncAC3 - AC3 stream detected (2 channels, 48000Hz) 21:25:09.081 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 1 21:25:09.089 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:25:09.184 T:18446744072953452848 DEBUG: Previous line repeats 7 times. 21:25:09.184 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 2 21:25:09.184 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 3 21:25:09.184 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:25:09.185 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 0 21:25:09.185 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:25:09.185 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Audio - pts: 923328000.000000, cache: 307407.855477, totalcache: 570999.979973 21:25:09.185 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Video - pts: 923120000.000000, cache: 50000.000000, totalcache: 100000.000000 21:25:09.185 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_RESYNC(923020000.000000) 21:25:09.185 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_RESYNC(923020000.000000) 21:25:09.185 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:25:09.186 T:18446744072885397808 DEBUG: CDVDAudio::Resume - resume audio stream 21:25:09.186 T:18446744073164146992 DEBUG: ActiveAE - start sync of audio stream 21:25:09.197 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:25:09.215 T:18446744073088981296 DEBUG: Previous line repeats 1 times. 21:25:09.215 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 1 21:25:09.218 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 4000000->0 21:25:09.311 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error of 23.201856, start adjusting 21:25:09.311 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error 0.201856 below threshold of 30.000000 21:25:10.378 T:18446744072885397808 DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-29331.959818, adjusted:-29331.959818 21:25:11.879 T:18446744073433549104 DEBUG: ------ Window Deinit (DialogSeekBar.xml) ------ 21:25:11.879 T:18446744073433549104 DEBUG: ------ Window Deinit (Custom_1109_TopBarOverlay.xml) ------ 21:25:13.598 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:13.599 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:25:13.600 T:18446744073433549104 DEBUG: ------ Window Init (DialogSeekBar.xml) ------ 21:25:13.602 T:18446744073433549104 DEBUG: ------ Window Init (Custom_1109_TopBarOverlay.xml) ------ 21:25:13.930 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:13.986 T:18446744073088981296 DEBUG: CPullupCorrection: detected pattern of length 1: 40000.00, frameduration: 40000.000000 21:25:14.146 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:14.147 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:25:14.480 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:14.517 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:25:14.517 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:25:14.831 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:14.963 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:25:14.963 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:25:15.115 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:15.464 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:25:15.464 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:25:15.596 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:16.231 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnSeek from xbmc 21:25:16.231 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 2 21:25:16.232 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:25:16.232 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnSeek 21:25:16.232 T:18446744072953452848 DEBUG: demuxer seek to: 1230037.000000 21:25:16.266 T:18446744072885397808 DEBUG: CDVDAudio::Pause - pausing audio stream 21:25:16.726 T:18446744073088981296 WARNING: CRenderManager::WaitForBuffer - timeout waiting for buffer 21:25:36.372 T:18446744072953452848 DEBUG: SeekTime - seek ended up on time 1232160 21:25:36.372 T:18446744072953452848 DEBUG: demuxer seek to: 1230037.000000, success 21:25:36.372 T:18446744072953452848 DEBUG: CVideoPlayer::FlushBuffers - flushing buffers 21:25:36.381 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Reset Current state (3) 21:25:36.404 T:18446744072885397808 DEBUG: CDVDAudio::Flush - flush audio stream 21:25:36.405 T:18446744072885397808 DEBUG: CDVDAudio::Pause - pausing audio stream 21:25:36.423 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_SYNCHRONIZE 21:25:36.424 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_SYNCHRONIZE 21:25:36.434 T:18446744073088981296 INFO: CVideoPlayerVideo - Stillframe left, switching to normal playback 21:25:36.434 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:25:36.434 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 0->4000000 21:25:36.434 T:18446744072885397808 INFO: CAEStreamParser::SyncAC3 - AC3 stream detected (2 channels, 48000Hz) 21:25:36.435 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Decode current state (2) 21:25:36.435 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 1 21:25:36.447 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:25:36.536 T:18446744072953452848 DEBUG: Previous line repeats 7 times. 21:25:36.537 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 2 21:25:36.537 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 3 21:25:36.537 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:25:36.537 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 0 21:25:36.537 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:25:36.537 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Audio - pts: 1232416000.000000, cache: 288000.017405, totalcache: 570999.979973 21:25:36.537 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Video - pts: 1232160000.000000, cache: 50000.000000, totalcache: 100000.000000 21:25:36.537 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_RESYNC(1232060000.000000) 21:25:36.538 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_RESYNC(1232060000.000000) 21:25:36.538 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:25:36.538 T:18446744072885397808 DEBUG: CDVDAudio::Resume - resume audio stream 21:25:36.538 T:18446744073164146992 DEBUG: ActiveAE - start sync of audio stream 21:25:36.549 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:25:36.570 T:18446744073088981296 DEBUG: Previous line repeats 1 times. 21:25:36.571 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 1 21:25:36.583 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 4000000->0 21:25:36.661 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error of 13.039935, start adjusting 21:25:36.661 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error 0.039935 below threshold of 30.000000 21:25:37.694 T:18446744072885397808 DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-28431.245055, adjusted:-28431.245055 21:25:38.983 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:38.983 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:25:38.984 T:18446744073433549104 DEBUG: ------ Window Init (DialogSeekBar.xml) ------ 21:25:38.985 T:18446744073433549104 DEBUG: ------ Window Init (Custom_1109_TopBarOverlay.xml) ------ 21:25:39.315 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:39.381 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:25:39.381 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:25:39.701 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:39.815 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:25:39.815 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:25:40.147 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:40.180 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:25:40.180 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:25:40.314 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:40.516 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:25:40.516 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is StepForward 21:25:40.846 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:25:41.281 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnSeek from xbmc 21:25:41.282 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnSeek 21:25:41.288 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 2 21:25:41.288 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:25:41.289 T:18446744072953452848 DEBUG: demuxer seek to: 1536782.000000 21:25:41.311 T:18446744072885397808 DEBUG: CDVDAudio::Pause - pausing audio stream 21:25:41.792 T:18446744073088981296 WARNING: CRenderManager::WaitForBuffer - timeout waiting for buffer 21:26:02.346 T:18446744072953452848 DEBUG: SeekTime - seek ended up on time 1538720 21:26:02.346 T:18446744072953452848 DEBUG: demuxer seek to: 1536782.000000, success 21:26:02.346 T:18446744072953452848 DEBUG: CVideoPlayer::FlushBuffers - flushing buffers 21:26:02.353 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Reset Current state (3) 21:26:02.354 T:18446744072885397808 DEBUG: CDVDAudio::Flush - flush audio stream 21:26:02.355 T:18446744072885397808 DEBUG: CDVDAudio::Pause - pausing audio stream 21:26:02.398 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_SYNCHRONIZE 21:26:02.399 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_SYNCHRONIZE 21:26:02.408 T:18446744073088981296 INFO: CVideoPlayerVideo - Stillframe left, switching to normal playback 21:26:02.408 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::Decode current state (2) 21:26:02.409 T:18446744072885397808 INFO: CAEStreamParser::SyncAC3 - AC3 stream detected (2 channels, 48000Hz) 21:26:02.420 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:26:02.420 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 0->4000000 21:26:02.432 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:26:02.445 T:18446744072953452848 DEBUG: Previous line repeats 1 times. 21:26:02.445 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 1 21:26:02.455 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:26:02.500 T:18446744072953452848 DEBUG: Previous line repeats 3 times. 21:26:02.500 T:18446744072953452848 DEBUG: CVideoPlayer::HandleMessages - player started 2 21:26:02.500 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 3 21:26:02.500 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:26:02.500 T:18446744072953452848 DEBUG: CVideoPlayer::SetCaching - caching state 0 21:26:02.500 T:18446744072953452848 DEBUG: CDVDClock::SetSpeedAdjust - adjusted:0.000000 21:26:02.500 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Audio - pts: 1538944000.000000, cache: 327934.511482, totalcache: 570999.979973 21:26:02.501 T:18446744072953452848 DEBUG: VideoPlayer::Sync - Video - pts: 1538720000.000000, cache: 50000.000000, totalcache: 100000.000000 21:26:02.501 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_RESYNC(1538616065.488518) 21:26:02.501 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_RESYNC(1538616065.488518) 21:26:02.501 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:26:02.501 T:18446744072885397808 DEBUG: CDVDAudio::Resume - resume audio stream 21:26:02.501 T:18446744073164146992 DEBUG: ActiveAE - start sync of audio stream 21:26:02.513 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 0 21:26:02.531 T:18446744073088981296 DEBUG: Previous line repeats 1 times. 21:26:02.532 T:18446744073088981296 DEBUG: CVideoPlayerVideo::CalcDropRequirement - hurry: 1 21:26:02.535 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 4000000->0 21:26:02.601 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error of 24.565558, start adjusting 21:26:02.602 T:18446744073164146992 DEBUG: ActiveAE::SyncStream - average error 0.565558 below threshold of 30.000000 21:26:03.689 T:18446744072885397808 DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-28222.657457, adjusted:-28222.657457 21:26:04.637 T:18446744072885397808 DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-12512.520677, adjusted:-12512.520677 21:26:05.229 T:18446744073433549104 DEBUG: ------ Window Deinit (DialogSeekBar.xml) ------ 21:26:05.230 T:18446744073433549104 DEBUG: ------ Window Deinit (Custom_1109_TopBarOverlay.xml) ------ 21:26:07.313 T:18446744073088981296 DEBUG: CPullupCorrection: detected pattern of length 1: 40000.00, frameduration: 40000.000000 21:26:12.864 T:18446744072885397808 DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:11205.479061, adjusted:11205.479061 21:26:15.913 T:18446744072885397808 DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-10902.098647, adjusted:-10902.098647 21:26:24.072 T:18446744072885397808 DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:11272.916508, adjusted:11272.916508 21:26:26.970 T:18446744072953452848 ERROR: ffmpeg[D2EED930]: [matroska,webm] Read error 21:26:27.158 T:18446744072885397808 DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:-11878.243366, adjusted:-11878.243366 21:26:27.412 T:18446744073433549104 DEBUG: Activating window ID: 10147 21:26:27.412 T:18446744073433549104 DEBUG: ------ Window Init (DialogTextViewer.xml) ------ 21:26:27.412 T:18446744073433549104 INFO: Loading skin file: DialogTextViewer.xml, load type: KEEP_IN_MEMORY 21:26:34.324 T:18446744072885397808 DEBUG: CDVDClock::ErrorAdjust - CVideoPlayerAudio::OutputPacket - error:11278.855171, adjusted:11278.855171 21:26:34.814 T:18446744073088981296 DEBUG: CDVDVideoCodecAndroidMediaCodec::virtual void CDVDVideoCodecAndroidMediaCodec::SetCodecControl(int) 0->10000000 21:26:34.815 T:18446744073088981296 INFO: CVideoPlayerVideo - Stillframe detected, switching to forced 25.000000 fps 21:26:34.815 T:18446744073088981296 DEBUG: CPullupCorrection: pattern lost on diff 200000.000000, number of losses 1 21:26:34.879 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_EOF 21:26:34.896 T:18446744072953452848 NOTICE: CVideoPlayer::OnExit() 21:26:34.896 T:18446744072953452848 NOTICE: VideoPlayer: eof, waiting for queues to empty 21:26:34.897 T:18446744072953452848 NOTICE: Closing stream player 1 21:26:34.897 T:18446744072953452848 NOTICE: CDVDMessageQueue(audio)::WaitUntilEmpty 21:26:34.897 T:18446744072953452848 NOTICE: Waiting for audio thread to exit 21:26:34.898 T:18446744072885397808 DEBUG: CVideoPlayerAudio - CDVDMsg::GENERAL_SYNCHRONIZE 21:26:34.898 T:18446744072885397808 NOTICE: thread end: CVideoPlayerAudio::OnExit() 21:26:34.898 T:18446744072953452848 NOTICE: Closing audio device 21:26:34.898 T:18446744072885397808 DEBUG: Thread VideoPlayerAudio 18446744072885397808 terminating 21:26:35.043 T:18446744073433549104 ERROR: CDVDMediaCodecInfo::ReleaseOutputBuffer ExceptionCheck index(5), render(1) 21:26:35.050 T:18446744073164146992 DEBUG: CActiveAE::DiscardStream - audio stream deleted 21:26:35.050 T:18446744073164146992 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted 21:26:35.051 T:18446744072953452848 DEBUG: Previous line repeats 1 times. 21:26:35.051 T:18446744072953452848 NOTICE: Deleting audio codec 21:26:35.051 T:18446744072953452848 NOTICE: Closing stream player 2 21:26:35.051 T:18446744072953452848 NOTICE: CDVDMessageQueue(video)::WaitUntilEmpty 21:26:35.144 T:18446744073088981296 DEBUG: CVideoPlayerVideo - CDVDMsg::GENERAL_SYNCHRONIZE 21:26:35.145 T:18446744072953452848 NOTICE: waiting for video thread to exit 21:26:35.145 T:18446744073088981296 ERROR: Got MSGQ_ABORT or MSGO_IS_ERROR return true 21:26:35.145 T:18446744073088981296 NOTICE: thread end: video_thread 21:26:35.145 T:18446744072953452848 NOTICE: deleting video codec 21:26:35.145 T:18446744073088981296 DEBUG: Thread VideoPlayerVideo 18446744073088981296 terminating 21:26:35.249 T:18446744072953452848 DEBUG: CSMBFile::Close closing fd 10000 21:26:35.251 T:18446744072953452848 DEBUG: OnPlayBackEnded: play state was 2, starting 0 21:26:35.254 T:18446744072953452848 DEBUG: Thread VideoPlayer 18446744072953452848 terminating 21:26:35.254 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnStop from xbmc 21:26:35.255 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnStop 21:26:35.266 T:18446744073433549104 DEBUG: CGUIWindowManager::PreviousWindow: Deactivate 21:26:35.267 T:18446744073433549104 DEBUG: ------ Window Deinit (DialogTextViewer.xml) ------ 21:26:35.267 T:18446744073433549104 DEBUG: ------ Window Deinit (VideoFullScreen.xml) ------ 21:26:35.272 T:18446744073164146992 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted 21:26:35.284 T:18446744073433549104 DEBUG: CGUIWindowManager::PreviousWindow: Activate new 21:26:35.296 T:18446744073433549104 DEBUG: ------ Window Init (MyVideoNav.xml) ------ 21:26:35.299 T:18446744073433549104 DEBUG: CGUIMediaWindow::GetDirectory (videodb://tvshows/titles/18/-2/?tvshowid=18) 21:26:35.299 T:18446744073433549104 DEBUG: ParentPath = [videodb://tvshows/titles/18/-2/?tvshowid=18] 21:26:35.316 T:18446744073433549104 DEBUG: RunQuery took 4 ms for 7 items query: select * from episode_view WHERE episode_view.idShow = 18 21:26:35.330 T:18446744073433549104 DEBUG: RunQuery took 4 ms for 0 items query: select * from movie_view join movielinktvshow on movielinktvshow.idMovie=movie_view.idMovie WHERE movielinktvshow.idShow = 18 21:26:35.352 T:18446744073433549104 DEBUG: WindowVideoNav::GetDirectory 21:26:35.373 T:18446744073088981296 DEBUG: Thread BackgroundLoader start, auto delete: false 21:26:35.399 T:18446744073163102512 INFO: CActiveAESink::OpenSink - initialize sink 21:26:35.400 T:18446744073163102512 DEBUG: Draining Audio 21:26:35.404 T:18446744073163102512 DEBUG: CActiveAESink::OpenSink - trying to open device AUDIOTRACK:AudioTrack 21:26:35.404 T:18446744073163102512 DEBUG: CAESinkAUDIOTRACK::Initialize requested: sampleRate 44100; format: AE_FMT_FLOAT; channels: 2 21:26:35.404 T:18446744073163102512 DEBUG: Updated SampleRate: 32000 Distance: 108900 21:26:35.405 T:18446744073163102512 DEBUG: Updated SampleRate: 44100 Distance: 0 21:26:35.405 T:18446744073163102512 NOTICE: Trying to open: 44100 samplerate 12 channelMask 4 encoding 21:26:35.406 T:18446744073163102512 DEBUG: Minimum size we need for stream: 30208 21:26:35.406 T:18446744073163102512 DEBUG: Created Audiotrackbuffer with playing time of 171.247166 ms min buffer size: 60416 bytes 21:26:35.409 T:18446744073163102512 NOTICE: CAESinkAUDIOTRACK::Initializing with: m_sampleRate: 44100 format: AE_FMT_FLOAT (AE) method: PCM stream-type: PCM-STREAM min_buffer_size: 60416 m_frames: 3776 m_frameSize: 8 channels: 2 21:26:35.409 T:18446744073163102512 DEBUG: CActiveAESink::OpenSink - AUDIOTRACK Initialized: 21:26:35.409 T:18446744073163102512 DEBUG: Output Device : android 21:26:35.409 T:18446744073163102512 DEBUG: Sample Rate : 44100 21:26:35.409 T:18446744073163102512 DEBUG: Sample Format : AE_FMT_FLOAT 21:26:35.410 T:18446744073163102512 DEBUG: Channel Count : 2 21:26:35.410 T:18446744073163102512 DEBUG: Channel Layout: FL,FR 21:26:35.410 T:18446744073163102512 DEBUG: Frames : 3776 21:26:35.410 T:18446744073163102512 DEBUG: Frame Size : 8 21:26:35.412 T:18446744073088981296 DEBUG: Thread BackgroundLoader 18446744073088981296 terminating 21:26:35.417 T:18446744073164146992 DEBUG: CActiveAE::ClearDiscardedBuffers - buffer pool deleted 21:26:35.739 T:18446744073088981296 DEBUG: Previous line repeats 1 times. 21:26:35.739 T:18446744073088981296 DEBUG: Thread JobWorker start, auto delete: true 21:26:35.778 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:26:35.778 T:18446744073433549104 DEBUG: Activating window ID: 10147 21:26:35.778 T:18446744073433549104 DEBUG: ------ Window Init (DialogTextViewer.xml) ------ 21:26:35.779 T:18446744073433549104 NOTICE: CVideoPlayer::CloseFile() 21:26:35.779 T:18446744073433549104 NOTICE: VideoPlayer: waiting for threads to exit 21:26:35.779 T:18446744073433549104 NOTICE: VideoPlayer: finished waiting 21:26:35.779 T:18446744073433549104 DEBUG: DeleteRenderer - deleting renderer 21:26:35.779 T:18446744073433549104 DEBUG: LinuxRendererGL: Cleaning up GL resources 21:26:35.779 T:18446744073433549104 NOTICE: CVideoPlayer::CloseFile() 21:26:35.779 T:18446744073433549104 NOTICE: VideoPlayer: waiting for threads to exit 21:26:35.779 T:18446744073433549104 NOTICE: VideoPlayer: finished waiting 21:26:35.782 T:18446744073433549104 DEBUG: Radio UECP (RDS) Processor - delete ~CDVDRadioRDSData 21:26:35.783 T:18446744073022110000 DEBUG: DoWork - Saving file state for video item smb://192.168.1.80/video/Serien/Westworld/Season 2/Westworld - S02E01 - German Dubbed Dl.mkv 21:26:35.798 T:18446744073088981296 DEBUG: ffmpeg[DB02D930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:26:35.815 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnUpdate from xbmc 21:26:35.815 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 16, from xbmc, message OnUpdate 21:26:35.823 T:18446744073432201520 DEBUG: CAnnouncementManager - Announcement: OnUpdate from xbmc 21:26:35.824 T:18446744073432201520 DEBUG: GOT ANNOUNCEMENT, type: 16, from xbmc, message OnUpdate 21:27:05.817 T:18446744073088981296 DEBUG: Thread JobWorker 18446744073088981296 terminating (autodelete) 21:27:05.847 T:18446744073022110000 DEBUG: Thread JobWorker 18446744073022110000 terminating (autodelete) 21:27:07.267 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 21:27:07.267 T:18446744073433549104 DEBUG: OnKey: backspace (0xf008) pressed, action is Back 21:27:07.514 T:18446744073433549104 DEBUG: ------ Window Deinit (DialogTextViewer.xml) ------ 21:27:07.598 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 21:27:09.686 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:27:09.686 T:18446744073433549104 DEBUG: OnKey: backspace (0xf008) pressed, action is Back 21:27:09.687 T:18446744073433549104 DEBUG: CGUIMediaWindow::GetDirectory (videodb://tvshows/titles/) 21:27:09.688 T:18446744073433549104 DEBUG: ParentPath = [videodb://tvshows/] 21:27:09.690 T:18446744073022110000 DEBUG: Thread JobWorker start, auto delete: true 21:27:09.713 T:18446744073022110000 DEBUG: RunQuery took 8 ms for 6 items query: SELECT * FROM tvshow_view WHERE totalCount IS NOT NULL AND totalCount > 0 21:27:09.742 T:18446744072984721712 DEBUG: Thread BackgroundLoader start, auto delete: false 21:27:09.765 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 21:27:09.766 T:18446744072984721712 DEBUG: Thread BackgroundLoader 18446744072984721712 terminating 21:27:09.768 T:18446744072984721712 DEBUG: Thread JobWorker start, auto delete: true 21:27:09.780 T:18446744072984721712 DEBUG: Previous line repeats 2 times. 21:27:09.780 T:18446744072984721712 DEBUG: ffmpeg[D4CBF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:27:09.781 T:18446744072983677232 DEBUG: ffmpeg[D4BC0930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:27:09.782 T:18446744073022110000 DEBUG: ffmpeg[D7067930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:27:09.785 T:18446744072982632752 DEBUG: ffmpeg[D4AC1930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:27:09.786 T:18446744073022110000 ERROR: DoWork - Direct texture file loading failed for resource://resource.images.studios.white/HBO.png 21:27:09.786 T:18446744073022110000 DEBUG: GetImageHash - unable to stat url resource://resource.images.studios.white/HBO.png 21:27:09.793 T:18446744072983677232 DEBUG: ffmpeg[D4BC0930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:27:09.794 T:18446744072984721712 DEBUG: ffmpeg[D4CBF930]: [swscaler] No accelerated colorspace conversion found from yuv420p to bgra. 21:27:09.829 T:18446744073433549104 DEBUG: Activating window ID: 10147 21:27:09.830 T:18446744073433549104 DEBUG: ------ Window Init (DialogTextViewer.xml) ------ 21:27:10.381 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 21:27:10.381 T:18446744073433549104 DEBUG: OnKey: backspace (0xf008) pressed, action is Back 21:27:10.516 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 21:27:10.630 T:18446744073433549104 DEBUG: ------ Window Deinit (DialogTextViewer.xml) ------ 21:27:11.100 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 21:27:11.273 T:18446744073433549104 DEBUG: OnKey: backspace (0xf008) pressed, action is Back 21:27:11.273 T:18446744073433549104 DEBUG: CGUIWindowManager::PreviousWindow: Deactivate 21:27:11.599 T:18446744073433549104 DEBUG: ------ Window Deinit (MyVideoNav.xml) ------ 21:27:11.602 T:18446744073433549104 DEBUG: CGUIWindowManager::PreviousWindow: Activate new 21:27:11.602 T:18446744073433549104 DEBUG: ------ Window Init (Home.xml) ------ 21:27:11.614 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/inprogress_movies.xsp]: refreshing.. 21:27:11.614 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/recent_unwatched_movies.xsp]: refreshing.. 21:27:11.615 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_movies.xsp]: refreshing.. 21:27:11.615 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/random_movies.xsp]: refreshing.. 21:27:11.615 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://movies/genres/]: refreshing.. 21:27:11.615 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://inprogresstvshows]: refreshing.. 21:27:11.616 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/recent_unwatched_episodes.xsp]: refreshing.. 21:27:11.616 T:18446744073433549104 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_tvshows.xsp]: refreshing.. 21:27:11.616 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://tvshows/genres/]: refreshing.. 21:27:11.617 T:18446744073433549104 DEBUG: CDirectoryProvider[videodb://tvshows/studios/]: refreshing.. 21:27:11.617 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing.. 21:27:11.618 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing.. 21:27:11.618 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing.. 21:27:11.618 T:18446744073433549104 DEBUG: CDirectoryProvider[androidapp://sources/apps/]: refreshing.. 21:27:11.618 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing.. 21:27:11.625 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 21:27:11.666 T:18446744073022110000 DEBUG: RunQuery took 5 ms for 2 items query: select * from movie_view WHERE (movie_view.idFile IN (SELECT DISTINCT idFile FROM bookmark WHERE type = 1)) 21:27:11.671 T:18446744072983677232 DEBUG: RunQuery took 9 ms for 30 items query: select * from movie_view WHERE ((movie_view.playCount IS NULL OR movie_view.playCount = 0)) 21:27:11.672 T:18446744072982632752 DEBUG: RunQuery took 7 ms for 30 items query: select * from movie_view WHERE ((movie_view.dateAdded > '1900-01-01')) AND ((movie_view.playCount IS NULL OR movie_view.playCount < 1)) 21:27:11.747 T:18446744073022110000 DEBUG: RunQuery took 10 ms for 34 items query: select * from movie_view 21:27:11.836 T:18446744072983677232 DEBUG: RunQuery took 9 ms for 4 items query: SELECT * FROM tvshow_view WHERE watchedCount != 0 AND totalCount != watchedCount ORDER BY c00 21:27:11.837 T:18446744072982632752 DEBUG: RunQuery took 8 ms for 16 items query: SELECT genre.genre_id, genre.name, count(1), count(files.playCount) FROM genre JOIN genre_link ON genre.genre_id = genre_link.genre_id JOIN movie_view ON genre_link.media_id = movie_view.idMovie AND genre_link.media_type='movie' JOIN files ON files.idFile = movie_view.idFile GROUP BY genre.genre_id 21:27:11.908 T:18446744073022110000 DEBUG: RunQuery took 13 ms for 33 items query: select * from episode_view WHERE ((episode_view.dateAdded > '1900-01-01')) AND ((episode_view.playCount IS NULL OR episode_view.playCount < 1)) 21:27:11.911 T:18446744072983677232 DEBUG: RunQuery took 9 ms for 2 items query: SELECT * FROM tvshow_view WHERE ((tvshow_view.watchedcount = 0)) AND ((tvshow_view.totalCount > 0)) 21:27:11.936 T:18446744072982632752 DEBUG: RunQuery took 15 ms for 13 items query: SELECT genre.genre_id, genre.name FROM genre JOIN genre_link ON genre.genre_id = genre_link.genre_id JOIN tvshow_view ON genre_link.media_id = tvshow_view.idShow AND genre_link.media_type='tvshow' GROUP BY genre.genre_id 21:27:11.981 T:18446744072983677232 DEBUG: RunQuery took 12 ms for 12 items query: SELECT studio.studio_id, studio.name FROM studio JOIN studio_link ON studio.studio_id = studio_link.studio_id JOIN tvshow_view ON studio_link.media_id = tvshow_view.idShow AND studio_link.media_type='tvshow' GROUP BY studio.studio_id 21:27:12.234 T:18446744073433549104 DEBUG: [Warning] CGUITextureManager::GetTexturePath: could not find texture 'DefaultStudio.png' 21:27:12.235 T:18446744072983677232 DEBUG: CAndroidAppDirectory::GetDirectory: apps 21:27:12.235 T:18446744073433549104 DEBUG: [Warning] CGUITextureManager::GetTexturePath: could not find texture 'DefaultStudio.png' 21:27:12.671 T:18446744073433549104 DEBUG: Previous line repeats 4 times. 21:27:12.671 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 21:27:13.024 T:18446744073433549104 DEBUG: OnKey: backspace (0xf008) pressed, action is Back 21:27:13.024 T:18446744073433549104 DEBUG: CGUIWindowManager::PreviousWindow: Deactivate 21:27:13.025 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 21:27:14.137 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:27:14.138 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:27:14.465 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:27:14.648 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:27:14.782 T:18446744073433549104 DEBUG: OnKey: return (0xf00d) pressed, action is Select 21:27:14.782 T:18446744073433549104 DEBUG: Activating window ID: 11100 21:27:15.097 T:18446744073433549104 DEBUG: ------ Window Deinit (Home.xml) ------ 21:27:15.099 T:18446744073433549104 DEBUG: ------ Window Init (Custom_1100_AddonLauncher.xml) ------ 21:27:15.099 T:18446744073433549104 INFO: Loading skin file: Custom_1100_AddonLauncher.xml, load type: KEEP_IN_MEMORY 21:27:15.226 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing.. 21:27:15.227 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing.. 21:27:15.227 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing.. 21:27:15.227 T:18446744073433549104 DEBUG: CDirectoryProvider[androidapp://sources/apps/]: refreshing.. 21:27:15.227 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing.. 21:27:15.228 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://all/]: refreshing.. 21:27:15.228 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://user]: refreshing.. 21:27:15.229 T:18446744073433549104 DEBUG: CDirectoryProvider[addons://outdated/]: refreshing.. 21:27:15.230 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:27:15.449 T:18446744072982632752 DEBUG: CAndroidAppDirectory::GetDirectory: apps 21:27:15.580 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:27:15.580 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:27:15.608 T:18446744073022110000 DEBUG: CAddonDatabase: SELECT repo.id FROM repo .. took 9 ms 21:27:15.650 T:18446744073022110000 DEBUG: CAddonDatabase: query SELECT * FROM addons JOIN addonlinkrepo ON addons.id=addonlinkrepo.idAddon WHERE addonlinkrepo.idRepo IN (1) ORDER BY addons.addonID returned 1086 rows in 42 ms 21:27:15.731 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:27:15.771 T:18446744072982632752 DEBUG: CAddonMgr::GetAvailableUpdates took 101 ms 21:27:15.796 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:27:15.796 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:27:15.866 T:18446744072982632752 DEBUG: CAddonMgr::GetAvailableUpdates took 94 ms 21:27:15.930 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:27:15.963 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:27:15.963 T:18446744073433549104 DEBUG: OnKey: down (0xf081) pressed, action is Down 21:27:16.115 T:18446744072984721712 DEBUG: DoWork - took 103 ms to load androidapp://sources/apps/com.droidlogic.readlog.png 21:27:16.124 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x14, sym: 0x0112, unicode: 0x0000, modifier: 0x0 21:27:16.208 T:18446744073022110000 DEBUG: CAddonDatabase::GetAddons took 609 ms 21:27:16.616 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 21:27:16.616 T:18446744073433549104 DEBUG: OnKey: up (0xf080) pressed, action is Up 21:27:16.751 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x13, sym: 0x0111, unicode: 0x0000, modifier: 0x0 21:27:16.917 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:27:17.248 T:18446744073433549104 DEBUG: OnKey: return (0xf00d) pressed, action is Select 21:27:17.248 T:18446744073433549104 DEBUG: Activating window ID: 10001 21:27:17.562 T:18446744073433549104 DEBUG: ------ Window Deinit (Custom_1100_AddonLauncher.xml) ------ 21:27:17.736 T:18446744073433549104 DEBUG: ------ Window Init (MyPrograms.xml) ------ 21:27:17.737 T:18446744073433549104 INFO: Loading skin file: MyPrograms.xml, load type: KEEP_IN_MEMORY 21:27:17.964 T:18446744073433549104 DEBUG: CDirectoryProvider[]: refreshing.. 21:27:17.964 T:18446744072982632752 DEBUG: Previous line repeats 2 times. 21:27:17.964 T:18446744072982632752 ERROR: GetDirectory - Error getting 21:27:17.965 T:18446744073433549104 ERROR: Previous line repeats 2 times. 21:27:17.965 T:18446744073433549104 DEBUG: CGUIMediaWindow::GetDirectory (addons://sources/executable/) 21:27:17.966 T:18446744073433549104 DEBUG: ParentPath = [addons://sources/executable/] 21:27:18.055 T:18446744073024043312 DEBUG: Thread BackgroundLoader start, auto delete: false 21:27:18.063 T:18446744073024043312 DEBUG: Thread BackgroundLoader 18446744073024043312 terminating 21:27:18.138 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:27:18.362 T:18446744073433549104 DEBUG: Activating window ID: 10147 21:27:18.363 T:18446744073433549104 DEBUG: ------ Window Init (DialogTextViewer.xml) ------ 21:27:18.889 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:27:18.890 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is Right 21:27:19.180 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:27:20.532 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 21:27:20.532 T:18446744073433549104 DEBUG: OnKey: backspace (0xf008) pressed, action is Back 21:27:20.681 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x04, sym: 0x0008, unicode: 0x0000, modifier: 0x0 21:27:20.779 T:18446744073433549104 DEBUG: ------ Window Deinit (DialogTextViewer.xml) ------ 21:27:21.240 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:27:21.241 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is Right 21:27:21.604 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:27:21.646 T:18446744073433549104 DEBUG: Previous line repeats 1 times. 21:27:21.646 T:18446744073433549104 DEBUG: OnKey: right (0xf083) pressed, action is Right 21:27:21.764 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x16, sym: 0x0113, unicode: 0x0000, modifier: 0x0 21:27:23.356 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 21:27:23.356 T:18446744073433549104 DEBUG: OnKey: left (0xf082) pressed, action is Left 21:27:23.662 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x15, sym: 0x0114, unicode: 0x0000, modifier: 0x0 21:27:24.043 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:27:24.342 T:18446744073433549104 DEBUG: OnKey: return (0xf00d) pressed, action is Select 21:27:24.344 T:18446744073433549104 DEBUG: Keyboard: scancode: 0x17, sym: 0x000d, unicode: 0x0000, modifier: 0x0 21:27:24.344 T:18446744073024043312 DEBUG: Thread LanguageInvoker start, auto delete: false 21:27:24.345 T:18446744073024043312 INFO: initializing python engine. 21:27:24.346 T:18446744073024043312 DEBUG: CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py): start processing 21:27:24.351 T:18446744072984721712 DEBUG: CAddonDatabase::SetLastUsed[script.kodi.loguploader] took 8 ms 21:27:24.412 T:18446744073024043312 DEBUG: -->Python Interpreter Initialized<-- 21:27:24.412 T:18446744073024043312 DEBUG: CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py): the source file to load is "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py" 21:27:24.416 T:18446744073024043312 DEBUG: CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py): setting the Python path to /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.certifi/lib:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.chardet/lib:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.idna/lib:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.pyqrcode/lib:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.requests/lib:/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.urllib3/lib:/:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python27.zip:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/plat-linux2:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-tk:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-old:/data/app/org.xbmc.kodi-2/base.apk/assets/python2.7/lib/python2.7/lib-dynload 21:27:24.416 T:18446744073024043312 DEBUG: CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py): entering source directory /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader 21:27:24.416 T:18446744073024043312 DEBUG: CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.kodi.loguploader/default.py): instantiating addon using automatically obtained id of "script.kodi.loguploader" dependent on version 2.24.0 of the xbmc.python api 21:27:25.184 T:18446744073024043312 DEBUG: script.kodi.loguploader: script version 0.3.2 started