Struct libaom_sys::aom_codec_frame_buffer [−][src]
#[repr(C)]pub struct aom_codec_frame_buffer {
pub data: *mut u8,
pub size: usize,
pub priv_: *mut c_void,
}Expand description
External frame buffer
This structure holds allocated frame buffers used by the decoder.
Fields
data: *mut u8Pointer to the data buffer
size: usizeSize of data in bytes
priv_: *mut c_voidFrame’s private data
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for aom_codec_frame_buffer
impl !Send for aom_codec_frame_buffer
impl !Sync for aom_codec_frame_buffer
impl Unpin for aom_codec_frame_buffer
impl UnwindSafe for aom_codec_frame_buffer
Blanket Implementations
Mutably borrows from an owned value. Read more