MCPcopy Create free account
hub / github.com/zhuker/lamejs / HuffCodeTab

Class HuffCodeTab

src/main/java/mp3/HuffCodeTab.java:3–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package mp3;
2
3public class HuffCodeTab {
4 public HuffCodeTab(final int len, final int max, final int[] tab, final int[] hl) {
5 xlen = len;
6 linmax = max;
7 table = tab;
8 hlen = hl;
9 }
10
11 /**
12 * max. x-index+
13 */
14 final int xlen;
15 /**
16 * max number to be stored in linbits
17 */
18 final int linmax;
19 /**
20 * pointer to array[xlen][ylen]
21 */
22 final int[] table;
23 /**
24 * pointer to array[xlen][ylen]
25 */
26 final int[] hlen;
27}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…