-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvement of segment timeline $Time$ accuracy (#706)
Fix incorrect timeReplacement when large timescale The current code essentially does this timeReplacement = (startTime / timescale + presentationTimeOffset) * timescale When timescale is large enough (e.g. 10 MHz in order to support MS Smooth Streaming as well), "startTime / timescale * timescale" may not always be exactly "startTime" because of floating point precision, which could produce incorrect segment URLs. Keep startTime and presentationTimeOffset unchanged in the timeline just to avoid the multiply/divide dance. Closes #690
- Loading branch information
1 parent
c751509
commit aa17226
Showing
3 changed files
with
21 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ Andy Hochhaus <[email protected]> | |
Chad Assareh <[email protected]> | ||
Costel Madalin Grecu <[email protected]> | ||
Donato Borrello <[email protected]> | ||
Duc Pham <[email protected]> | ||
Esteban Dosztal <[email protected]> | ||
Itay Kinnrot <[email protected]> | ||
Jacob Trimble <[email protected]> | ||
|
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