1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
// ----------------------------------------------------------------------------
//
// Copyright (C) 2003-2022 Fons Adriaensen <fons@linuxaudio.org>
//
// 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 3 of the License, or
// (at your option) 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.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
#include "reverbs.h"
//-----------------------------------------------------------------------------------
// Common definitions
//-----------------------------------------------------------------------------------
static const char* author = "Fons Adriaensen <fons@linuxaudio.org>";
static const char* license = "GPL3";
static void pconnect (LADSPA_Handle H, unsigned long port, LADSPA_Data *data)
{
((LadspaPlugin *)H)->setport (port, data);
}
static void activate (LADSPA_Handle H)
{
((LadspaPlugin *)H)->active (true);
}
static void runplugin (LADSPA_Handle H, unsigned long k)
{
((LadspaPlugin *)H)->runproc (k, false);
}
/*
static void runadding (LADSPA_Handle H, unsigned long k)
{
((LadspaPlugin *)H)->runproc (k, true);
}
static void setadding (LADSPA_Handle H, LADSPA_Data gain)
{
((LadspaPlugin *)H)->setgain (gain);
}
*/
static void deactivate (LADSPA_Handle H)
{
((LadspaPlugin *)H)->active (false);
}
static void cleanup (LADSPA_Handle H)
{
delete (LadspaPlugin *) H;
}
//-----------------------------------------------------------------------------------
// LADSPA dlsym interface
//-----------------------------------------------------------------------------------
#define NMODS 2
static const LADSPA_Descriptor moddescr [NMODS] =
{
{
3701,
"zita-reverb",
LADSPA_PROPERTY_HARD_RT_CAPABLE,
"zita-reverb",
author,
license,
Ladspa_zita_reverb::NPORT,
Ladspa_zita_reverb::portdescr,
Ladspa_zita_reverb::portnames,
Ladspa_zita_reverb::porthints,
0,
Ladspa_zita_reverb::create,
pconnect,
activate,
runplugin,
0,
0,
deactivate,
cleanup
},
{
3702,
"zita-rev-amb",
LADSPA_PROPERTY_HARD_RT_CAPABLE,
"zita-rev-amb",
author,
license,
Ladspa_zita_reverb_amb::NPORT,
Ladspa_zita_reverb_amb::portdescr,
Ladspa_zita_reverb_amb::portnames,
Ladspa_zita_reverb_amb::porthints,
0,
Ladspa_zita_reverb_amb::create,
pconnect,
activate,
runplugin,
0,
0,
deactivate,
cleanup
}
};
extern "C" const LADSPA_Descriptor *ladspa_descriptor (unsigned long i)
{
if (i >= NMODS) return 0;
return moddescr + i;
}
//-----------------------------------------------------------------------------------
|