You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/subtitles-octopus.js
+1-1
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ var SubtitlesOctopus = function (options) {
22
22
self.targetFps=options.targetFps||30;
23
23
self.prescaleTradeoff=options.prescaleTradeoff||1.0;// render subtitles less than viewport when less than 1.0 to improve speed, render to more than 1.0 to improve quality
24
24
self.softHeightLimit=options.softHeightLimit||1080;// don't apply prescaleTradeoff < 1 when viewport height is less that this limit
25
-
self.hardHeightLimit=options.hardHeightLimit||1600;// don't ever go above this limit
25
+
self.hardHeightLimit=options.hardHeightLimit||2160;// don't ever go above this limit
26
26
27
27
self.renderAhead=options.renderAhead||0;// how many MiB to render ahead and store; 0 to disable (approximate)
28
28
self.isOurCanvas=false;// (internal) we created canvas and manage it
0 commit comments