mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-26 17:46:26 +03:00
34915527f0
* Move seek range updates into SegmentIndex implementations and StreamVideoSource. * Remove unnecessary sub-class hooks from StreamVideoSource. * Remove internal LiveSegmentIndex timer: do SegmentReference eviction and generation on demand. * Rework Stream startup again: consider Streams as started when they have buffered some minimum amount of content. As part of this, only apply a timestamp correction to the SBM when the streams have started. * Defer stream switches until all SegmentIndexes have been corrected. * Partially revert optimistic "bufferedAhead" calculations in Stream: check if we've buffered enough content at least every second. * Make LiveSegmentIndex more robust against a "wrong" @availabilityStartTime. * Fix a bug where a positive timestamp correction would trigger an extra Stream resync. * Fix a bug in evict_() where the first segment would never get evicted. * Check stream started conditions in onUpdate_ instead of after a segment has been inserted. * Tidy-up immediate/clearBuffer naming and other comments. Closes #51 Closes #109 Change-Id: Ic6f0b96065d3c5dfb5c03ca1c52363bd77b22875
167 lines
5.0 KiB
JavaScript
167 lines
5.0 KiB
JavaScript
/**
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
* @fileoverview Implements a segment reference structure.
|
|
*/
|
|
|
|
goog.provide('shaka.media.SegmentReference');
|
|
|
|
goog.require('goog.Uri');
|
|
|
|
|
|
|
|
/**
|
|
* Creates a SegmentReference, which is a reference to some media segment.
|
|
*
|
|
* @param {number} startTime The time, in seconds, that the segment begins.
|
|
* @param {?number} endTime The time, in seconds, that the segment ends. The
|
|
* segment ends immediately before this time. A null value indicates that
|
|
* the segment continues to the end of the stream.
|
|
* @param {number} startByte The position of the segment's first byte.
|
|
* @param {?number} endByte The position of the segment's last byte, inclusive.
|
|
* A null value indicates that the segment continues to the end of the
|
|
* file located at |url|.
|
|
* @param {!goog.Uri} url The segment's location.
|
|
* @constructor
|
|
* @struct
|
|
*/
|
|
shaka.media.SegmentReference = function(
|
|
startTime, endTime, startByte, endByte, url) {
|
|
shaka.asserts.assert((endTime == null) || (startTime <= endTime),
|
|
'startTime should be <= endTime');
|
|
|
|
/**
|
|
* The time, in seconds, that the segment begins.
|
|
* @const {number}
|
|
*/
|
|
this.startTime = startTime;
|
|
|
|
/**
|
|
* The time, in seconds, that the segment ends. The segment ends immediately
|
|
* before this time. A null value indicates that the segment continues to the
|
|
* end of the stream.
|
|
* @const {?number}
|
|
*/
|
|
this.endTime = endTime;
|
|
|
|
/**
|
|
* The position of the segment's first byte.
|
|
* @const {number}
|
|
*/
|
|
this.startByte = startByte;
|
|
|
|
/**
|
|
* The position of the segment's last byte, inclusive. A null value indicates
|
|
* that the segment continues to the end of the file located at |url|.
|
|
* @const {?number}
|
|
*/
|
|
this.endByte = endByte;
|
|
|
|
/**
|
|
* The segment's location.
|
|
* @const {!goog.Uri}
|
|
*/
|
|
this.url = url;
|
|
};
|
|
|
|
|
|
/**
|
|
* Creates a new SegmentReference with an adjusted start time and an adjusted
|
|
* end time.
|
|
*
|
|
* @param {number} startTime
|
|
* @param {?number} endTime
|
|
* @return {!shaka.media.SegmentReference}
|
|
*/
|
|
shaka.media.SegmentReference.prototype.adjust = function(startTime, endTime) {
|
|
return new shaka.media.SegmentReference(
|
|
startTime,
|
|
endTime,
|
|
this.startByte,
|
|
this.endByte,
|
|
this.url);
|
|
};
|
|
|
|
|
|
/**
|
|
* Gets the index into |references| of the SegmentReference corresponding to
|
|
* the specified time.
|
|
*
|
|
* @param {!Array.<!shaka.media.SegmentReference>} references
|
|
* @param {number} time The time in seconds.
|
|
* @return {number} The index of the SegmentReference for the specified time,
|
|
* or -1 if no such SegmentReference exists.
|
|
*/
|
|
shaka.media.SegmentReference.find = function(references, time) {
|
|
// For live streams, searching from the end is faster. For VOD, it balances
|
|
// out either way. In both cases, references.length is small enough that the
|
|
// difference isn't huge.
|
|
for (var i = references.length - 1; i >= 0; --i) {
|
|
var r = references[i];
|
|
// Note that a segment ends immediately before the end time.
|
|
if ((time >= r.startTime) && (r.endTime == null || time < r.endTime)) {
|
|
return i;
|
|
}
|
|
}
|
|
return -1;
|
|
};
|
|
|
|
|
|
/**
|
|
* Shifts each SegmentReference in time by |delta| seconds.
|
|
*
|
|
* @param {!Array.<!shaka.media.SegmentReference>} references
|
|
* @param {number} delta
|
|
* @return {!Array.<!shaka.media.SegmentReference>} The shifted
|
|
* SegmentReferences.
|
|
*/
|
|
shaka.media.SegmentReference.shift = function(references, delta) {
|
|
return references.map(
|
|
function(r) {
|
|
return r.adjust(r.startTime + delta,
|
|
r.endTime != null ? r.endTime + delta : null);
|
|
});
|
|
};
|
|
|
|
|
|
/**
|
|
* Asserts that |references| are sorted by their start times without gaps and
|
|
* have unique start times.
|
|
*
|
|
* For debugging purposes.
|
|
*
|
|
* @param {!Array.<!shaka.media.SegmentReference>} references
|
|
*/
|
|
shaka.media.SegmentReference.assertCorrectReferences = function(references) {
|
|
if (!COMPILED) {
|
|
var previous = references[0];
|
|
for (var i = 1; i < references.length; ++i) {
|
|
var r = references[i];
|
|
var ok = (r.startTime > previous.startTime) &&
|
|
(r.startTime <= previous.endTime) &&
|
|
((r.endTime && r.endTime >= previous.endTime) ||
|
|
(i == references.length - 1));
|
|
shaka.asserts.assert(ok, 'SegmentReferences are not correct.');
|
|
if (!ok) {
|
|
shaka.log.debug(
|
|
'SegmentReferences should be sorted without gaps:',
|
|
'previous', previous, 'current', r);
|
|
}
|
|
previous = r;
|
|
}
|
|
}
|
|
};
|
|
|