Skip to content

Commit 7380496

Browse files
authored
Update IHdmiCecSink.h
1 parent 0d8f6ed commit 7380496

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

apis/HdmiCecSink/IHdmiCecSink.h

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -68,83 +68,83 @@
6868
// @brief Triggered when routing though the HDMI ARC port is successfully established.
6969
// @text arcInitiationEvent
7070
// @param status: Is the operation successful or not
71-
virtual void ArcInitiationEvent(const string status /* @in */) {};
71+
virtual void ArcInitiationEvent(const string status) {};
7272

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

7878
// @brief Triggered when the active source device changes.
7979
// @text onActiveSourceChange
8080
// @param logicalAddress: Logical address of the active source
8181
// @param physicalAddress: Physical address of the active source
82-
virtual void OnActiveSourceChange(const int logicalAddress /* @in */, const string physicalAddress /* @in */) {};
82+
virtual void OnActiveSourceChange(const int logicalAddress, const string physicalAddress) {};
8383

8484
// @brief Triggered when a new device is added to the CEC network.
8585
// @text onDeviceAdded
8686
// @param logicalAddress: Logical address of the added device
87-
virtual void OnDeviceAdded(const int logicalAddress /* @in */) {};
87+
virtual void OnDeviceAdded(const int logicalAddress) {};
8888

8989
// @brief Triggered when device information changes.
9090
// @text onDeviceInfoUpdated
9191
// @param logicalAddress: Logical address of the device
92-
virtual void OnDeviceInfoUpdated(const int logicalAddress /* @in */) {};
92+
virtual void OnDeviceInfoUpdated(const int logicalAddress) {};
9393

9494
// @brief Triggered when a device is removed from the CEC network.
9595
// @text onDeviceRemoved
9696
// @param logicalAddress: Logical address of the removed device
97-
virtual void OnDeviceRemoved(const int logicalAddress /* @in */) {};
97+
virtual void OnDeviceRemoved(const int logicalAddress) {};
9898

9999
// @brief Triggered when an <Image View ON> CEC message is received from the source device.
100100
// @text onImageViewOnMsg
101101
// @param logicalAddress: Logical address of the device
102-
virtual void OnImageViewOnMsg(const int logicalAddress /* @in */) {};
102+
virtual void OnImageViewOnMsg(const int logicalAddress) {};
103103

104104
// @brief Triggered when the source is no longer active.
105105
// @text onInActiveSource
106106
// @param logicalAddress: Logical address of the source
107107
// @param physicalAddress: Physical address of the source
108-
virtual void OnInActiveSource(const int logicalAddress /* @in */, const string physicalAddress /* @in */) {};
108+
virtual void OnInActiveSource(const int logicalAddress, const string physicalAddress) {};
109109

110110
// @brief Triggered when a <Text View ON> CEC message is received from the source device.
111111
// @text onTextViewOnMsg
112112
// @param logicalAddress: Logical address of the device
113-
virtual void OnTextViewOnMsg(const int logicalAddress /* @in */) {};
113+
virtual void OnTextViewOnMsg(const int logicalAddress) {};
114114

115115
// @brief Triggered when the TV is in standby mode and it receives <Image View ON>/ <Text View ON>/ <Active Source> CEC message from the connected source device.
116116
// @text onWakeupFromStandby
117117
// @param logicalAddress: Logical address of the device
118-
virtual void OnWakeupFromStandby(const int logicalAddress /* @in */) {};
118+
virtual void OnWakeupFromStandby(const int logicalAddress) {};
119119

120120
// @brief Triggered when an audio device is added or removed.
121121
// @text reportAudioDeviceConnectedStatus
122122
// @param status: Status of the audio device
123123
// @param audioDeviceConnected: Audio device connected or not
124-
virtual void ReportAudioDeviceConnectedStatus(const string status /* @in */, const string audioDeviceConnected /* @in */) {};
124+
virtual void ReportAudioDeviceConnectedStatus(const string status, const string audioDeviceConnected) {};
125125

126126
// @brief Triggered when CEC <Report Audio Status> message of device is received.
127127
// @text reportAudioStatusEvent
128128
// @param muteStatus: Mute status of the device
129129
// @param volumeLevel: Volume level of the device
130-
virtual void ReportAudioStatusEvent(const int muteStatus /* @in */, const int volumeLevel /* @in */) {};
130+
virtual void ReportAudioStatusEvent(const int muteStatus, const int volumeLevel) {};
131131

132132
// @brief Triggered when CEC <Feature Abort> message of device is received.
133133
// @text reportFeatureAbortEvent
134134
// @param logicalAddress: Logical address of the device
135135
// @param opcode: Opcode of the message
136136
// @param FeatureAbortReason: Reason for the feature abort
137-
virtual void ReportFeatureAbortEvent(const int logicalAddress /* @in */, const int opcode /* @in */, const int FeatureAbortReason /* @in */) {};
137+
virtual void ReportFeatureAbortEvent(const int logicalAddress, const int opcode, const int FeatureAbortReason) {};
138138

139139
// @brief Triggered when the HDMI-CEC is enabled.
140140
// @text reportCecEnabledEvent
141141
// @param cecEnable: HDMI-CEC enabled or not
142-
virtual void ReportCecEnabledEvent(const string cecEnable /* @in */) {};
142+
virtual void ReportCecEnabledEvent(const string cecEnable) {};
143143

144144
// @brief Triggered when CEC <Set System Audio Mode> message of device is received.
145145
// @text setSystemAudioModeEvent
146146
// @param audioMode: Audio mode of the device
147-
virtual void SetSystemAudioModeEvent(const string audioMode /* @in */) {};
147+
virtual void SetSystemAudioModeEvent(const string audioMode) {};
148148

149149
// @brief Triggered when SAD is received from the connected audio device. See requestShortAudioDescriptor.
150150
// @text shortAudiodescriptorEvent
@@ -154,12 +154,12 @@
154154
// @brief Triggered when the source device changes status to STANDBY.
155155
// @text standbyMessageReceived
156156
// @param logicalAddress: Logical address of the device
157-
virtual void StandbyMessageReceived(const int logicalAddress /* @in */) {};
157+
virtual void StandbyMessageReceived(const int logicalAddress) {};
158158

159159
// @brief Triggered when the source device changes.
160160
// @text reportAudioDevicePowerStatus
161161
// @param powerStatus: Power status of the device
162-
virtual void ReportAudioDevicePowerStatus(const int powerStatus /* @in */) {};
162+
virtual void ReportAudioDevicePowerStatus(const int powerStatus) {};
163163

164164

165165
};

0 commit comments

Comments
 (0)