com.github.axet.libvorbis.Jdrft_lookup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javasound-vorbis Show documentation
Show all versions of javasound-vorbis Show documentation
Java port of the OGG Vorbis codec from xiph.org
package com.github.axet.libvorbis;
/** for fft transform */
final class Jdrft_lookup {
int n = 0;
float[] trigcache = null;
int[] splitcache = null;
//
final void drft_clear() {
//if( l != null ) {
trigcache = null;
splitcache = null;
n = 0;
//}
}
}