aboutsummaryrefslogtreecommitdiffstats
path: root/src/cs_phaser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cs_phaser.h')
-rw-r--r--src/cs_phaser.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/cs_phaser.h b/src/cs_phaser.h
new file mode 100644
index 0000000..d0e0f3c
--- /dev/null
+++ b/src/cs_phaser.h
@@ -0,0 +1,66 @@
+/*
+ Copyright (C) 2003-2008 Fons Adriaensen <fons@kokkinizita.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+
+#ifndef __CS_PHASER_H
+#define __CS_PHASER_H
+
+#include "ladspaplugin.h"
+
+
+class Ladspa_CS_phaser1 : public LadspaPlugin
+{
+public:
+
+ enum { NPORT = 12, NSECT = 30 };
+
+ Ladspa_CS_phaser1 (SampleRate fsam) : LadspaPlugin (fsam) {}
+ virtual void setport (PortIndex port, PortData *data);
+ virtual void active (bool act);
+ virtual void runproc (SampleCount len, bool add);
+ virtual ~Ladspa_CS_phaser1 (void) {}
+
+private:
+
+ float *_port [NPORT];
+ float _w, _z, _c [NSECT];
+};
+
+
+class Ladspa_CS_phaser1lfo : public LadspaPlugin
+{
+public:
+
+ enum { NPORT = 10, NSECT = 30 };
+
+ Ladspa_CS_phaser1lfo (SampleRate fsam) : LadspaPlugin (fsam) {}
+ virtual void setport (PortIndex port, PortData *data);
+ virtual void active (bool act);
+ virtual void runproc (SampleCount len, bool add);
+ virtual ~Ladspa_CS_phaser1lfo (void) {}
+
+private:
+
+ enum { DSUB = 32 };
+
+ float *_port [NPORT];
+ float _z, _w, _v, _p, _c [NSECT];
+ unsigned int _gi;
+};
+
+#endif