From 516153696fa2a9309611c6ad19eab5cba348ca10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=8F=E7=BE=8A=E7=BE=A4?= Date: Wed, 17 Jan 2024 11:09:49 +0800 Subject: [PATCH] update sdk head file to 2024.1.17 --- headers/rtc_4.3.0/include/AgoraMediaBase.h | 8 ++++---- headers/rtc_4.3.0/include/IAgoraMusicContentCenter.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/headers/rtc_4.3.0/include/AgoraMediaBase.h b/headers/rtc_4.3.0/include/AgoraMediaBase.h index 7979886..8ea2c9e 100644 --- a/headers/rtc_4.3.0/include/AgoraMediaBase.h +++ b/headers/rtc_4.3.0/include/AgoraMediaBase.h @@ -122,9 +122,9 @@ enum AudioRoute */ ROUTE_LOUDSPEAKER = 4, /** - * The Bluetooth Headset via HFP. + * The Bluetooth Device via HFP. */ - ROUTE_HEADSETBLUETOOTH = 5, + ROUTE_BLUETOOTH_DEVICE_HFP = 5, /** * The USB. */ @@ -142,9 +142,9 @@ enum AudioRoute */ ROUTE_AIRPLAY = 9, /** - * The Bluetooth Speaker via A2DP. + * The Bluetooth Device via A2DP. */ - ROUTE_BLUETOOTH_SPEAKER = 10, + ROUTE_BLUETOOTH_DEVICE_A2DP = 10, }; /** diff --git a/headers/rtc_4.3.0/include/IAgoraMusicContentCenter.h b/headers/rtc_4.3.0/include/IAgoraMusicContentCenter.h index 0abea7a..5ec4c25 100644 --- a/headers/rtc_4.3.0/include/IAgoraMusicContentCenter.h +++ b/headers/rtc_4.3.0/include/IAgoraMusicContentCenter.h @@ -234,7 +234,7 @@ class IMusicContentCenterEventHandler { * * @param requestId The request id is same as that returned by getMusicCharts. * @param result The result of music chart collection - * @param statusCode The status of the request. See MusicContentCenterStateReason + * @param reason The status of the request. See MusicContentCenterStateReason */ virtual void onMusicChartsResult(const char* requestId, agora_refptr result, MusicContentCenterStateReason reason) = 0; @@ -243,7 +243,7 @@ class IMusicContentCenterEventHandler { * * @param requestId The request id is same as that returned by getMusicCollectionByMusicChartId or searchMusic * @param result The result of music collection - * @param statusCode The status of the request. See MusicContentCenterStateReason + * @param reason The status of the request. See MusicContentCenterStateReason */ virtual void onMusicCollectionResult(const char* requestId, agora_refptr result, MusicContentCenterStateReason reason) = 0; @@ -253,7 +253,7 @@ class IMusicContentCenterEventHandler { * @param requestId The request id is same as that returned by getLyric * @param songCode Song code * @param lyricUrl The lyric url of this music - * @param statusCode The status of the request. See MusicContentCenterStateReason + * @param reason The status of the request. See MusicContentCenterStateReason */ virtual void onLyricResult(const char* requestId, int64_t songCode, const char* lyricUrl, MusicContentCenterStateReason reason) = 0; @@ -263,7 +263,7 @@ class IMusicContentCenterEventHandler { * @param requestId The request id is same as that returned by getSongSimpleInfo. * @param songCode Song code * @param simpleInfo The metadata of the music. - * @param statusCode The status of the request. See MusicContentCenterStateReason + * @param reason The status of the request. See MusicContentCenterStateReason */ virtual void onSongSimpleInfoResult(const char* requestId, int64_t songCode, const char* simpleInfo, MusicContentCenterStateReason reason) = 0;