summaryrefslogtreecommitdiff
path: root/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ZamAutoSat/ZamAutoSatPlugin.hpp')
-rw-r--r--plugins/ZamAutoSat/ZamAutoSatPlugin.hpp93
1 files changed, 93 insertions, 0 deletions
diff --git a/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp b/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp
new file mode 100644
index 0000000..4b722ee
--- /dev/null
+++ b/plugins/ZamAutoSat/ZamAutoSatPlugin.hpp
@@ -0,0 +1,93 @@
+/*
+ * ZamAutoSat mono compressor
+ * Copyright (C) 2014 Damien Zammit <damien@zamaudio.com>
+ *
+ * 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 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.
+ *
+ * For a full copy of the GNU General Public License see the doc/GPL.txt file.
+ */
+
+#ifndef ZAMAUTOSATPLUGIN_HPP_INCLUDED
+#define ZAMAUTOSATPLUGIN_HPP_INCLUDED
+
+#include "DistrhoPlugin.hpp"
+
+START_NAMESPACE_DISTRHO
+
+// -----------------------------------------------------------------------
+
+class ZamAutoSatPlugin : public Plugin
+{
+public:
+ enum Parameters
+ {
+ paramCount
+ };
+
+ ZamAutoSatPlugin();
+ ~ZamAutoSatPlugin() override;
+
+protected:
+ // -------------------------------------------------------------------
+ // Information
+
+ const char* d_getLabel() const noexcept override
+ {
+ return "ZamAutoSat";
+ }
+
+ const char* d_getMaker() const noexcept override
+ {
+ return "Damien Zammit";
+ }
+
+ const char* d_getLicense() const noexcept override
+ {
+ return "GPL v2+";
+ }
+
+ uint32_t d_getVersion() const noexcept override
+ {
+ return 0x1000;
+ }
+
+ long d_getUniqueId() const noexcept override
+ {
+ return d_cconst('Z', 'S', 'A', 'T');
+ }
+
+ // -------------------------------------------------------------------
+ // Init
+
+ void d_initParameter(uint32_t index, Parameter& parameter) ;
+ void d_initProgramName(uint32_t index, d_string& programName) ;
+
+ // -------------------------------------------------------------------
+ // Internal data
+
+ float d_getParameterValue(uint32_t index) const override;
+ void d_setParameterValue(uint32_t index, float value) override;
+ void d_setProgram(uint32_t index) ;
+
+ // -------------------------------------------------------------------
+ void d_activate() override;
+ void d_deactivate() override;
+ void d_run(float** inputs, float** outputs, uint32_t frames) override;
+
+ // -------------------------------------------------------------------
+
+};
+
+// -----------------------------------------------------------------------
+
+END_NAMESPACE_DISTRHO
+
+#endif // ZAMAUTOSAT_HPP_INCLUDED