[SCM] calf/master: + Framework: put plugin_info for Monosynth and Organ in their respective .cpp files instead of modules.cpp

js at users.alioth.debian.org js at users.alioth.debian.org
Tue May 7 15:37:52 UTC 2013


The following commit has been merged in the master branch:
commit 83ea4fe1f4528f1e671d8a2aaad65330ea62266a
Author: Krzysztof Foltman <wdev at foltman.com>
Date:   Wed Oct 29 22:06:22 2008 +0000

    + Framework: put plugin_info for Monosynth and Organ in their respective .cpp files instead of modules.cpp

diff --git a/src/modules.cpp b/src/modules.cpp
index f9f307f..2ca0582 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -155,14 +155,6 @@ synth::ladspa_plugin_info rotary_speaker_audio_module::plugin_info = { 0x8483, "
 
 ////////////////////////////////////////////////////////////////////////////
 
-synth::ladspa_plugin_info organ_audio_module::plugin_info = { 0x8481, "Organ", "Calf Organ", "Krzysztof Foltman", synth::calf_copyright_info, "SynthesizerPlugin" };
-
-////////////////////////////////////////////////////////////////////////////
-
-synth::ladspa_plugin_info monosynth_audio_module::plugin_info = { 0x8480, "Monosynth", "Calf Monosynth", "Krzysztof Foltman", synth::calf_copyright_info, "SynthesizerPlugin" };
-
-////////////////////////////////////////////////////////////////////////////
-
 const char *multichorus_audio_module::port_names[] = {"In L", "In R", "Out L", "Out R"};
 
 parameter_properties multichorus_audio_module::param_props[] = {
diff --git a/src/monosynth.cpp b/src/monosynth.cpp
index 642bc58..e1008b4 100644
--- a/src/monosynth.cpp
+++ b/src/monosynth.cpp
@@ -52,6 +52,8 @@ const char *monosynth_filter_choices[] = {
     "2x6dB/oct Bandpass",
 };
 
+synth::ladspa_plugin_info monosynth_audio_module::plugin_info = { 0x8480, "Monosynth", "Calf Monosynth", "Krzysztof Foltman", synth::calf_copyright_info, "SynthesizerPlugin" };
+
 static const char *monosynth_gui_xml =
     "<vbox border=\"10\">"
         "<hbox spacing=\"10\">"
diff --git a/src/organ.cpp b/src/organ.cpp
index cf6836c..3c1648c 100644
--- a/src/organ.cpp
+++ b/src/organ.cpp
@@ -34,6 +34,8 @@
 using namespace synth;
 using namespace std;
 
+synth::ladspa_plugin_info organ_audio_module::plugin_info = { 0x8481, "Organ", "Calf Organ", "Krzysztof Foltman", synth::calf_copyright_info, "SynthesizerPlugin" };
+
 #define DRAWBAR_UI(no) \
             "<label  attach-x=\"" no "\" attach-y=\"0\" param=\"l" no "\"/>" \
             "<vscale attach-x=\"" no "\" attach-y=\"1\" param=\"l" no "\"/>" \

-- 
calf audio plugins packaging



More information about the pkg-multimedia-commits mailing list