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

[AUTO] Generate comments by iris-doc #703

Merged
merged 1 commit into from
Sep 12, 2023
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
4 changes: 2 additions & 2 deletions src/AgoraBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1947,7 +1947,7 @@ export enum LocalAudioStreamError {
*/
LocalAudioStreamErrorDeviceNoPermission = 2,
/**
* @ignore
* 3: The local audio capture device is already in use. Remind your users to check whether another application occupies the microphone. Local audio capture automatically resumes after the microphone is idle for about five seconds. You can also try to rejoin the channel after the microphone is idle.
*/
LocalAudioStreamErrorDeviceBusy = 3,
/**
Expand Down Expand Up @@ -3094,7 +3094,7 @@ export enum ConnectionChangedReasonType {
*/
ConnectionChangedClientIpAddressChanged = 13,
/**
* 14: Timeout for the keep-alive of the connection between the SDK and the Agora edge server. The connection state changes to .
* 14: Timeout for the keep-alive of the connection between the SDK and the Agora edge server. The SDK tries to reconnect to the server automatically.
*/
ConnectionChangedKeepAliveTimeout = 14,
/**
Expand Down
2 changes: 1 addition & 1 deletion src/IAgoraMediaEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export abstract class IMediaEngine {
* Ensure that you call this method before joining a channel.
* When handling the video data returned in the callbacks, pay attention to the changes in the width and height parameters, which may be adapted under the following circumstances:
* When network conditions deteriorate, the video resolution decreases incrementally.
* If the user adjusts the video profile, the resolution of the video returned in the callbacks also changes. After registering the raw video observer, you can use the obtained raw video data in various video pre-processing scenarios, such as implementing virtual backgrounds and image enhacement scenarios by yourself, Agora provides some open source sample projects on GitHub for your reference.
* If the user adjusts the video profile, the resolution of the video returned in the callbacks also changes.
*
* @param observer The observer instance. See IVideoFrameObserver.
*
Expand Down
Loading