Skip to content

Commit

Permalink
fix(cea): Fix MAX_ROWS in CEA-708 window (shaka-project#4757)
Browse files Browse the repository at this point in the history
  • Loading branch information
avelad committed Nov 28, 2022
1 parent 70fad8d commit e89eeb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cea/cea708_window.js
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 e89eeb6

Please sign in to comment.