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: FrameFormatThe pixel format.
width: i32The width of the video in pixels.
height: i32The height of the video in pixels.
fps: i32The estimated number of frames per second of video.
expected_delay: i32The estimated capture delay, in milliseconds.
mirror_on_local_render: boolWhether 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