mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
HDMI: Add new field eArcSupported
Add a new field called eArcSupported to the port info structure to determine if the port supports eARC. Bug: 255901009 Test: make Change-Id: Iff97479010a097018efcd5070c232a69aa1e1c77
This commit is contained in:
@@ -38,5 +38,6 @@ parcelable HdmiPortInfo {
|
||||
int portId;
|
||||
boolean cecSupported;
|
||||
boolean arcSupported;
|
||||
boolean eArcSupported;
|
||||
int physicalAddress;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user