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

Commit efc52b08 authored by Jungshik Jang's avatar Jungshik Jang Committed by Android (Google) Code Review
Browse files

Merge "DO NOT MERGE: Dispatch incoming CEC messages to feature actions" into lmp-preview-dev

parents ae8ef37c e1e63c7c
Loading
Loading
Loading
Loading
+11 −2
Original line number Diff line number Diff line
@@ -290,8 +290,7 @@ public final class HdmiControlService extends SystemService {
            // TODO: Add remaining system information query such as
            // <Give Device Power Status> and <Request Active Source> handler.
            default:
                Slog.w(TAG, "Unsupported cec command:" + message.toString());
                return false;
                return dispatchMessageToAction(message);
        }
    }

@@ -394,6 +393,16 @@ public final class HdmiControlService extends SystemService {
        }
    }

    private boolean dispatchMessageToAction(HdmiCecMessage message) {
        for (FeatureAction action : mActions) {
            if (action.processCommand(message)) {
                return true;
            }
        }
        Slog.w(TAG, "Unsupported cec command:" + message);
        return false;
    }

    // Record class that monitors the event of the caller of being killed. Used to clean up
    // the listener list and record list accordingly.
    private final class HotplugEventListenerRecord implements IBinder.DeathRecipient {