pub struct J2kQuantizeSubbandJob<'a> {
pub coefficients: &'a [f32],
pub step_exponent: u16,
pub step_mantissa: u16,
pub range_bits: u8,
pub reversible: bool,
}Expand description
Adapter sub-band quantization job for backend experimentation.
Fields§
§coefficients: &'a [f32]Source sub-band coefficients in row-major order.
step_exponent: u16Quantization step-size exponent.
step_mantissa: u16Quantization step-size mantissa.
range_bits: u8Nominal range bits for this sub-band.
reversible: boolWhether to use reversible integer quantization.
Trait Implementations§
Source§impl<'a> Clone for J2kQuantizeSubbandJob<'a>
impl<'a> Clone for J2kQuantizeSubbandJob<'a>
Source§fn clone(&self) -> J2kQuantizeSubbandJob<'a>
fn clone(&self) -> J2kQuantizeSubbandJob<'a>
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 moreimpl<'a> Copy for J2kQuantizeSubbandJob<'a>
Auto Trait Implementations§
impl<'a> Freeze for J2kQuantizeSubbandJob<'a>
impl<'a> RefUnwindSafe for J2kQuantizeSubbandJob<'a>
impl<'a> Send for J2kQuantizeSubbandJob<'a>
impl<'a> Sync for J2kQuantizeSubbandJob<'a>
impl<'a> Unpin for J2kQuantizeSubbandJob<'a>
impl<'a> UnsafeUnpin for J2kQuantizeSubbandJob<'a>
impl<'a> UnwindSafe for J2kQuantizeSubbandJob<'a>
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