aom_fixed_buf_t

Type Alias aom_fixed_buf_t 

Source
pub type aom_fixed_buf_t = aom_fixed_buf;
Expand description

Generic fixed size buffer structure

This structure is able to hold a reference to any fixed size buffer.

Aliased Type§

#[repr(C)]
pub struct aom_fixed_buf_t { pub buf: *mut c_void, pub sz: usize, }

Fields§

§buf: *mut c_void

Pointer to the data. Does NOT own the data!

§sz: usize

Length of the buffer, in chars