de.sciss.jump3r.mp3.HuffCodeTab Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jump3r Show documentation
Show all versions of jump3r Show documentation
Java Unofficial MP3 EncodeR - a Java port of LAME
The newest version!
package de.sciss.jump3r.mp3;
public class HuffCodeTab {
public HuffCodeTab(final int len, final int max, final int[] tab, final int[] hl) {
xlen = len;
linmax = max;
table = tab;
hlen = hl;
}
/**
* max. x-index+
*/
final int xlen;
/**
* max number to be stored in linbits
*/
final int linmax;
/**
* pointer to array[xlen][ylen]
*/
final int[] table;
/**
* pointer to array[xlen][ylen]
*/
final int[] hlen;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy