forked from shaka-project/shaka-player
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PATCH][v4] cherry pick of needed changes from upstream (shaka-projec…
…t#306) * [PATCH] fix(dash): fix race condition in segment template (shaka-project#5842) Fixes shaka-project#5760 * fix(cea): Fix not rendering CEA-608 Closed Captions (shaka-project#4683) Also added H265 support and a framework for future TS CEA parser support. Fixes shaka-project#4605 Fixes shaka-project#3659 Co-authored-by: Joey Parrish <[email protected]> * fix(cea): Fix not rendering CEA-608 on encrypted mp4 segments (shaka-project#4756) Fixes shaka-project#4605 Co-authored-by: Joey Parrish <[email protected]> * fix: CEA 608 captions not work with H.265 video streams (shaka-project#5252) Fix parsing of CEA 608 captions in H.265 video streams by handling 2 byte nal unit header. Fixes shaka-project#5251 * fix: seeking in segment timeline returns incorrect index (shaka-project#5716) Resolves shaka-project#5664 --------- Co-authored-by: Albin Larsson <[email protected]> Co-authored-by: Álvaro Velad Galván <[email protected]> Co-authored-by: Joey Parrish <[email protected]> Co-authored-by: Aidan Ridley <[email protected]> Co-authored-by: Casey Occhialini <[email protected]>
- Loading branch information
1 parent
eafef44
commit ca5942e
Showing
22 changed files
with
319 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/*! @license | ||
* Shaka Player | ||
* Copyright 2016 Google LLC | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
goog.provide('shaka.cea.DummyCeaParser'); | ||
|
||
goog.require('shaka.cea.ICeaParser'); | ||
|
||
/** | ||
* Dummy CEA parser. | ||
* @implements {shaka.cea.ICeaParser} | ||
*/ | ||
shaka.cea.DummyCeaParser = class { | ||
/** | ||
* @override | ||
*/ | ||
init(initSegment) { | ||
} | ||
|
||
/** | ||
* @override | ||
*/ | ||
parse(mediaSegment) { | ||
return /* captionPackets= */ []; | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.