|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851 |
- /*
- * Carla Native Plugins
- * Copyright (C) 2012-2014 Filipe Coelho <falktx@falktx.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.
- */
-
- #include "CarlaNative.hpp"
- #include "CarlaMIDI.h"
- #include "CarlaThread.hpp"
- #include "LinkedList.hpp"
-
- #include "CarlaMathUtils.hpp"
-
- #include "zynaddsubfx/DSP/FFTwrapper.h"
- #include "zynaddsubfx/Misc/Master.h"
- #include "zynaddsubfx/Misc/Part.h"
- #include "zynaddsubfx/Misc/Util.h"
-
- #ifdef WANT_ZYNADDSUBFX_UI
- # ifdef override
- # define override_hack
- # undef override
- # endif
-
- # include "zynaddsubfx/UI/common.H"
- # include "zynaddsubfx/UI/MasterUI.h"
- # include <FL/Fl_Shared_Image.H>
- # include <FL/Fl_Tiled_Image.H>
- # include <FL/Fl_Theme.H>
-
- # ifdef override_hack
- # define override
- # undef override_hack
- # endif
- #endif
-
- #include <ctime>
- #include <set>
- #include <string>
-
- #include "juce_audio_basics.h"
- using juce::FloatVectorOperations;
-
- #ifdef WANT_ZYNADDSUBFX_UI
- static Fl_Tiled_Image* gModuleBackdrop = nullptr;
- static CarlaString gPixmapPath;
- extern CarlaString gUiPixmapPath;
-
- void set_module_parameters(Fl_Widget* o)
- {
- CARLA_ASSERT(gModuleBackdrop != nullptr);
-
- o->box(FL_DOWN_FRAME);
- o->align(o->align() | FL_ALIGN_IMAGE_BACKDROP);
- o->color(FL_BLACK);
- o->labeltype(FL_SHADOW_LABEL);
-
- if (gModuleBackdrop != nullptr)
- o->image(gModuleBackdrop);
- }
- #endif
-
- // -----------------------------------------------------------------------
-
- class ZynAddSubFxPrograms
- {
- public:
- ZynAddSubFxPrograms()
- : fInitiated(false)
- {
- }
-
- ~ZynAddSubFxPrograms()
- {
- if (! fInitiated)
- return;
-
- for (LinkedList<const ProgramInfo*>::Itenerator it = fPrograms.begin(); it.valid(); it.next())
- {
- const ProgramInfo* const& pInfo(it.getValue());
- delete pInfo;
- }
-
- fPrograms.clear();
-
- FFT_cleanup();
- }
-
- void init()
- {
- if (fInitiated)
- return;
- fInitiated = true;
-
- fPrograms.append(new ProgramInfo(0, 0, "default"));
-
- Master& master(Master::getInstance());
-
- pthread_mutex_lock(&master.mutex);
-
- // refresh banks
- master.bank.rescanforbanks();
-
- for (uint32_t i=0, size = master.bank.banks.size(); i < size; ++i)
- {
- if (master.bank.banks[i].dir.empty())
- continue;
-
- master.bank.loadbank(master.bank.banks[i].dir);
-
- for (unsigned int instrument = 0; instrument < BANK_SIZE; ++instrument)
- {
- const std::string insName(master.bank.getname(instrument));
-
- if (insName.empty() || insName[0] == '\0' || insName[0] == ' ')
- continue;
-
- fPrograms.append(new ProgramInfo(i+1, instrument, insName.c_str()));
- }
- }
-
- pthread_mutex_unlock(&master.mutex);
- }
-
- void load(Master* const master, const uint8_t channel, const uint32_t bank, const uint32_t program)
- {
- if (bank == 0)
- {
- pthread_mutex_lock(&master->mutex);
-
- master->partonoff(channel, 1);
- master->part[channel]->defaults();
- master->part[channel]->applyparameters(false);
-
- pthread_mutex_unlock(&master->mutex);
-
- return;
- }
-
- const std::string& bankdir(master->bank.banks[bank-1].dir);
-
- if (! bankdir.empty())
- {
- pthread_mutex_lock(&master->mutex);
-
- master->partonoff(channel, 1);
-
- master->bank.loadbank(bankdir);
- master->bank.loadfromslot(program, master->part[channel]);
-
- master->part[channel]->applyparameters(false);
-
- pthread_mutex_unlock(&master->mutex);
- }
- }
-
- uint32_t count()
- {
- return fPrograms.count();
- }
-
- const NativeMidiProgram* getInfo(const uint32_t index)
- {
- if (index >= fPrograms.count())
- return nullptr;
-
- const ProgramInfo* const pInfo(fPrograms.getAt(index, nullptr));
- CARLA_SAFE_ASSERT_RETURN(pInfo != nullptr, nullptr);
-
- fRetProgram.bank = pInfo->bank;
- fRetProgram.program = pInfo->prog;
- fRetProgram.name = pInfo->name;
-
- return &fRetProgram;
- }
-
- private:
- struct ProgramInfo {
- uint32_t bank;
- uint32_t prog;
- const char* name;
-
- ProgramInfo(uint32_t bank_, uint32_t prog_, const char* name_)
- : bank(bank_),
- prog(prog_),
- name(carla_strdup(name_)) {}
-
- ~ProgramInfo()
- {
- if (name != nullptr)
- {
- delete[] name;
- name = nullptr;
- }
- }
-
- #ifdef CARLA_PROPER_CPP11_SUPPORT
- ProgramInfo() = delete;
- ProgramInfo(ProgramInfo&) = delete;
- ProgramInfo(const ProgramInfo&) = delete;
- ProgramInfo& operator=(ProgramInfo&);
- ProgramInfo& operator=(const ProgramInfo&);
- #endif
- };
-
- bool fInitiated;
- NativeMidiProgram fRetProgram;
- LinkedList<const ProgramInfo*> fPrograms;
-
- CARLA_DECLARE_NON_COPY_CLASS(ZynAddSubFxPrograms)
- };
-
- static ZynAddSubFxPrograms sPrograms;
-
- // -----------------------------------------------------------------------
-
- class ZynAddSubFxInstanceCount
- {
- public:
- ZynAddSubFxInstanceCount()
- : fCount(0)
- {
- }
-
- ~ZynAddSubFxInstanceCount()
- {
- CARLA_ASSERT(fCount == 0);
- }
-
- void addOne(const NativeHostDescriptor* const host)
- {
- if (fCount++ == 0)
- {
- CARLA_ASSERT(synth == nullptr);
- CARLA_ASSERT(denormalkillbuf == nullptr);
-
- reinit(host);
-
- #ifdef WANT_ZYNADDSUBFX_UI
- if (gPixmapPath.isEmpty())
- {
- gPixmapPath = host->resourceDir;
- gPixmapPath += "/zynaddsubfx/";
- gUiPixmapPath = gPixmapPath;
- }
- #endif
- }
- }
-
- void removeOne()
- {
- if (--fCount == 0)
- {
- CARLA_ASSERT(synth != nullptr);
- CARLA_ASSERT(denormalkillbuf != nullptr);
-
- Master::deleteInstance();
-
- delete[] denormalkillbuf;
- denormalkillbuf = nullptr;
-
- delete synth;
- synth = nullptr;
- }
- }
-
- void reinit(const NativeHostDescriptor* const host)
- {
- Master::deleteInstance();
-
- if (denormalkillbuf != nullptr)
- {
- delete[] denormalkillbuf;
- denormalkillbuf = nullptr;
- }
-
- if (synth != nullptr)
- {
- delete synth;
- synth = nullptr;
- }
-
- synth = new SYNTH_T();
- synth->buffersize = host->get_buffer_size(host->handle);
- synth->samplerate = host->get_sample_rate(host->handle);
-
- if (synth->buffersize > 32)
- synth->buffersize = 32;
-
- synth->alias();
-
- config.init();
- config.cfg.SoundBufferSize = synth->buffersize;
- config.cfg.SampleRate = synth->samplerate;
- config.cfg.GzipCompression = 0;
-
- sprng(std::time(nullptr));
-
- denormalkillbuf = new float[synth->buffersize];
- for (int i=0; i < synth->buffersize; ++i)
- denormalkillbuf[i] = (RND - 0.5f) * 1e-16;
-
- Master::getInstance();
- }
-
- void maybeReinit(const NativeHostDescriptor* const host)
- {
- if (host->get_buffer_size(host->handle) == static_cast<uint32_t>(synth->buffersize) &&
- host->get_sample_rate(host->handle) == static_cast<double>(synth->samplerate))
- return;
-
- reinit(host);
- }
-
- private:
- int fCount;
-
- CARLA_DECLARE_NON_COPY_CLASS(ZynAddSubFxInstanceCount)
- };
-
- static ZynAddSubFxInstanceCount sInstanceCount;
-
- // -----------------------------------------------------------------------
-
- class ZynAddSubFxThread : public CarlaThread
- {
- public:
- ZynAddSubFxThread(Master* const master, const NativeHostDescriptor* const host)
- : CarlaThread("ZynAddSubFxThread"),
- fMaster(master),
- kHost(host),
- #ifdef WANT_ZYNADDSUBFX_UI
- fUi(nullptr),
- fUiClosed(0),
- fNextUiAction(-1),
- #endif
- fChangeProgram(false),
- fNextChannel(0),
- fNextBank(0),
- fNextProgram(0)
- {
- }
-
- ~ZynAddSubFxThread()
- {
- #ifdef WANT_ZYNADDSUBFX_UI
- // must be closed by now
- CARLA_ASSERT(fUi == nullptr);
- #endif
- }
-
- void loadProgramLater(const uint8_t channel, const uint32_t bank, const uint32_t program)
- {
- fNextChannel = channel;
- fNextBank = bank;
- fNextProgram = program;
- fChangeProgram = true;
- }
-
- void stopLoadProgramLater()
- {
- fChangeProgram = false;
- fNextChannel = 0;
- fNextBank = 0;
- fNextProgram = 0;
- }
-
- void setMaster(Master* const master)
- {
- fMaster = master;
- }
-
- #ifdef WANT_ZYNADDSUBFX_UI
- void uiHide()
- {
- fNextUiAction = 0;
- }
-
- void uiShow()
- {
- fNextUiAction = 1;
- }
-
- void uiRepaint()
- {
- if (fUi != nullptr)
- fNextUiAction = 2;
- }
-
- void uiChangeName(const char* const name)
- {
- if (fUi != nullptr)
- {
- Fl::lock();
- fUi->masterwindow->label(name);
- Fl::unlock();
- }
- }
- #endif
-
- protected:
- void run() override
- {
- while (! shouldThreadExit())
- {
- #ifdef WANT_ZYNADDSUBFX_UI
- Fl::lock();
-
- if (fNextUiAction == 2) // repaint
- {
- CARLA_ASSERT(fUi != nullptr);
-
- if (fUi != nullptr)
- fUi->refresh_master_ui();
- }
- else if (fNextUiAction == 1) // init/show
- {
- static bool initialized = false;
-
- if (! initialized)
- {
- initialized = true;
- fl_register_images();
-
- Fl_Dial::default_style(Fl_Dial::PIXMAP_DIAL);
-
- if (Fl_Shared_Image* const img = Fl_Shared_Image::get(gPixmapPath + "knob.png"))
- Fl_Dial::default_image(img);
-
- if (Fl_Shared_Image* const img = Fl_Shared_Image::get(gPixmapPath + "window_backdrop.png"))
- Fl::scheme_bg(new Fl_Tiled_Image(img));
-
- if(Fl_Shared_Image* const img = Fl_Shared_Image::get(gPixmapPath + "module_backdrop.png"))
- gModuleBackdrop = new Fl_Tiled_Image(img);
-
- Fl::background(50, 50, 50);
- Fl::background2(70, 70, 70);
- Fl::foreground(255, 255, 255);
-
- Fl_Theme::set("Cairo");
- }
-
- if (fUi == nullptr)
- {
- fUiClosed = 0;
- fUi = new MasterUI(fMaster, &fUiClosed);
- fUi->masterwindow->label(kHost->uiName);
- fUi->showUI();
- }
- else
- fUi->showUI();
- }
- else if (fNextUiAction == 0) // close
- {
- CARLA_ASSERT(fUi != nullptr);
-
- if (fUi != nullptr)
- {
- delete fUi;
- fUi = nullptr;
- }
- }
-
- fNextUiAction = -1;
-
- if (fUiClosed != 0)
- {
- fUiClosed = 0;
- fNextUiAction = 0;
- kHost->ui_closed(kHost->handle);
- }
-
- Fl::check();
- Fl::unlock();
- #endif
-
- if (fChangeProgram)
- {
- fChangeProgram = false;
- sPrograms.load(fMaster, fNextChannel, fNextBank, fNextProgram);
- fNextChannel = 0;
- fNextBank = 0;
- fNextProgram = 0;
-
- #ifdef WANT_ZYNADDSUBFX_UI
- if (fUi != nullptr)
- {
- Fl::lock();
- fUi->refresh_master_ui();
- Fl::unlock();
- }
- #endif
-
- carla_msleep(15);
- }
- else
- {
- carla_msleep(30);
- }
- }
-
- #ifdef WANT_ZYNADDSUBFX_UI
- if (shouldThreadExit() || fUi != nullptr)
- {
- Fl::lock();
- delete fUi;
- fUi = nullptr;
- Fl::check();
- Fl::unlock();
- }
- #endif
- }
-
- private:
- Master* fMaster;
- const NativeHostDescriptor* const kHost;
-
- #ifdef WANT_ZYNADDSUBFX_UI
- MasterUI* fUi;
- int fUiClosed;
- volatile int fNextUiAction;
- #endif
-
- volatile bool fChangeProgram;
- volatile uint8_t fNextChannel;
- volatile uint32_t fNextBank;
- volatile uint32_t fNextProgram;
- };
-
- // -----------------------------------------------------------------------
-
- class ZynAddSubFxPlugin : public NativePluginClass
- {
- public:
- ZynAddSubFxPlugin(const NativeHostDescriptor* const host)
- : NativePluginClass(host),
- fMaster(new Master()),
- fSampleRate(getSampleRate()),
- fIsActive(false),
- fThread(fMaster, host)
- {
- fThread.startThread();
-
- for (int i = 0; i < NUM_MIDI_PARTS; ++i)
- fMaster->partonoff(i, 1);
-
- sPrograms.init();
-
- #if 0
- // create instance if needed
- getGlobalMutex();
- #endif
- }
-
- ~ZynAddSubFxPlugin() override
- {
- deleteMaster();
- }
-
- protected:
- // -------------------------------------------------------------------
- // Plugin midi-program calls
-
- uint32_t getMidiProgramCount() const override
- {
- return sPrograms.count();
- }
-
- const NativeMidiProgram* getMidiProgramInfo(const uint32_t index) const override
- {
- return sPrograms.getInfo(index);
- }
-
- // -------------------------------------------------------------------
- // Plugin state calls
-
- void setMidiProgram(const uint8_t channel, const uint32_t bank, const uint32_t program) override
- {
- if (bank >= fMaster->bank.banks.size())
- return;
- if (program >= BANK_SIZE)
- return;
-
- if (isOffline() || ! fIsActive)
- {
- sPrograms.load(fMaster, channel, bank, program);
- #ifdef WANT_ZYNADDSUBFX_UI
- fThread.uiRepaint();
- #endif
- }
- else
- fThread.loadProgramLater(channel, bank, program);
- }
-
- void setCustomData(const char* const key, const char* const value) override
- {
- CARLA_SAFE_ASSERT_RETURN(key != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(value != nullptr,);
-
- pthread_mutex_lock(&fMaster->mutex);
-
- if (std::strcmp(key, "CarlaAlternateFile1") == 0) // xmz
- {
- fMaster->defaults();
- fMaster->loadXML(value);
- }
- else if (std::strcmp(key, "CarlaAlternateFile2") == 0) // xiz
- {
- fMaster->part[0]->defaultsinstrument();
- fMaster->part[0]->loadXMLinstrument(value);
- }
-
- pthread_mutex_unlock(&fMaster->mutex);
-
- fMaster->applyparameters();
- }
-
- // -------------------------------------------------------------------
- // Plugin process calls
-
- void activate() override
- {
- fIsActive = true;
- }
-
- void deactivate() override
- {
- fIsActive = false;
- }
-
- void process(float**, float** const outBuffer, const uint32_t frames, const NativeMidiEvent* const midiEvents, const uint32_t midiEventCount) override
- {
- if (pthread_mutex_trylock(&fMaster->mutex) != 0)
- {
- FloatVectorOperations::clear(outBuffer[0], frames);
- FloatVectorOperations::clear(outBuffer[1], frames);
- return;
- }
-
- #if 0
- const CarlaMutexLocker csm(getGlobalMutex());
- #endif
-
- for (uint32_t i=0; i < midiEventCount; ++i)
- {
- const NativeMidiEvent* const midiEvent(&midiEvents[i]);
-
- const uint8_t status = MIDI_GET_STATUS_FROM_DATA(midiEvent->data);
- const uint8_t channel = MIDI_GET_CHANNEL_FROM_DATA(midiEvent->data);
-
- if (MIDI_IS_STATUS_NOTE_OFF(status))
- {
- const uint8_t note = midiEvent->data[1];
-
- fMaster->noteOff(channel, note);
- }
- else if (MIDI_IS_STATUS_NOTE_ON(status))
- {
- const uint8_t note = midiEvent->data[1];
- const uint8_t velo = midiEvent->data[2];
-
- fMaster->noteOn(channel, note, velo);
- }
- else if (MIDI_IS_STATUS_POLYPHONIC_AFTERTOUCH(status))
- {
- const uint8_t note = midiEvent->data[1];
- const uint8_t pressure = midiEvent->data[2];
-
- fMaster->polyphonicAftertouch(channel, note, pressure);
- }
- else if (MIDI_IS_STATUS_CONTROL_CHANGE(status))
- {
- const uint8_t control = midiEvent->data[1];
- const uint8_t value = midiEvent->data[2];
-
- fMaster->setController(channel, control, value);
- }
- else if (MIDI_IS_STATUS_PITCH_WHEEL_CONTROL(status))
- {
- const uint8_t lsb = midiEvent->data[1];
- const uint8_t msb = midiEvent->data[2];
- const int value = ((msb << 7) | lsb) - 8192;
-
- fMaster->setController(channel, C_pitchwheel, value);
- }
- }
-
- fMaster->GetAudioOutSamples(frames, fSampleRate, outBuffer[0], outBuffer[1]);
-
- pthread_mutex_unlock(&fMaster->mutex);
- }
-
- #ifdef WANT_ZYNADDSUBFX_UI
- // -------------------------------------------------------------------
- // Plugin UI calls
-
- void uiShow(const bool show) override
- {
- if (show)
- fThread.uiShow();
- else
- fThread.uiHide();
- }
- #endif
-
- // -------------------------------------------------------------------
- // Plugin state calls
-
- char* getState() const override
- {
- config.save();
-
- char* data = nullptr;
- fMaster->getalldata(&data);
- return data;
- }
-
- void setState(const char* const data) override
- {
- fThread.stopLoadProgramLater();
- fMaster->putalldata((char*)data, 0);
- fMaster->applyparameters(true);
- }
-
- // -------------------------------------------------------------------
- // Plugin dispatcher
-
- // TODO - save&load current state
-
- void bufferSizeChanged(const uint32_t) final
- {
- deleteMaster();
- sInstanceCount.maybeReinit(getHostHandle());
- initMaster();
- }
-
- void sampleRateChanged(const double sampleRate) final
- {
- fSampleRate = sampleRate;
- deleteMaster();
- sInstanceCount.maybeReinit(getHostHandle());
- initMaster();
- }
-
- void initMaster()
- {
- fMaster = new Master();
- fThread.setMaster(fMaster);
- fThread.startThread();
-
- for (int i = 0; i < NUM_MIDI_PARTS; ++i)
- fMaster->partonoff(i, 1);
- }
-
- void deleteMaster()
- {
- //ensure that everything has stopped
- pthread_mutex_lock(&fMaster->mutex);
- pthread_mutex_unlock(&fMaster->mutex);
- fThread.stopThread(-1);
-
- delete fMaster;
- fMaster = nullptr;
- }
-
- #ifdef WANT_ZYNADDSUBFX_UI
- void uiNameChanged(const char* const uiName) override
- {
- fThread.uiChangeName(uiName);
- }
- #endif
-
- // -------------------------------------------------------------------
-
- private:
- Master* fMaster;
- unsigned fSampleRate;
- bool fIsActive;
-
- ZynAddSubFxThread fThread;
-
- #if 0
- // -------------------------------------------------------------------
-
- static CarlaMutex& getGlobalMutex() noexcept
- {
- static CarlaMutex m;
- return m;
- }
- #endif
-
- // -------------------------------------------------------------------
-
- public:
- static NativePluginHandle _instantiate(const NativeHostDescriptor* host)
- {
- sInstanceCount.addOne(host);
- return new ZynAddSubFxPlugin(host);
- }
- static void _cleanup(NativePluginHandle handle)
- {
- delete (ZynAddSubFxPlugin*)handle;
- sInstanceCount.removeOne();
- }
-
- CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(ZynAddSubFxPlugin)
- };
-
- // -----------------------------------------------------------------------
-
- static const NativePluginDescriptor zynaddsubfxDesc = {
- /* category */ PLUGIN_CATEGORY_SYNTH,
- #ifdef WANT_ZYNADDSUBFX_UI
- /* hints */ static_cast<NativePluginHints>(PLUGIN_IS_SYNTH|PLUGIN_HAS_UI|PLUGIN_USES_MULTI_PROGS|PLUGIN_USES_STATE),
- #else
- /* hints */ static_cast<NativePluginHints>(PLUGIN_IS_SYNTH|PLUGIN_USES_MULTI_PROGS|PLUGIN_USES_STATE),
- #endif
- /* supports */ static_cast<NativePluginSupports>(PLUGIN_SUPPORTS_CONTROL_CHANGES|PLUGIN_SUPPORTS_NOTE_AFTERTOUCH|PLUGIN_SUPPORTS_PITCHBEND|PLUGIN_SUPPORTS_ALL_SOUND_OFF),
- /* audioIns */ 0,
- /* audioOuts */ 2,
- /* midiIns */ 1,
- /* midiOuts */ 0,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "ZynAddSubFX",
- /* label */ "zynaddsubfx",
- /* maker */ "falkTX, Mark McCurry, Nasca Octavian Paul",
- /* copyright */ "GNU GPL v2+",
- PluginDescriptorFILL(ZynAddSubFxPlugin)
- };
-
- // -----------------------------------------------------------------------
-
- CARLA_EXPORT
- void carla_register_native_plugin_zynaddsubfx_synth()
- {
- carla_register_native_plugin(&zynaddsubfxDesc);
- }
-
- // -----------------------------------------------------------------------
|