pub struct IndexedFrame { /* private fields */ }
Expand description

Frame with its index in the image.

Implementations§

source§

impl IndexedFrame

source

pub fn index(&self) -> usize

Returns the frame index.

Methods from Deref<Target = Frame>§

source

pub fn alloc_tracker(&self) -> Option<&AllocTracker>

source

pub fn image_header(&self) -> &ImageHeader

source

pub fn clone_image_header(&self) -> Arc<ImageHeader>

source

pub fn header(&self) -> &FrameHeader

Returns the frame header.

source

pub fn toc(&self) -> &Toc

Returns the TOC.

See the documentation of Toc for details.

source

pub fn pass_shifts(&self) -> &BTreeMap<u32, (i32, i32)>

source

pub fn data(&self, group: TocGroupKind) -> Option<&[u8]>

source

pub fn feed_bytes<'buf>(&mut self, buf: &'buf [u8]) -> &'buf [u8]

source

pub fn is_loading_done(&self) -> bool

source

pub fn try_parse_lf_global<S>(&self) -> Option<Result<LfGlobal<S>, Error>>
where S: Sample,

source

pub fn try_parse_lf_group<S>( &self, lf_global_vardct: Option<&LfGlobalVarDct>, global_ma_config: Option<&MaConfig>, mlf_group: Option<TransformedModularSubimage<'_, S>>, lf_group_idx: u32 ) -> Option<Result<LfGroup<S>, Error>>
where S: Sample,

source

pub fn try_parse_hf_global<S>( &self, cached_lf_global: Option<&LfGlobal<S>> ) -> Option<Result<HfGlobal, Error>>
where S: Sample,

source

pub fn pass_group_bitstream( &self, pass_idx: u32, group_idx: u32 ) -> Option<Result<PassGroupBitstream<'_>, Error>>

source

pub fn adjust_region(&self, _: &mut (u32, u32, u32, u32))

Adjusts the cropping region of the image to the actual decoding region of the frame.

The cropping region of the image needs to be adjusted to be used in a frame, for a few reasons:

  • A frame may be blended to the canvas with offset, which makes the image and the frame have different coordinates.
  • Some filters reference other samples, which requires padding to the region.

This method takes care of those and adjusts the given region appropriately.

Trait Implementations§

source§

impl Debug for IndexedFrame

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Deref for IndexedFrame

§

type Target = Frame

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl DerefMut for IndexedFrame

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more