All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vacco.libmp3lame.Jhuffcodetab Maven / Gradle / Ivy

The newest version!
package io.vacco.libmp3lame;

final class Jhuffcodetab {
  /** max. x-index+ */
  final int xlen;
  /** max number to be stored in linbits */
  final int linmax;
  /** pointer to array[xlen][ylen] */
  final char[] table;
  /** pointer to array[xlen][ylen] */
  final byte[] hlen;
  //
  Jhuffcodetab(final int ixlen, final int ilinmax, final char[] itable, final byte[] ihlen) {
    this.xlen = ixlen;
    this.linmax = ilinmax;
    this.table = itable;
    this.hlen = ihlen;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy