All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.axet.libvorbis.Jdrft_lookup Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
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;
		//}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy