2018-01-20 22:59:31 +01:00
|
|
|
var GlobalVars = {
|
|
|
|
video: null,
|
|
|
|
player: null,
|
2018-01-27 22:25:25 +01:00
|
|
|
playerDimensions: null,
|
2018-02-26 22:38:17 +01:00
|
|
|
playerElement: null,
|
2018-02-05 22:46:38 +01:00
|
|
|
lastAr: null,
|
|
|
|
lastUrl: "",
|
|
|
|
currentCss: {
|
|
|
|
top: null,
|
|
|
|
left: null
|
2018-02-15 00:17:58 +01:00
|
|
|
},
|
2018-02-28 23:54:32 +01:00
|
|
|
canvas: {
|
|
|
|
context: null,
|
|
|
|
width: null,
|
2018-03-03 23:58:29 +01:00
|
|
|
height: null,
|
|
|
|
imageDataRowLength: null
|
2018-02-28 23:54:32 +01:00
|
|
|
},
|
2018-03-18 15:14:57 +01:00
|
|
|
correctedVideoDimensions: {
|
|
|
|
width: null,
|
|
|
|
height: null,
|
|
|
|
top: null,
|
|
|
|
left: null
|
|
|
|
},
|
2018-02-15 00:17:58 +01:00
|
|
|
arDetect: {
|
2018-05-04 00:27:40 +02:00
|
|
|
autoDisable: {
|
|
|
|
eventCount: 0
|
|
|
|
},
|
2018-02-28 23:54:32 +01:00
|
|
|
canvas: null,
|
2018-02-15 22:59:31 +01:00
|
|
|
blackLevel: 10,
|
|
|
|
sampleCols_current: 0,
|
2018-03-08 22:22:42 +01:00
|
|
|
noLetterboxCanvasReset: false,
|
2018-02-15 00:17:58 +01:00
|
|
|
guardLine: {
|
|
|
|
top: null,
|
|
|
|
bottom: null,
|
|
|
|
logo: {
|
|
|
|
detected: false,
|
|
|
|
top_left: null,
|
|
|
|
top_right: null,
|
|
|
|
bottom_left: null,
|
|
|
|
bottom_right: null
|
2018-02-16 00:19:08 +01:00
|
|
|
},
|
2018-02-15 00:17:58 +01:00
|
|
|
start: null,
|
|
|
|
end: null
|
|
|
|
}
|
2018-02-05 22:46:38 +01:00
|
|
|
}
|
2018-01-20 22:59:31 +01:00
|
|
|
}
|