Struct libaom_sys::aom_codec_frame_buffer
source · #[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§
source§impl Clone for aom_codec_frame_buffer
impl Clone for aom_codec_frame_buffer
source§fn clone(&self) -> aom_codec_frame_buffer
fn clone(&self) -> aom_codec_frame_buffer
Returns a copy 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 more