Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update sdk head file to 2024.1.17 #42

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions headers/rtc_4.3.0/include/AgoraMediaBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand All @@ -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,
};

/**
Expand Down
8 changes: 4 additions & 4 deletions headers/rtc_4.3.0/include/IAgoraMusicContentCenter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<MusicChartCollection> result, MusicContentCenterStateReason reason) = 0;

Expand All @@ -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<MusicCollection> result, MusicContentCenterStateReason reason) = 0;

Expand All @@ -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;

Expand All @@ -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;

Expand Down