sdm: Add support for minimum encryption level settings for HDCP.
- Add min_enc_level parameter in minHdcpEncryptionLevelChanged API. Change-Id: I4c6ddfb7c0178ce547ce7aa357f86f0320d35208
This commit is contained in:
committed by
Gerrit - the friendly Code Review server
parent
3976dafca7
commit
a5b764fa44
@@ -320,11 +320,12 @@ int getPanelBrightness() {
|
||||
// ----------------------------------------------------------------------------
|
||||
// Functions for linking dynamically to libqdutils
|
||||
// ----------------------------------------------------------------------------
|
||||
extern "C" int minHdcpEncryptionLevelChanged(int dpy) {
|
||||
extern "C" int minHdcpEncryptionLevelChanged(int dpy, int min_enc_level) {
|
||||
status_t err = (status_t) FAILED_TRANSACTION;
|
||||
sp<IQService> binder = getBinder();
|
||||
Parcel inParcel, outParcel;
|
||||
inParcel.writeInt32(dpy);
|
||||
inParcel.writeInt32(min_enc_level);
|
||||
|
||||
if(binder != NULL) {
|
||||
err = binder->dispatch(IQService::MIN_HDCP_ENCRYPTION_LEVEL_CHANGED,
|
||||
|
||||
Reference in New Issue
Block a user