Package jm.audio.math

Examples of jm.audio.math.RealFloatFFT_Radix2.transform()


     */
    public int work(float[] buffer) throws AOException {
        int returned = this.previous[0].nextWork(buffer);
        RealFloatFFT_Radix2 fft = null;
        fft = new RealFloatFFT_Radix2(inst.getBufSize());
        fft.transform(buffer);
        return returned;
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.