#[repr(C)]pub struct encoder_frame {
pub data: [*mut u8; 8],
pub linesize: [u32; 8],
pub frames: u32,
pub pts: i64,
}Expand description
Encoder input frame
Fields§
§data: [*mut u8; 8]Data for the frame/audio
linesize: [u32; 8]size of each plane
frames: u32Number of frames (audio only)
pts: i64Presentation timestamp
Auto Trait Implementations§
impl Freeze for encoder_frame
impl RefUnwindSafe for encoder_frame
impl !Send for encoder_frame
impl !Sync for encoder_frame
impl Unpin for encoder_frame
impl UnwindSafe for encoder_frame
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