Skip to content

Commit 67f016a

Browse files
fix gitflow error
1 parent 820c5d4 commit 67f016a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apis/DeviceSettingsManager/IDeviceSettingsManager.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ namespace Exchange {
301301
// @param handle: handle returned in GetAudioPort()
302302
// @param sadList: SAD array
303303
// @param count: number of items in sadList (max 15)
304-
virtual Core::hresult SetSAD(const int32_t handle , const uint8_t sadList[] /* @in @length:count @maxlength:count */, const uint8_t count ) = 0;
304+
virtual Core::hresult SetSAD(const int32_t handle , const uint8_t sadList[] /* @length:count @maxlength:count */, const uint8_t count ) = 0;
305305

306306
/** Enable ARC */
307307
// @text enableARC
@@ -1575,7 +1575,7 @@ namespace Exchange {
15751575
// @brief Get EDID to ALLM Supported or not
15761576
// @param port: Port number
15771577
// @param allmSupport: ALLM supported (true) or not (false)
1578-
virtual Core::hresult SetHDMIInEdid2AllmSupport(const HDMIInPort port , bool allmSupport /* @in*/) = 0;
1578+
virtual Core::hresult SetHDMIInEdid2AllmSupport(const HDMIInPort port , bool allmSupport) = 0;
15791579

15801580
/** Get EDID bytes. */
15811581
// @text getEdidBytes
@@ -2148,7 +2148,7 @@ namespace Exchange {
21482148
// @param enable: enable (true) or disable (false)
21492149
// @param hdcpKey: hdcp key
21502150
// @param hdcpKeySize: number of bytes in hdcpKey array
2151-
virtual Core::hresult EnableHDCPOnVideoPort(const int32_t handle , const bool hdcpEnable , const uint8_t hdcpKey[] /* @in @length:hdcpKeySize @maxlength:hdcpKeySize */, const uint16_t hdcpKeySize ) = 0;
2151+
virtual Core::hresult EnableHDCPOnVideoPort(const int32_t handle , const bool hdcpEnable , const uint8_t hdcpKey[] /* @length:hdcpKeySize @maxlength:hdcpKeySize */, const uint16_t hdcpKeySize ) = 0;
21522152

21532153
/** Is HDCP enabled on Video port. */
21542154
// @text isHDCPEnabledOnVideoPort

apis/UserPlugin/IUserPlugin.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace Exchange {
4242
// @brief Get Volume Level
4343
// @param[in] port, from which port they need an audio level
4444
// @param[volumeLevel] response, audio level
45-
virtual Core::hresult GetVolumeLevel (const std::string& port /* @in */, std::string& volumeLevel /* @out */) const = 0;
45+
virtual Core::hresult GetVolumeLevel (const std::string& port, std::string& volumeLevel /* @out */) const = 0;
4646
};
4747
}
4848
}

0 commit comments

Comments
 (0)