Package com.opentok.android
Class BaseVideoCapturer.CaptureSettings
- java.lang.Object
-
- com.opentok.android.BaseVideoCapturer.CaptureSettings
-
- Enclosing class:
- BaseVideoCapturer
public static class BaseVideoCapturer.CaptureSettings extends java.lang.Object
Defines the capture settings for a video capturer.- See Also:
BaseVideoCapturer.getCaptureSettings()
-
-
Field Summary
Fields Modifier and Type Field Description int
expectedDelay
The estimated capture delay, in milliseconds, of the video.int
format
The pixel format.int
fps
The estimated number of frames per second in the video.int
height
The height of the video, in pixels.boolean
mirrorInLocalRender
Whether the frame should appear mirrored in the local renderer.int
width
The width of the video, in pixels.
-
Constructor Summary
Constructors Constructor Description CaptureSettings()
-
-
-
Field Detail
-
format
public int format
The pixel format. Valid values are defined by theBaseVideoCapturer.ARGB
andBaseVideoCapturer.NV21
constants.
-
width
public int width
The width of the video, in pixels.
-
height
public int height
The height of the video, in pixels.
-
fps
public int fps
The estimated number of frames per second in the video.
-
expectedDelay
public int expectedDelay
The estimated capture delay, in milliseconds, of the video.
-
mirrorInLocalRender
public boolean mirrorInLocalRender
Whether the frame should appear mirrored in the local renderer.
-
-