Merge "HDMI: Add new field eArcSupported" am: 45661bec3f am: 0c8f94b4ae

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2280731

Change-Id: Icab5c7b5ccdf02e15e00e51595f9ea60d78f69c8
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot 2022-11-29 10:12:04 +00:00 committed by Automerger Merge Worker
commit 6b25278ea0
3 changed files with 3 additions and 0 deletions

View file

@ -38,5 +38,6 @@ parcelable HdmiPortInfo {
int portId;
boolean cecSupported;
boolean arcSupported;
boolean eArcSupported;
int physicalAddress;
}

View file

@ -27,6 +27,7 @@ parcelable HdmiPortInfo {
int portId; // Should start from 1 which corresponds to HDMI "port 1".
boolean cecSupported;
boolean arcSupported;
boolean eArcSupported;
// The physical address of the device connected to this port, valid range is 0x0000 to 0xFFFF
// (ref Sec 8.7.2 of HDMI 1.4b).
int physicalAddress;

View file

@ -166,6 +166,7 @@ HdmiMock::HdmiMock() {
.portId = static_cast<uint32_t>(1),
.cecSupported = true,
.arcSupported = false,
.eArcSupported = false,
.physicalAddress = mPhysicalAddress};
mPortConnectionStatus[0] = false;
mDeathRecipient = ndk::ScopedAIBinder_DeathRecipient(AIBinder_DeathRecipient_new(serviceDied));