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