de.sciss.jump3r.mp3.CalcNoiseResult 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 CalcNoiseResult {
/**
* sum of quantization noise > masking
*/
float over_noise;
/**
* sum of all quantization noise
*/
float tot_noise;
/**
* max quantization noise
*/
float max_noise;
/**
* number of quantization noise > masking
*/
int over_count;
/**
* SSD-like cost of distorted bands
*/
int over_SSD;
int bits;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy