Widevine drm aidl: address API review
Interface update in change 16810770 Bug: 214410088 Test: atest VtsAidlHalDrmTargetTest Change-Id: I19da51ef75952f5ff6c7c02e0393f574e69ee30b
This commit is contained in:
@@ -140,8 +140,6 @@ struct WVDrmPlugin : public ::aidl::android::hardware::drm::BnDrmPlugin,
|
||||
const std::string& in_mime,
|
||||
::aidl::android::hardware::drm::SecurityLevel in_level,
|
||||
bool* _aidl_return) override;
|
||||
::ndk::ScopedAStatus requiresSecureDecoderDefault(
|
||||
const std::string& in_mime, bool* _aidl_return) override;
|
||||
::ndk::ScopedAStatus restoreKeys(
|
||||
const std::vector<uint8_t>& in_sessionId,
|
||||
const ::aidl::android::hardware::drm::KeySetId& in_keySetId) override;
|
||||
|
||||
@@ -118,13 +118,13 @@ KeyStatusType ConvertFromCdmKeyStatus(CdmKeyStatus keyStatus) {
|
||||
case wvcdm::kKeyStatusExpired:
|
||||
return KeyStatusType::EXPIRED;
|
||||
case wvcdm::kKeyStatusOutputNotAllowed:
|
||||
return KeyStatusType::OUTPUTNOTALLOWED;
|
||||
return KeyStatusType::OUTPUT_NOT_ALLOWED;
|
||||
case wvcdm::kKeyStatusPending:
|
||||
case wvcdm::kKeyStatusUsableInFuture:
|
||||
return KeyStatusType::USABLEINFUTURE;
|
||||
return KeyStatusType::USABLE_IN_FUTURE;
|
||||
case wvcdm::kKeyStatusInternalError:
|
||||
default:
|
||||
return KeyStatusType::INTERNALERROR;
|
||||
return KeyStatusType::INTERNAL_ERROR;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1762,28 +1762,18 @@ void WVDrmPlugin::sendSessionLostState(const vector<uint8_t>& in_sessionId) {
|
||||
::ndk::ScopedAStatus WVDrmPlugin::requiresSecureDecoder(
|
||||
const std::string& in_mime, SecurityLevel in_level, bool* _aidl_return) {
|
||||
if (!strncasecmp(in_mime.c_str(), "video/", 6)) {
|
||||
// Type is video, so check level to see if we require a secure decoder.
|
||||
*_aidl_return = in_level == SecurityLevel::HW_SECURE_ALL ||
|
||||
in_level == SecurityLevel::HW_SECURE_DECODE;
|
||||
} else {
|
||||
// Type is not video, so never require a secure decoder.
|
||||
*_aidl_return = false;
|
||||
}
|
||||
return ::ndk::ScopedAStatus::ok();
|
||||
}
|
||||
|
||||
::ndk::ScopedAStatus WVDrmPlugin::requiresSecureDecoderDefault(
|
||||
const std::string& in_mime, bool* _aidl_return) {
|
||||
if (!strncasecmp(in_mime.c_str(), "video/", 6)) {
|
||||
// Type is video, so check level to see if we require a secure decoder.
|
||||
std::string level(mPropertySet.security_level());
|
||||
|
||||
if (level == kResetSecurityLevel) {
|
||||
mCDM->QueryStatus(wvcdm::kLevelDefault, wvcdm::QUERY_KEY_SECURITY_LEVEL,
|
||||
&level);
|
||||
if (in_level == SecurityLevel::DEFAULT) {
|
||||
std::string level(mPropertySet.security_level());
|
||||
if (level == kResetSecurityLevel) {
|
||||
mCDM->QueryStatus(wvcdm::kLevelDefault, wvcdm::QUERY_KEY_SECURITY_LEVEL,
|
||||
&level);
|
||||
}
|
||||
*_aidl_return = level == wvcdm::QUERY_VALUE_SECURITY_LEVEL_L1;
|
||||
} else {
|
||||
// Type is video, so check level to see if we require a secure decoder.
|
||||
*_aidl_return = in_level == SecurityLevel::HW_SECURE_ALL ||
|
||||
in_level == SecurityLevel::HW_SECURE_DECODE;
|
||||
}
|
||||
|
||||
*_aidl_return = level == wvcdm::QUERY_VALUE_SECURITY_LEVEL_L1;
|
||||
} else {
|
||||
// Type is not video, so never require a secure decoder.
|
||||
*_aidl_return = false;
|
||||
|
||||
Reference in New Issue
Block a user