Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions apis/HdmiCecSink/IHdmiCecSink.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@

// @brief Triggered when routing though the HDMI ARC port is successfully established.
// @text arcInitiationEvent
// @param success: Is the operation successful or not
virtual void ArcInitiationEvent(const string success /* @in */) {};
// @param status: Is the operation successful or not
virtual void ArcInitiationEvent(const string status /* @in */) {};

// @brief Triggered when routing though the HDMI ARC port terminates.
// @text arcTerminationEvent
// @param success: Is the operation successful or not
virtual void ArcTerminationEvent(const string success /* @in */) {};
// @param status: Is the operation successful or not
virtual void ArcTerminationEvent(const string status /* @in */) {};

// @brief Triggered when the active source device changes.
// @text onActiveSourceChange
Expand Down Expand Up @@ -332,6 +332,11 @@
// @param success: Is the operation successful or not
virtual Core::hresult SetLatencyInfo(const string &videoLatency /* @in */, const string &lowLatencyMode /* @in */, const string &audioOutputCompensated /* @in */, const string &audioOutputDelay /* @in */, HdmiCecSinkSuccess &success /* @out */) = 0;

// @brief Requests the audio device power status.
// @text requestAudioDevicePowerStatus
// @param success: Is the operation successful or not
virtual Core::hresult RequestAudioDevicePowerStatus(HdmiCecSinkSuccess &success /* @out */) = 0;

};

} // namespace Exchange
Expand Down
Loading