00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00022
00023 #import <Foundation/Foundation.h>
00024
00025 @interface SndReverbAllpassFilter: NSObject
00026 {
00027 float feedback;
00028 float *buffer;
00029 int bufferSize;
00030 int bufferIndex;
00031 }
00032
00033 - initWithLength: (int) size;
00034
00035 - (void) processBuffer: (float *) input
00036 replacing: (float *) output
00037 length: (long) bufferLength
00038 channels: (int) skip;
00039
00040 - (float) process: (float) input;
00041
00042 - (void) mute;
00043
00044 - (void) setFeedback: (float) val;
00045
00046 - (float) getFeedback;
00047
00048 @end