1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
spectogram-prototype/SpectogramPrototype/FFTTest.h
Joshua Moerman 75f469885d First stubs:
- View with rulers
- FFT with Accelerated framework
- Opening music from iTunes (almost)
TODO: ducktape things together
2013-12-26 11:03:48 +01:00

14 lines
327 B
Objective-C

//
// FFTTest.h
// SpectogramPrototype
//
// Created by Joshua Moerman on 24/12/13.
// Copyright (c) 2013 Joshua Moerman. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface FFTTest : NSObject
- (void) inPlaceFFT:(float*)data forSize:(unsigned int)n;
@property (readonly) unsigned int acceptedSize;
@end