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

Commit 8d5f5421 authored by Huihong Luo's avatar Huihong Luo Committed by Android (Google) Code Review
Browse files

Merge "Remove HDCP abort in Choreographer" into main

parents f71138d4 b1c1af46
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -344,8 +344,11 @@ void Choreographer::dispatchNullEvent(nsecs_t, PhysicalDisplayId) {
    handleRefreshRateUpdates();
}

void Choreographer::dispatchHdcpLevelsChanged(PhysicalDisplayId, int32_t, int32_t) {
    LOG_ALWAYS_FATAL("dispatchHdcpLevelsChanged was called but was never registered");
void Choreographer::dispatchHdcpLevelsChanged(PhysicalDisplayId displayId, int32_t connectedLevel,
                                              int32_t maxLevel) {
    ALOGV("choreographer %p ~ received hdcp levels change event (displayId=%s, connectedLevel=%d, "
          "maxLevel=%d), ignoring.",
          this, to_string(displayId).c_str(), connectedLevel, maxLevel);
}

void Choreographer::handleMessage(const Message& message) {