pub struct DecodedFrame {
pub cvs_index: u32,
pub poc: i32,
pub output: bool,
pub picture: Picture,
}Expand description
One decoded picture with its output-ordering keys.
Fields§
§cvs_index: u32Index of the coded video sequence this picture belongs to
(incremented at each IRAP with NoRaslOutputFlag == 1).
poc: i32PicOrderCntVal (§8.3.1).
output: boolpic_output_flag — false pictures are decoded (they may be
referenced) but not output.
picture: PictureThe reconstructed, in-loop-filtered picture.
Trait Implementations§
Source§impl Clone for DecodedFrame
impl Clone for DecodedFrame
Source§fn clone(&self) -> DecodedFrame
fn clone(&self) -> DecodedFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DecodedFrame
impl RefUnwindSafe for DecodedFrame
impl Send for DecodedFrame
impl Sync for DecodedFrame
impl Unpin for DecodedFrame
impl UnsafeUnpin for DecodedFrame
impl UnwindSafe for DecodedFrame
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