#[repr(C)]pub struct _spinH264Option {
pub frameRate: f32,
pub width: c_uint,
pub height: c_uint,
pub bitrate: c_uint,
pub reserved: [c_uint; 256],
}Expand description
Options for saving H264 videos. Used in saving H264 videos with a call to spinAVIRecorderOpenH264().
Fields§
§frameRate: f32Frame rate of the stream
width: c_uintWidth of source image
height: c_uintHeight of source image
bitrate: c_uintBitrate to encode at
reserved: [c_uint; 256]Reserved for future use
Trait Implementations§
Source§impl Clone for _spinH264Option
impl Clone for _spinH264Option
Source§fn clone(&self) -> _spinH264Option
fn clone(&self) -> _spinH264Option
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _spinH264Option
Auto Trait Implementations§
impl Freeze for _spinH264Option
impl RefUnwindSafe for _spinH264Option
impl Send for _spinH264Option
impl Sync for _spinH264Option
impl Unpin for _spinH264Option
impl UnwindSafe for _spinH264Option
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more