Skip to content

Commit c2b711a

Browse files
committed
Remove the default canvas height limit
1 parent c07d6a3 commit c2b711a

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

src/subtitles-octopus.js

+13-11
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var SubtitlesOctopus = function (options) {
2222
self.targetFps = options.targetFps || 30;
2323
self.prescaleTradeoff = options.prescaleTradeoff || null; // render subtitles less than viewport when less than 1.0 to improve speed, render to more than 1.0 to improve quality; set to null to disable scaling
2424
self.softHeightLimit = options.softHeightLimit || 1080; // don't apply prescaleTradeoff < 1 when viewport height is less that this limit
25-
self.hardHeightLimit = options.hardHeightLimit || 2160; // don't ever go above this limit
25+
self.hardHeightLimit = options.hardHeightLimit || 0; // don't ever go above this limit; 0 - no limit
2626
self.resizeVariation = options.resizeVariation || 0.2; // by how many a size can vary before it would cause clearance of prerendered buffer
2727

2828
self.renderAhead = options.renderAhead || 0; // how many MiB to render ahead and store; 0 to disable (approximate)
@@ -701,10 +701,12 @@ var SubtitlesOctopus = function (options) {
701701
};
702702

703703
function _computeCanvasSize(width, height) {
704+
var hardHeightLimit = Math.max(self.hardHeightLimit || height, self.softHeightLimit);
705+
704706
if (self.prescaleTradeoff === null) {
705-
if (height > self.hardHeightLimit) {
706-
width = width * self.hardHeightLimit / height;
707-
height = self.hardHeightLimit;
707+
if (height > hardHeightLimit) {
708+
width = width * hardHeightLimit / height;
709+
height = hardHeightLimit;
708710
}
709711
} else if (self.prescaleTradeoff > 1) {
710712
if (height * self.prescaleTradeoff <= self.softHeightLimit) {
@@ -713,20 +715,20 @@ var SubtitlesOctopus = function (options) {
713715
} else if (height < self.softHeightLimit) {
714716
width = width * self.softHeightLimit / height;
715717
height = self.softHeightLimit;
716-
} else if (height >= self.hardHeightLimit) {
717-
width = width * self.hardHeightLimit / height;
718-
height = self.hardHeightLimit;
718+
} else if (height > hardHeightLimit) {
719+
width = width * hardHeightLimit / height;
720+
height = hardHeightLimit;
719721
}
720-
} else if (height >= self.softHeightLimit) {
722+
} else if (height > self.softHeightLimit) {
721723
if (height * self.prescaleTradeoff <= self.softHeightLimit) {
722724
width = width * self.softHeightLimit / height;
723725
height = self.softHeightLimit;
724-
} else if (height * self.prescaleTradeoff <= self.hardHeightLimit) {
726+
} else if (height * self.prescaleTradeoff <= hardHeightLimit) {
725727
width *= self.prescaleTradeoff;
726728
height *= self.prescaleTradeoff;
727729
} else {
728-
width = width * self.hardHeightLimit / height;
729-
height = self.hardHeightLimit;
730+
width = width * hardHeightLimit / height;
731+
height = hardHeightLimit;
730732
}
731733
}
732734

0 commit comments

Comments
 (0)