#[repr(C)]
pub struct jpeg_component_info { pub component_id: c_int, pub component_index: c_int, pub h_samp_factor: c_int, pub v_samp_factor: c_int, pub quant_tbl_no: c_int, pub dc_tbl_no: c_int, pub ac_tbl_no: c_int, pub width_in_blocks: JDIMENSION, pub height_in_blocks: JDIMENSION, pub quant_table: *mut JQUANT_TBL, /* private fields */ }

Fields§

§component_id: c_int

identifier for this component (0..255)

§component_index: c_int

its index in SOF or cinfo->comp_info[]

§h_samp_factor: c_int

horizontal sampling factor (1..4)

§v_samp_factor: c_int

vertical sampling factor (1..4)

§quant_tbl_no: c_int

quantization table selector (0..3)

§dc_tbl_no: c_int

DC entropy table selector (0..3)

These values may vary between scans. For compression, they must be supplied by parameter setup; for decompression, they are read from the SOS marker. The decompressor output side may not use these variables.

§ac_tbl_no: c_int

AC entropy table selector (0..3)

§width_in_blocks: JDIMENSION§height_in_blocks: JDIMENSION§quant_table: *mut JQUANT_TBL

Trait Implementations§

source§

impl Default for jpeg_component_info

source§

fn default() -> jpeg_component_info

Returns the “default value” for a type. Read more

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, 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.