ftp.nice.ch/pub/next/audio/player/ModPlayer.2.5.N.s.tar.gz#/ModPlayer/fft.h

This is fft.h in view mode; [Download] [Up]

// FFT för 16-Bit Integers

#import <objc/Object.h>
#import <math.h>
#import <string.h>
#import <stdlib.h>

@interface FFT:Object
{
	float *daten;
	int punkte;
}

/* instance methods */
- initPoints:(int)points;
- (float *)performFFTWith:(short *)inData;
- (float *)performFFTWithStereo:(short *)inData;

@end

typedef struct
{	float real;
	float imag;
} komplex;

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.