Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# Please keep the list sorted.

AdsWizz <*@adswizz.com>
Adrián Gómez Llorente <adgllorente@gmail.com>
Alugha GmbH <*@alugha.com>
Alvaro Velad Galvan <alvaro.velad@mirada.tv>
Bonnier Broadcasting <*@bonnierbroadcasting.com>
Expand Down Expand Up @@ -51,4 +52,6 @@ Tomas Tichy <mr.tichyt@gmail.com>
Toshihiro Suzuki <t.suzuki326@gmail.com>
uStudio Inc. <*@ustudio.com>
Verizon Digital Media Services <*@verizondigitalmedia.com>
Adrián Gómez Llorente <adgllorente@gmail.com>
Vincent Valot <valot.vince@gmail.com>


1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,6 @@ Torbjörn Einarsson <torbjorn.einarsson@edgeware.tv>
Toshihiro Suzuki <t.suzuki326@gmail.com>
Vasanth Polipelli <vasanthap@google.com>
Vignesh Venkatasubramanian <vigneshv@google.com>
Vincent Valot <valot.vince@gmail.com>
Yohann Connell <robinconnell@google.com>
Adrián Gómez Llorente <adgllorente@gmail.com>
14 changes: 14 additions & 0 deletions externs/shaka/text.js
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,20 @@ shaka.extern.Cue = class {
* @exportDoc
*/
this.id;

/**
* Nested cues
* @type {Array.<!shaka.extern.Cue>}
* @exportDoc
*/
this.nestedCues;

/**
* Whether or not the cue only acts as a spacer between two cues
* @type {boolean}
* @exportDoc
*/
this.spacer;
}
};

Expand Down
12 changes: 12 additions & 0 deletions lib/text/cue.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,18 @@ shaka.text.Cue = class {
* @exportInterface
*/
this.id = '';

/**
* @override
* @exportInterface
*/
this.nestedCues = [];

/**
* @override
* @exportInterface
*/
this.spacer = false;
}
};

Expand Down
Loading