MusicKit  0.0.0
cubicnlc.h
00001 /* Copyright 1993-1996 by J.O. Smith (jos@ccrma.stanford.edu).  All rights reserved. */
00002 
00003 typedef struct _cubicnlcVars {
00004     pp input;
00005     pp output;
00006     word a1;
00007     word a2;
00008     word a3;
00009     word thr;                   /* clipping threshold */
00010 } cubicnlcVars;
00011 
00012 extern void cubicnlc(cubicnlcVars *a);
00013 
00014 
00015 
00016