#[repr(C)]pub struct AVPicture {
pub data: [*mut u8; 8],
pub linesize: [c_int; 8],
}
Expand description
Picture data structure.
Up to four components can be stored into it, the last component is alpha. @deprecated use AVFrame or imgutils functions instead
Fields§
§data: [*mut u8; 8]
< pointers to the image data planes
linesize: [c_int; 8]
< number of bytes per line
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AVPicture
impl RefUnwindSafe for AVPicture
impl !Send for AVPicture
impl !Sync for AVPicture
impl Unpin for AVPicture
impl UnwindSafe for AVPicture
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