Struct plot_interface::dependency::image::codecs::webp::vp8::Frame
[−]pub struct Frame {
pub width: u16,
pub height: u16,
pub ybuf: Vec<u8, Global>,
pub ubuf: Vec<u8, Global>,
pub vbuf: Vec<u8, Global>,
pub keyframe: bool,
pub for_display: bool,
pub pixel_type: u8,
/* private fields */
}
Expand description
A Representation of the last decoded video frame
Fields
width: u16
The width of the luma plane
height: u16
The height of the luma plane
ybuf: Vec<u8, Global>
The luma plane of the frame
ubuf: Vec<u8, Global>
The blue plane of the frame
vbuf: Vec<u8, Global>
The red plane of the frame
keyframe: bool
Indicates whether this frame is a keyframe
for_display: bool
Indicates whether this frame is intended for display
pixel_type: u8
The pixel type of the frame as defined by Section 9.2 of the VP8 Specification
Implementations
impl Frame
impl Frame
pub fn get_buf_size(&self) -> usize
pub fn get_buf_size(&self) -> usize
Gets the buffer size
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Frame
impl Send for Frame
impl Sync for Frame
impl Unpin for Frame
impl UnwindSafe for Frame
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<Target, Original> Into2<Target> for Original where
Target: From2<Original>,
impl<Target, Original> Into2<Target> for Original where
Target: From2<Original>,
fn into2(self) -> Target
fn into2(self) -> Target
Performs the conversion.
impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
sourcefn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian()
.
sourcefn read_from_big_endian(read: &mut R) -> Result<Self, Error>
fn read_from_big_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian()
.
sourcefn read_from_native_endian(read: &mut R) -> Result<Self, Error>
fn read_from_native_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian()
.
sourceimpl<Target, Original> VectorizedInto<Target> for Original where
Target: VectorizedFrom<Original>,
impl<Target, Original> VectorizedInto<Target> for Original where
Target: VectorizedFrom<Original>,
sourcefn vectorized_into(self) -> Target
fn vectorized_into(self) -> Target
Performs the conversion.