mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
3a552b808f
These keys cannot always be used as keys, for example on IE11 where very large init datas are found in PlayReady content. Since there should not be a large number of unique init datas, a linear suppression pass and a quadratic removeDuplicates should not be a problem in practice. Related to pull #176 Change-Id: I9dd9b5e45422544c86dd95686766625a0b336963
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2015 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.ArrayUtils');
|
|
|
|
|
|
/**
|
|
* @namespace shaka.util.ArrayUtils
|
|
* @summary Array utility functions.
|
|
*/
|
|
|
|
|
|
/**
|
|
* Remove duplicate entries from an array. Order N^2, so use with caution.
|
|
* @param {!Array.<T>} array
|
|
* @param {function(T, T): boolean=} opt_compareFn An optional function which
|
|
* will be used to compare items in the array.
|
|
* @return {!Array.<T>}
|
|
* @template T
|
|
*/
|
|
shaka.util.ArrayUtils.removeDuplicates = function(array, opt_compareFn) {
|
|
var result = [];
|
|
for (var i = 0; i < array.length; ++i) {
|
|
var matchFound = false;
|
|
for (var j = 0; j < result.length; ++j) {
|
|
matchFound = opt_compareFn ? opt_compareFn(array[i], result[j]) :
|
|
array[i] === result[j];
|
|
if (matchFound) break;
|
|
}
|
|
if (!matchFound) {
|
|
result.push(array[i]);
|
|
}
|
|
}
|
|
return result;
|
|
};
|
|
|