Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 45661bec authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "HDMI: Add new field eArcSupported"

parents 1589c401 3d35efca
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -38,5 +38,6 @@ parcelable HdmiPortInfo {
  int portId;
  boolean cecSupported;
  boolean arcSupported;
  boolean eArcSupported;
  int physicalAddress;
}
+1 −0
Original line number Diff line number Diff line
@@ -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;
+1 −0
Original line number Diff line number Diff line
@@ -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));