Skip to content

Commit

Permalink
fix(cea): Fix MAX_ROWS in CEA-708 window (#4757)
Browse files Browse the repository at this point in the history
Fixes #3634
  • Loading branch information
avelad authored and joeyparrish committed Dec 8, 2022
1 parent a84fe2a commit 4909b0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cea/cea708_window.js
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ shaka.cea.Cea708Window.TextJustification = {
shaka.cea.Cea708Window.MAX_COLS = 42;

/**
* Maximum of 15 rows that can be indexed from 0 to 14.
* Maximum of 16 rows that can be indexed from 0 to 15.
* @private @const {number}
*/
shaka.cea.Cea708Window.MAX_ROWS = 15;
shaka.cea.Cea708Window.MAX_ROWS = 16;

0 comments on commit 4909b0d

Please sign in to comment.