Revert Widevine 6.0.0 -> 4.5.0 libraries
Includes Widevine libraries Version 4.5.0.7809 Also fixed samplePlayer's MediaCodec mode not running and WVDrmInfoRequestStatusKey returning incorrect value. Change-Id: Ibcc6d313790670a908ada93be80d6bf55a67b4ed related-to-bug: 6929628 related-to-bug: 6833718 related-to-bug: 6889322
This commit is contained in:
@@ -30,6 +30,7 @@ public class WidevineDrm {
|
||||
private WidevineDrmLogEventListener logEventListener;
|
||||
private final static long DEVICE_IS_PROVISIONED = 0;
|
||||
private final static long DEVICE_IS_NOT_PROVISIONED = 1;
|
||||
private final static long DEVICE_IS_PROVISIONED_SD_ONLY = 2;
|
||||
private long mWVDrmInfoRequestStatusKey = DEVICE_IS_PROVISIONED;
|
||||
|
||||
public StringBuffer logBuffer = new StringBuffer();
|
||||
@@ -129,7 +130,10 @@ public class WidevineDrm {
|
||||
}
|
||||
|
||||
public boolean isProvisionedDevice() {
|
||||
return (mWVDrmInfoRequestStatusKey == DEVICE_IS_PROVISIONED);
|
||||
logMessage("mWVDrmInfoRequestStatusKey = " + mWVDrmInfoRequestStatusKey + "\n");
|
||||
|
||||
return ((mWVDrmInfoRequestStatusKey == DEVICE_IS_PROVISIONED) ||
|
||||
(mWVDrmInfoRequestStatusKey == DEVICE_IS_PROVISIONED_SD_ONLY));
|
||||
}
|
||||
|
||||
public void registerPortal(String portal) {
|
||||
|
||||
Reference in New Issue
Block a user