io.vacco.libmp3lame.JPsyConst Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jlame Show documentation
Show all versions of jlame Show documentation
Java versions of the Lame mp3 codec libraries
The newest version!
package io.vacco.libmp3lame;
final class JPsyConst {
final float window[] = new float[Jencoder.BLKSIZE];
final float window_s[] = new float[Jencoder.BLKSIZE_s / 2];
final JPsyConst_CB2SB l = new JPsyConst_CB2SB();
final JPsyConst_CB2SB s = new JPsyConst_CB2SB();
final JPsyConst_CB2SB l_to_s = new JPsyConst_CB2SB();
final float attack_threshold[] = new float[4];
float decay;
boolean force_short_block_calc;
}