summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWootak Jung <wootak.jung@samsung.com>2021-09-02 08:50:55 +0900
committerWootak Jung <wootak.jung@samsung.com>2021-09-02 09:22:18 +0900
commit5b2e5ecbf80d3c48f684986c1658a3c7abf4d8f6 (patch)
tree1a708cbb1a2e5613d140f7859e15a1999230e74c
parent41fd1bc5b7eb70cdae5ef3a384007b805addd912 (diff)
downloadbluetooth-5b2e5ecbf80d3c48f684986c1658a3c7abf4d8f6.tar.gz
bluetooth-5b2e5ecbf80d3c48f684986c1658a3c7abf4d8f6.tar.bz2
bluetooth-5b2e5ecbf80d3c48f684986c1658a3c7abf4d8f6.zip
Modify the doxygen of audio profile type
Change-Id: Ibc597e96acd91a19fd0cc62944614a63c4bdb30e Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
-rw-r--r--include/bluetooth_type.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/bluetooth_type.h b/include/bluetooth_type.h
index 2327f43..0333c44 100644
--- a/include/bluetooth_type.h
+++ b/include/bluetooth_type.h
@@ -474,11 +474,11 @@ typedef enum {
* @since_tizen @if WEARABLE 2.3.1 @else 2.3 @endif
*/
typedef enum {
- BT_AUDIO_PROFILE_TYPE_ALL = 0, /**< All supported profiles related with audio */
- BT_AUDIO_PROFILE_TYPE_HSP_HFP, /**< HSP(Headset Profile) and HFP(Hands-Free Profile) */
- BT_AUDIO_PROFILE_TYPE_A2DP, /**< A2DP(Advanced Audio Distribution Profile) */
- BT_AUDIO_PROFILE_TYPE_AG, /**< AG(Audio Gateway) */
- BT_AUDIO_PROFILE_TYPE_A2DP_SINK, /**< A2DP(Advanced Audio Distribution Profile) Sink role */
+ BT_AUDIO_PROFILE_TYPE_ALL = 0, /**< All supported profiles related with audio (Both Host and Device role) */
+ BT_AUDIO_PROFILE_TYPE_HSP_HFP, /**< local device AG and remote device HF Client (Host role, ex: mobile) */
+ BT_AUDIO_PROFILE_TYPE_A2DP, /**< A2DP Source Connection, remote device is A2DP Sink (Host role, ex: mobile) */
+ BT_AUDIO_PROFILE_TYPE_AG, /**< local device HF Client and remote device AG (Device role, ex: headset) */
+ BT_AUDIO_PROFILE_TYPE_A2DP_SINK, /**< A2DP Sink Connection, remote device is A2DP Source (Device role, ex: headset) */
} bt_audio_profile_type_e;
/**