pub struct DecodedImage { /* private fields */ }Expand description
Data structure owning a decoded image from a VPx video stream.
Call DecodedImage::data() to access the image data.
Implementations§
Source§impl DecodedImage
impl DecodedImage
Sourcepub fn color_space(&self) -> vpx_color_space
pub fn color_space(&self) -> vpx_color_space
Returns the color space of the decoded image.
Sourcepub fn data(&self) -> DecodedImageData<'_>
pub fn data(&self) -> DecodedImageData<'_>
Allows access to the decoded image data.
Trait Implementations§
Source§impl Debug for DecodedImage
impl Debug for DecodedImage
Source§impl Drop for DecodedImage
impl Drop for DecodedImage
Source§impl Hash for DecodedImage
impl Hash for DecodedImage
Source§impl PartialEq for DecodedImage
impl PartialEq for DecodedImage
impl Eq for DecodedImage
impl Send for DecodedImage
impl StructuralPartialEq for DecodedImage
impl Sync for DecodedImage
Auto Trait Implementations§
impl Freeze for DecodedImage
impl RefUnwindSafe for DecodedImage
impl Unpin for DecodedImage
impl UnwindSafe for DecodedImage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more