Skip to content

Commit

Permalink
update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
mangui committed Dec 19, 2017
1 parent 1ca9d8b commit f142e70
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
9 changes: 7 additions & 2 deletions dist/hls.js
Original file line number Diff line number Diff line change
Expand Up @@ -5075,9 +5075,14 @@ var mp4_remuxer_MP4Remuxer = function () {
// if we don't remove these negative samples, they will shift all audio samples forward.
// leading to audio overlap between current / next fragment
inputSamples = inputSamples.filter(function (sample) {
return sample.pts > 0;
return sample.pts >= 0;
});

// in case all samples have negative PTS, and have been filtered out, return now
if (inputSamples.length === 0) {
return;
}

if (!contiguous) {
if (!accurateTimeOffset) {
// if frag are mot contiguous and if we cant trust time offset, let's use first sample PTS as next audio PTS
Expand Down Expand Up @@ -15280,7 +15285,7 @@ var hls_Hls = function () {
hls__createClass(Hls, null, [{
key: 'version',
get: function get() {
return "0.8.8";
return "0.8.9";
}
}, {
key: 'Events',
Expand Down
2 changes: 1 addition & 1 deletion dist/hls.js.map

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions dist/hls.light.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/hls.light.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/hls.light.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/hls.min.js

Large diffs are not rendered by default.

0 comments on commit f142e70

Please sign in to comment.