├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Source ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── dsp │ ├── Filter.cpp │ ├── Filter.h │ ├── TapeStop.cpp │ └── TapeStop.h └── ui │ ├── Components.cpp │ ├── Components.h │ ├── Constants.cpp │ ├── Constants.h │ ├── CurveControl.cpp │ └── CurveControl.h ├── VERSION └── cStop.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .vscode 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/README.md -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/dsp/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/dsp/Filter.cpp -------------------------------------------------------------------------------- /Source/dsp/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/dsp/Filter.h -------------------------------------------------------------------------------- /Source/dsp/TapeStop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/dsp/TapeStop.cpp -------------------------------------------------------------------------------- /Source/dsp/TapeStop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/dsp/TapeStop.h -------------------------------------------------------------------------------- /Source/ui/Components.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/ui/Components.cpp -------------------------------------------------------------------------------- /Source/ui/Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/ui/Components.h -------------------------------------------------------------------------------- /Source/ui/Constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/ui/Constants.cpp -------------------------------------------------------------------------------- /Source/ui/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/ui/Constants.h -------------------------------------------------------------------------------- /Source/ui/CurveControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/ui/CurveControl.cpp -------------------------------------------------------------------------------- /Source/ui/CurveControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/Source/ui/CurveControl.h -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.1 -------------------------------------------------------------------------------- /cStop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calgoheen/cStop/HEAD/cStop.png --------------------------------------------------------------------------------