Browse Source

Add meta-data

pull/2/merge
falkTX 10 years ago
parent
commit
9dd0c46a42
9 changed files with 57 additions and 23 deletions
  1. +1
    -1
      dpf
  2. +5
    -3
      plugins/bitcrush/DistrhoPluginInfo.h
  3. +14
    -3
      plugins/common/DistrhoPluginMaxGen.hpp
  4. +7
    -3
      plugins/freeverb/DistrhoPluginInfo.h
  5. +7
    -3
      plugins/gigaverb/DistrhoPluginInfo.h
  6. +8
    -3
      plugins/pitchotto/DistrhoPluginInfo.h
  7. +7
    -3
      plugins/pitchshift/DistrhoPluginInfo.h
  8. +1
    -1
      plugins/pitchshift/gen_exported.cpp
  9. +7
    -3
      plugins/shiroverb/DistrhoPluginInfo.h

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit 2ed2eab14b11cdc20c5b83b526e347e96ab4e138
Subproject commit c8f0fdec1fcd139ba51732ef99a7b57b3fd2d1d4

+ 5
- 3
plugins/bitcrush/DistrhoPluginInfo.h View File

@@ -17,14 +17,16 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED

#define DISTRHO_PLUGIN_NAME "MaBitcrush"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaBitcrush"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaBitcrush"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaBitcrush"

#define DISTRHO_PLUGIN_HAS_UI 0
#define DISTRHO_PLUGIN_IS_RT_SAFE 0
#define DISTRHO_PLUGIN_NUM_INPUTS 1
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2

//#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:EQPlugin"
#define DISTRHO_PLUGIN_DESCRIPTION "Max Gen Bitcrush example."
#define DISTRHO_PLUGIN_VERSION d_cconst('D', 'M', 'b', 'c')

#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

+ 14
- 3
plugins/common/DistrhoPluginMaxGen.hpp View File

@@ -39,24 +39,35 @@ protected:
return DISTRHO_PLUGIN_NAME;
}
const char* getDescription() const noexcept override
{
return DISTRHO_PLUGIN_DESCRIPTION;
}
const char* getMaker() const noexcept override
{
return "DISTRHO";
}
const char* getHomePage() const noexcept override
{
return "https://github.com/DISTRHO/DPF-Max-Gen";
}
const char* getLicense() const noexcept override
{
return "LGPL";
return "ISC";
}
uint32_t getVersion() const noexcept override
{
return 0x1000;
return d_version(0, 1, 0);
}
int64_t getUniqueId() const noexcept override
{
return d_cconst('D', '3', 'E', 'Q');
// TODO
return d_cconst('D', 'M', 'a', 'G');
}
// -------------------------------------------------------------------


+ 7
- 3
plugins/freeverb/DistrhoPluginInfo.h View File

@@ -17,14 +17,18 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED

#define DISTRHO_PLUGIN_NAME "MaFreeverb"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaFreeverb"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaFreeverb"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaFreeverb"

#define DISTRHO_PLUGIN_HAS_UI 0
#define DISTRHO_PLUGIN_IS_RT_SAFE 0
#define DISTRHO_PLUGIN_NUM_INPUTS 1
#define DISTRHO_PLUGIN_NUM_OUTPUTS 1

//#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"

#define DISTRHO_PLUGIN_DESCRIPTION "Max Gen Freeverb example."
#define DISTRHO_PLUGIN_VERSION d_cconst('D', 'M', 'f', 'v')

#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

+ 7
- 3
plugins/gigaverb/DistrhoPluginInfo.h View File

@@ -17,14 +17,18 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED

#define DISTRHO_PLUGIN_NAME "MaGigaverb"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaGigaverb"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaGigaverb"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaGigaverb"

#define DISTRHO_PLUGIN_HAS_UI 0
#define DISTRHO_PLUGIN_IS_RT_SAFE 0
#define DISTRHO_PLUGIN_NUM_INPUTS 2
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2

//#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"

#define DISTRHO_PLUGIN_DESCRIPTION "Max Gen Gigaverb example."
#define DISTRHO_PLUGIN_VERSION d_cconst('D', 'M', 'g', 'v')

#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

+ 8
- 3
plugins/pitchotto/DistrhoPluginInfo.h View File

@@ -17,14 +17,19 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED

#define DISTRHO_PLUGIN_NAME "Pitchotto"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Pitchotto"
#define DISTRHO_PLUGIN_BRAND "Shiro"
#define DISTRHO_PLUGIN_NAME "Pitchotto"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Pitchotto"

#define DISTRHO_PLUGIN_HAS_UI 0
#define DISTRHO_PLUGIN_IS_RT_SAFE 0
#define DISTRHO_PLUGIN_NUM_INPUTS 1
#define DISTRHO_PLUGIN_NUM_OUTPUTS 1

//#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:PitchPlugin"

#define DISTRHO_PLUGIN_DESCRIPTION "Pitchotto is a pitch-shifter based on the \"Pitch-Shift\"-genpatch in Max, where Phase-shifting is used to achieve different intervals.\n\
There are two shifted signals available, both with variable window-sizes for arpeggio-like sounds."
#define DISTRHO_PLUGIN_VERSION d_cconst('D', 'M', 'p', 'c')

#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

+ 7
- 3
plugins/pitchshift/DistrhoPluginInfo.h View File

@@ -17,14 +17,18 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED

#define DISTRHO_PLUGIN_NAME "MaPitchshift"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaPitchshift"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaPitchshift"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaPitchshift"

#define DISTRHO_PLUGIN_HAS_UI 0
#define DISTRHO_PLUGIN_IS_RT_SAFE 0
#define DISTRHO_PLUGIN_NUM_INPUTS 1
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2

//#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:EQPlugin"
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:PitchPlugin"

#define DISTRHO_PLUGIN_DESCRIPTION "Max Gen Pitchshifter example."
#define DISTRHO_PLUGIN_VERSION d_cconst('D', 'M', 'p', 's')

#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

+ 1
- 1
plugins/pitchshift/gen_exported.cpp View File

@@ -69,7 +69,7 @@ typedef struct State {
m_delay_5.reset("m_delay_5", 88200);
m_blur_6 = 0;
m_window_7 = 100;
m_ratio_8 = 0;
m_ratio_8 = 1;
m_xfade_9 = 1;
samples_to_seconds = (1 / samplerate);
m_phasor_10.reset(0);


+ 7
- 3
plugins/shiroverb/DistrhoPluginInfo.h View File

@@ -17,14 +17,18 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED

#define DISTRHO_PLUGIN_NAME "Shiroverb"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Shiroverb"
#define DISTRHO_PLUGIN_BRAND "Shiro"
#define DISTRHO_PLUGIN_NAME "Shiroverb"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Shiroverb"

#define DISTRHO_PLUGIN_HAS_UI 0
#define DISTRHO_PLUGIN_IS_RT_SAFE 0
#define DISTRHO_PLUGIN_NUM_INPUTS 1
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2

//#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"

#define DISTRHO_PLUGIN_DESCRIPTION "Shiroverb is a shimmer-reverb based on the \"Gigaverb\"-genpatch, ported from the implementation by Juhana Sadeharju, and the \"Pitch-Shift\"-genpatch, both in Max."
#define DISTRHO_PLUGIN_VERSION d_cconst('D', 'M', 's', 'v')

#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

Loading…
Cancel
Save