mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-16 16:16:40 +03:00
5da5de2800
This makes it easier to debug hardware resolution issues through the support page, which can now show hardware resolution. To show the support page on Chromecast devices, use chromecast-webdriver-cli.
42 lines
554 B
JavaScript
42 lines
554 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Externs for Tizen
|
|
* @externs
|
|
*/
|
|
|
|
|
|
/** @const */
|
|
var webapis = {};
|
|
|
|
|
|
/** @const */
|
|
webapis.systeminfo = {};
|
|
|
|
|
|
/**
|
|
* @return {shaka.extern.Resolution}
|
|
*/
|
|
webapis.systeminfo.getMaxVideoResolution = function() {};
|
|
|
|
|
|
/** @const */
|
|
webapis.productinfo = {};
|
|
|
|
|
|
/**
|
|
* @return {boolean}
|
|
*/
|
|
webapis.productinfo.is8KPanelSupported = function() {};
|
|
|
|
|
|
/**
|
|
* @return {boolean}
|
|
*/
|
|
webapis.productinfo.isUdPanelSupported = function() {};
|
|
|