Skip to main content

ANSEncodingHistogram

Struct ANSEncodingHistogram 

Source
pub struct ANSEncodingHistogram {
    pub counts: Vec<i32>,
    pub alphabet_size: usize,
    pub cost: f32,
    pub method: u32,
    pub omit_pos: usize,
    /* private fields */
}
Expand description

Normalized ANS histogram for encoding.

Contains frequency counts normalized to sum to ANS_TAB_SIZE (4096).

Fields§

§counts: Vec<i32>

Normalized frequency counts.

§alphabet_size: usize

Alphabet size (highest non-zero symbol + 1).

§cost: f32

Cost estimate (header + data bits).

§method: u32

Encoding method:

  • 0: flat distribution
  • 1: small code (1-2 symbols)
  • 2-13: shift value + 1
§omit_pos: usize

Position of the balancing bin (absorbs rounding error).

Implementations§

Source§

impl ANSEncodingHistogram

Source

pub fn new() -> Self

Create an empty histogram.

Source

pub fn from_histogram( histo: &Histogram, strategy: ANSHistogramStrategy, ) -> Result<Self>

Create from a Histogram with the best normalization.

Tries different shift values and picks the one with lowest cost. Use from_histogram_cached with a precomputed AllowedCountsCache when calling this in a loop to avoid repeated table construction.

Source

pub fn from_histogram_cached( histo: &Histogram, strategy: ANSHistogramStrategy, cache: &AllowedCountsCache, ) -> Result<Self>

Create from a Histogram using precomputed allowed counts tables.

This is the fast path — call AllowedCountsCache::new() once and reuse it across all histogram normalization calls to avoid repeated allocation and sorting of allowed counts tables.

Source

pub fn write(&self, writer: &mut BitWriter) -> Result<()>

Write this histogram to a BitWriter.

Trait Implementations§

Source§

impl Clone for ANSEncodingHistogram

Source§

fn clone(&self) -> ANSEncodingHistogram

Returns a duplicate 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 ANSEncodingHistogram

Source§

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

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

impl Default for ANSEncodingHistogram

Source§

fn default() -> Self

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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

Source§

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.