ultrawidify/js/run/GlobalVars.js

47 lines
793 B
JavaScript
Raw Normal View History

2018-01-20 22:59:31 +01:00
var GlobalVars = {
video: null,
player: null,
playerDimensions: null,
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
},
canvas: {
context: null,
width: null,
height: null,
imageDataRowLength: null
},
correctedVideoDimensions: {
width: null,
height: null,
top: null,
left: null
},
2018-02-15 00:17:58 +01:00
arDetect: {
autoDisable: {
eventCount: 0
},
canvas: null,
blackLevel: 10,
sampleCols_current: 0,
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-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
}