mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-26 17:46:26 +03:00
8bacf168db
We need to find the current period for a given time in two places: streaming engine and period observer. This change takes the method used by streaming engine and the method used by period observer and merges them into a common method in |shaka.util.Periods|. Change-Id: I4f681ceaef38bf2118fb4b87fe4961fddd196707
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2016 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.
|
|
*/
|
|
|
|
goog.provide('shaka.util.Periods');
|
|
|
|
|
|
/**
|
|
* This is a collection of period-focused utility methods.
|
|
*
|
|
* @final
|
|
*/
|
|
shaka.util.Periods = class {
|
|
/**
|
|
* Get all the variants across all periods.
|
|
*
|
|
* @param {!Iterable.<shaka.extern.Period>} periods
|
|
* @return {!Array.<shaka.extern.Variant>}
|
|
*/
|
|
static getAllVariantsFrom(periods) {
|
|
const found = [];
|
|
|
|
for (const period of periods) {
|
|
for (const variant of period.variants) {
|
|
found.push(variant);
|
|
}
|
|
}
|
|
|
|
return found;
|
|
}
|
|
|
|
/**
|
|
* Find our best guess at which period contains the given time. If
|
|
* |timeInSeconds| starts before the first period, then |null| will be
|
|
* returned.
|
|
*
|
|
* @param {!Iterable.<shaka.extern.Period>} periods
|
|
* @param {number} timeInSeconds
|
|
* @return {?shaka.extern.Period}
|
|
*/
|
|
static findPeriodForTime(periods, timeInSeconds) {
|
|
let bestGuess = null;
|
|
|
|
// Go period-by-period and see if the period started before our current
|
|
// time. If so, we could be in that period. Since periods are supposed to be
|
|
// in order by start time, we can allow later periods to override our best
|
|
// guess.
|
|
for (const period of periods) {
|
|
if (timeInSeconds >= period.startTime) {
|
|
bestGuess = period;
|
|
}
|
|
}
|
|
|
|
return bestGuess;
|
|
}
|
|
};
|