-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix HLS playback where moof box is larger than 1k
When we started fetching partial HLS segments to find the start time, we were no longer able to start playback for content with a moof box larger than the partial segment. This is because we parsed the boxes hierarchically, which required the entire payload. Now, we can selectively instruct the parser to tolerate a partial box if the part we have includes the child box we are looking for. This fixes playback of several pieces of HLS content in our demo app. Change-Id: I956c8b8905dc9f1707f2b24b8248b984b1c036c6
- Loading branch information
1 parent
7e7a58d
commit 88857c5
Showing
5 changed files
with
162 additions
and
29 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
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