Struct opentok::video_capturer::VideoCapturerSettings [−][src]
pub struct VideoCapturerSettings {
pub format: FrameFormat,
pub width: i32,
pub height: i32,
pub fps: i32,
pub expected_delay: i32,
pub mirror_on_local_render: bool,
}
Expand description
Settings for a VideoCapturer.
Fields
format: FrameFormat
The pixel format.
width: i32
The width of the video in pixels.
height: i32
The height of the video in pixels.
fps: i32
The estimated number of frames per second of video.
expected_delay: i32
The estimated capture delay, in milliseconds.
mirror_on_local_render: bool
Whether the frame should appear mirrored on the x-axis in the local renderer.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for VideoCapturerSettings
impl Send for VideoCapturerSettings
impl Sync for VideoCapturerSettings
impl Unpin for VideoCapturerSettings
impl UnwindSafe for VideoCapturerSettings
Blanket Implementations
Mutably borrows from an owned value. Read more