Merge "Added support for additional HDCP levels." into udc-dev
This commit is contained in:
@@ -415,8 +415,6 @@ class CdmEngine {
|
||||
|
||||
void OnKeyReleaseEvent(const CdmKeySetId& key_set_id);
|
||||
|
||||
std::string MapHdcpVersion(CryptoSession::HdcpCapability version);
|
||||
|
||||
void CloseExpiredReleaseSessions();
|
||||
|
||||
// Returns "true" if |okp_provisioner_| should be checked.
|
||||
|
||||
@@ -155,12 +155,12 @@ class LicenseKeyStatus {
|
||||
|
||||
void SetConstraints(const ConstraintList& constraints);
|
||||
|
||||
bool is_content_key_;
|
||||
CdmKeyStatus key_status_;
|
||||
bool meets_constraints_;
|
||||
bool meets_security_level_constraints_;
|
||||
bool is_content_key_ = false;
|
||||
CdmKeyStatus key_status_ = kKeyStatusInternalError;
|
||||
bool meets_constraints_ = true;
|
||||
bool meets_security_level_constraints_ = true;
|
||||
CdmKeyAllowedUsage allowed_usage_;
|
||||
CryptoSession::HdcpCapability default_hdcp_level_;
|
||||
CryptoSession::HdcpCapability default_hdcp_level_ = HDCP_NONE;
|
||||
ConstraintList constraints_;
|
||||
|
||||
CORE_DISALLOW_COPY_AND_ASSIGN(LicenseKeyStatus);
|
||||
|
||||
@@ -142,6 +142,11 @@ static const std::string QUERY_VALUE_HDCP_V2_0 = "HDCP-2.0";
|
||||
static const std::string QUERY_VALUE_HDCP_V2_1 = "HDCP-2.1";
|
||||
static const std::string QUERY_VALUE_HDCP_V2_2 = "HDCP-2.2";
|
||||
static const std::string QUERY_VALUE_HDCP_V2_3 = "HDCP-2.3";
|
||||
static const std::string QUERY_VALUE_HDCP_V1_0 = "HDCP-1.0";
|
||||
static const std::string QUERY_VALUE_HDCP_V1_1 = "HDCP-1.1";
|
||||
static const std::string QUERY_VALUE_HDCP_V1_2 = "HDCP-1.2";
|
||||
static const std::string QUERY_VALUE_HDCP_V1_3 = "HDCP-1.3";
|
||||
static const std::string QUERY_VALUE_HDCP_V1_4 = "HDCP-1.4";
|
||||
static const std::string QUERY_VALUE_HDCP_LEVEL_UNKNOWN = "HDCP-LevelUnknown";
|
||||
static const std::string QUERY_VALUE_DRM_CERTIFICATE = "DrmCertificate";
|
||||
static const std::string QUERY_VALUE_KEYBOX = "Keybox";
|
||||
|
||||
Reference in New Issue
Block a user