Struct libaom_sys::aom_image [−][src]
Image Descriptor
Fields
fmt: aom_img_fmt_tImage Format
cp: aom_color_primaries_tCICP Color Primaries
tc: aom_transfer_characteristics_tCICP Transfer Characteristics
mc: aom_matrix_coefficients_tCICP Matrix Coefficients
monochrome: c_intWhether image is monochrome
csp: aom_chroma_sample_position_tchroma sample position
range: aom_color_range_tColor Range
w: c_uintStored image width
h: c_uintStored image height
bit_depth: c_uintStored image bit-depth
d_w: c_uintDisplayed image width
d_h: c_uintDisplayed image height
r_w: c_uintIntended rendering image width
r_h: c_uintIntended rendering image height
x_chroma_shift: c_uintsubsampling order, X
y_chroma_shift: c_uintsubsampling order, Y
planes: [*mut c_uchar; 3]pointer to the top left pixel for each plane
stride: [c_int; 3]stride between rows for each plane
sz: usizedata size
bps: c_intbits per sample (for packed formats)
temporal_id: c_intTemporal layer Id of image
spatial_id: c_intSpatial layer Id of image
user_priv: *mut c_voidThe following member may be set by the application to associate data with this image.
img_data: *mut c_ucharprivate
img_data_owner: c_intprivate
self_allocd: c_intprivate
metadata: *mut aom_metadata_array_tMetadata payloads associated with the image.
fb_priv: *mut c_voidFrame buffer data associated with the image.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for aom_image
impl !Send for aom_image
impl !Sync for aom_image
impl Unpin for aom_image
impl UnwindSafe for aom_image
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,