mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
widevine: Fix VP9 version string for v4.10.2209.0 (fixes issue #3138)
This commit is contained in:
@ -33,7 +33,7 @@
|
|||||||
// by hand. See the translator.README.txt file in the tools directory for
|
// by hand. See the translator.README.txt file in the tools directory for
|
||||||
// more information.
|
// more information.
|
||||||
//
|
//
|
||||||
// $hash=d8b5b641cc036a9cd9375442254d558b066ada69$
|
// $hash=f74bf4d33914d56d760f1bf5aadcf2651740c711$
|
||||||
//
|
//
|
||||||
|
|
||||||
#ifndef CEF_INCLUDE_CAPI_CEF_WEB_PLUGIN_CAPI_H_
|
#ifndef CEF_INCLUDE_CAPI_CEF_WEB_PLUGIN_CAPI_H_
|
||||||
@ -214,7 +214,7 @@ CEF_EXPORT void cef_is_web_plugin_unstable(
|
|||||||
// D. "x-cdm-interface-versions": Interface API version (e.g. "8").
|
// D. "x-cdm-interface-versions": Interface API version (e.g. "8").
|
||||||
// E. "x-cdm-host-versions": Host API version (e.g. "8").
|
// E. "x-cdm-host-versions": Host API version (e.g. "8").
|
||||||
// F. "version": CDM version (e.g. "1.4.8.903").
|
// F. "version": CDM version (e.g. "1.4.8.903").
|
||||||
// G. "x-cdm-codecs": List of supported codecs (e.g. "vp8,vp9.0,avc1").
|
// G. "x-cdm-codecs": List of supported codecs (e.g. "vp8,vp09,avc1").
|
||||||
//
|
//
|
||||||
// A through E are used to verify compatibility with the current Chromium
|
// A through E are used to verify compatibility with the current Chromium
|
||||||
// version. If the CDM is not compatible the registration will fail and
|
// version. If the CDM is not compatible the registration will fail and
|
||||||
|
@ -191,7 +191,7 @@ class CefRegisterCdmCallback : public virtual CefBaseRefCounted {
|
|||||||
// D. "x-cdm-interface-versions": Interface API version (e.g. "8").
|
// D. "x-cdm-interface-versions": Interface API version (e.g. "8").
|
||||||
// E. "x-cdm-host-versions": Host API version (e.g. "8").
|
// E. "x-cdm-host-versions": Host API version (e.g. "8").
|
||||||
// F. "version": CDM version (e.g. "1.4.8.903").
|
// F. "version": CDM version (e.g. "1.4.8.903").
|
||||||
// G. "x-cdm-codecs": List of supported codecs (e.g. "vp8,vp9.0,avc1").
|
// G. "x-cdm-codecs": List of supported codecs (e.g. "vp8,vp09,avc1").
|
||||||
//
|
//
|
||||||
// A through E are used to verify compatibility with the current Chromium
|
// A through E are used to verify compatibility with the current Chromium
|
||||||
// version. If the CDM is not compatible the registration will fail and
|
// version. If the CDM is not compatible the registration will fail and
|
||||||
|
@ -90,7 +90,7 @@ const char kCdmSupportedEncryptionSchemesName[] =
|
|||||||
// The following strings are used to specify supported codecs in the
|
// The following strings are used to specify supported codecs in the
|
||||||
// parameter |kCdmCodecsListName|.
|
// parameter |kCdmCodecsListName|.
|
||||||
const char kCdmSupportedCodecVp8[] = "vp8";
|
const char kCdmSupportedCodecVp8[] = "vp8";
|
||||||
const char kCdmSupportedCodecVp9[] = "vp9.0";
|
const char kCdmSupportedCodecVp9[] = "vp09";
|
||||||
#if BUILDFLAG(USE_PROPRIETARY_CODECS)
|
#if BUILDFLAG(USE_PROPRIETARY_CODECS)
|
||||||
const char kCdmSupportedCodecAvc1[] = "avc1";
|
const char kCdmSupportedCodecAvc1[] = "avc1";
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user