Merge "Correct reporting of KeyStatus usable in future" into rvc-dev am: d260c2cf2d am: dec9af442b am: c00f9a3ce1 am: 3bf1e1b1b5 am: ec919ed72a

Change-Id: I4b78b4fbb9fae0a9de56a903df3784357ee12efa
This commit is contained in:
Rahul Frias
2020-04-20 20:38:33 +00:00
committed by Automerger Merge Worker

View File

@@ -66,8 +66,9 @@ DrmPlugin::KeyStatusType ConvertFromCdmKeyStatus(CdmKeyStatus keyStatus) {
case kKeyStatusOutputNotAllowed:
return DrmPlugin::kKeyStatusType_OutputNotAllowed;
case kKeyStatusPending:
case kKeyStatusUsableInFuture:
return DrmPlugin::kKeyStatusType_StatusPending;
case kKeyStatusUsableInFuture:
return DrmPlugin::kKeyStatusType_UsableInFuture;
case kKeyStatusInternalError:
default:
return DrmPlugin::kKeyStatusType_InternalError;