├── .gitignore ├── Cargo.toml ├── FiraCode-Regular.ttf ├── LICENSE ├── README.md ├── demo.png ├── plot └── plot.py ├── scripts ├── macos-build-and-install.sh └── osx_vst_bundler.sh └── src ├── compressor.rs ├── compressor_effect_parameters.rs ├── editor.rs ├── lib.rs ├── low_pass_filter.rs ├── parameter.rs └── units.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/Cargo.toml -------------------------------------------------------------------------------- /FiraCode-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/FiraCode-Regular.ttf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/README.md -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/demo.png -------------------------------------------------------------------------------- /plot/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/plot/plot.py -------------------------------------------------------------------------------- /scripts/macos-build-and-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/scripts/macos-build-and-install.sh -------------------------------------------------------------------------------- /scripts/osx_vst_bundler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/scripts/osx_vst_bundler.sh -------------------------------------------------------------------------------- /src/compressor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/src/compressor.rs -------------------------------------------------------------------------------- /src/compressor_effect_parameters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/src/compressor_effect_parameters.rs -------------------------------------------------------------------------------- /src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/src/editor.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/low_pass_filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/src/low_pass_filter.rs -------------------------------------------------------------------------------- /src/parameter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/src/parameter.rs -------------------------------------------------------------------------------- /src/units.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/compressor-plugin/HEAD/src/units.rs --------------------------------------------------------------------------------