Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.0 / plugins / freeverb / Components / allpass.cpp
diff --git a/cinelerra-5.0/plugins/freeverb/Components/allpass.cpp b/cinelerra-5.0/plugins/freeverb/Components/allpass.cpp
deleted file mode 100644 (file)
index ec6b1fc..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-// Allpass filter implementation\r
-//\r
-// Written by Jezar at Dreampoint, June 2000\r
-// http://www.dreampoint.co.uk\r
-// This code is public domain\r
-\r
-#include "allpass.hpp"\r
-\r
-allpass::allpass()\r
-{\r
-       bufidx = 0;\r
-}\r
-\r
-void allpass::setbuffer(float *buf, int size) \r
-{\r
-       buffer = buf; \r
-       bufsize = size;\r
-}\r
-\r
-void allpass::mute()\r
-{\r
-       for (int i=0; i<bufsize; i++)\r
-               buffer[i]=0;\r
-}\r
-\r
-void allpass::setfeedback(float val) \r
-{\r
-       feedback = val;\r
-}\r
-\r
-float allpass::getfeedback() \r
-{\r
-       return feedback;\r
-}\r
-\r
-//ends\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r