#[repr(C)]
pub struct opj_tccp_info {
Show 14 fields pub compno: OPJ_UINT32, pub csty: OPJ_UINT32, pub numresolutions: OPJ_UINT32, pub cblkw: OPJ_UINT32, pub cblkh: OPJ_UINT32, pub cblksty: OPJ_UINT32, pub qmfbid: OPJ_UINT32, pub qntsty: OPJ_UINT32, pub stepsizes_mant: [OPJ_UINT32; 97], pub stepsizes_expn: [OPJ_UINT32; 97], pub numgbits: OPJ_UINT32, pub roishift: OPJ_INT32, pub prcw: [OPJ_UINT32; 33], pub prch: [OPJ_UINT32; 33],
}
Expand description

Tile-component coding parameters information

Fields§

§compno: OPJ_UINT32

component index

§csty: OPJ_UINT32

coding style

§numresolutions: OPJ_UINT32

number of resolutions

§cblkw: OPJ_UINT32

log2 of code-blocks width

§cblkh: OPJ_UINT32

log2 of code-blocks height

§cblksty: OPJ_UINT32

code-block coding style

§qmfbid: OPJ_UINT32

discrete wavelet transform identifier: 0 = 9-7 irreversible, 1 = 5-3 reversible

§qntsty: OPJ_UINT32

quantisation style

§stepsizes_mant: [OPJ_UINT32; 97]

stepsizes used for quantization

§stepsizes_expn: [OPJ_UINT32; 97]

stepsizes used for quantization

§numgbits: OPJ_UINT32

number of guard bits

§roishift: OPJ_INT32

Region Of Interest shift

§prcw: [OPJ_UINT32; 33]

precinct width

§prch: [OPJ_UINT32; 33]

precinct height

Trait Implementations§

source§

impl Clone for opj_tccp_info

source§

fn clone(&self) -> opj_tccp_info

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for opj_tccp_info

source§

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

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

impl Copy for opj_tccp_info

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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.