Struct libaom_sys::aom_tile_data
source · #[repr(C)]pub struct aom_tile_data {
pub coded_tile_data_size: usize,
pub coded_tile_data: *const c_void,
pub extra_size: usize,
}Expand description
Structure to hold a tile’s start address and size in the bitstream.
Defines a structure to hold a tile’s start address and size in the bitstream.
Fields§
§coded_tile_data_size: usizeTile data size.
coded_tile_data: *const c_voidTile’s start address.
extra_size: usizeExtra size information.
Trait Implementations§
source§impl Clone for aom_tile_data
impl Clone for aom_tile_data
source§fn clone(&self) -> aom_tile_data
fn clone(&self) -> aom_tile_data
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