pub(crate) struct PixelConverter {
    memory_limit: MemoryLimit,
    color_output: ColorOutput,
    buffer: Vec<u8>,
    global_palette: Option<Vec<u8>>,
}
Expand description

Deinterlaces and expands to RGBA if needed

Fields§

§memory_limit: MemoryLimit§color_output: ColorOutput§buffer: Vec<u8>§global_palette: Option<Vec<u8>>

Implementations§

source§

impl PixelConverter

source

pub(crate) fn new(color_output: ColorOutput, memory_limit: MemoryLimit) -> Self

source

pub(crate) fn check_buffer_size( &mut self, frame: &Frame<'_> ) -> Result<usize, DecodingError>

source

pub(crate) fn read_frame( &mut self, frame: &mut Frame<'_>, data_callback: &'_ mut dyn FnMut(&mut OutputBuffer<'_>) -> Result<usize, DecodingError> ) -> Result<(), DecodingError>

source

pub(crate) fn buffer_size(&self, frame: &Frame<'_>) -> Option<usize>

source

pub(crate) fn line_length(&self, frame: &Frame<'_>) -> usize

source

pub(crate) fn fill_buffer( &mut self, current_frame: &Frame<'_>, buf: &mut [u8], data_callback: &'_ mut dyn FnMut(&mut OutputBuffer<'_>) -> Result<usize, DecodingError> ) -> Result<bool, DecodingError>

Use read_into_buffer to deinterlace

source

pub(crate) fn global_palette(&self) -> Option<&[u8]>

source

pub(crate) fn set_global_palette(&mut self, palette: Vec<u8>)

source

pub(crate) fn read_into_buffer( &mut self, frame: &Frame<'_>, buf: &mut [u8], data_callback: &'_ mut dyn FnMut(&mut OutputBuffer<'_>) -> Result<usize, DecodingError> ) -> Result<(), DecodingError>

Applies deinterlacing

Set frame.interlaced = false afterwards if you’re putting the buffer back into the Frame

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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, U> Into<U> for Twhere 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 Twhere 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 Twhere 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.