You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* When the video processing mode is ProcessModeReadOnly:true: Reserved for future use.false: Reserved for future use.When the video processing mode is ProcessModeReadWrite:true: Sets the SDK to receive the video frame.false: Sets the SDK to discard the video frame.
Copy file name to clipboardExpand all lines: ts/Private/IAgoraRtcEngine.ts
+17-3
Original file line number
Diff line number
Diff line change
@@ -554,6 +554,10 @@ export class RemoteVideoStats {
554
554
* Deprecated:In scenarios where audio and video are synchronized, you can get the video delay data from networkTransportDelay and jitterBufferDelay in RemoteAudioStats .The video delay (ms).
555
555
*/
556
556
delay?: number;
557
+
/**
558
+
* @ignore
559
+
*/
560
+
e2eDelay?: number;
557
561
/**
558
562
* The width (pixels) of the video.
559
563
*/
@@ -990,6 +994,10 @@ export class ScreenCaptureSourceInfo {
990
994
* (For Windows only) Whether the window is minimized:true: The window is minimized.false: The window is not minimized.
991
995
*/
992
996
minimizeWindow?: boolean;
997
+
/**
998
+
* @ignore
999
+
*/
1000
+
sourceDisplayId?: any;
993
1001
}
994
1002
995
1003
/**
@@ -4953,14 +4961,20 @@ export abstract class IRtcEngine {
4953
4961
* @ignore
4954
4962
*/
4955
4963
abstractstartCameraCapture(
4956
-
type: VideoSourceType,
4964
+
sourceType: VideoSourceType,
4957
4965
config: CameraCapturerConfiguration
4958
4966
): number;
4959
4967
4960
4968
/**
4961
-
* @ignore
4969
+
* Stops the local video preview.
4970
+
* After calling startPreview to start the preview, if you want to close the local video preview, call this method.Call this method before joining a channel or after leaving a channel.
4971
+
*
4972
+
* @param sourceType The type of the video frame, see VideoSourceType .
* Enables or disables dual-stream mode on the sender side.
731
721
* After you enable dual-stream mode, you can call setRemoteVideoStreamType to choose to receive either the high-quality video stream or the low-quality video stream on the subscriber side.
* Enables interoperability with the Agora Web SDK (applicable only in the live streaming scenarios).
772
-
* Deprecated:The SDK automatically enables interoperability with the Web SDK, so you no longer need to call this method.You can call this method to enable or disable interoperability with the Agora Web SDK. If a channel has Web SDK users, ensure that you call this method, or the video of the Native user will be a black screen for the Web user.This method is only applicable in live streaming scenarios, and interoperability is enabled by default in communication scenarios.
0 commit comments