|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869 |
- /*
- * Carla LADSPA Plugin
- * Copyright (C) 2011-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 "CarlaPluginInternal.hpp"
- #include "CarlaEngine.hpp"
-
- #include "CarlaLadspaUtils.hpp"
- #include "CarlaMathUtils.hpp"
-
- CARLA_BACKEND_START_NAMESPACE
-
- // -----------------------------------------------------
-
- class CarlaPluginLADSPA : public CarlaPlugin
- {
- public:
- CarlaPluginLADSPA(CarlaEngine* const engine, const uint id) noexcept
- : CarlaPlugin(engine, id),
- fHandles(),
- fDescriptor(nullptr),
- fRdfDescriptor(nullptr),
- fAudioInBuffers(nullptr),
- fAudioOutBuffers(nullptr),
- fExtraStereoBuffer(),
- fParamBuffers(nullptr),
- fLatencyIndex(-1),
- fIsDssiVst(false),
- fForcedStereoIn(false),
- fForcedStereoOut(false),
- leakDetector_CarlaPluginLADSPA()
- {
- carla_debug("CarlaPluginLADSPA::CarlaPluginLADSPA(%p, %i)", engine, id);
-
- carla_zeroPointers(fExtraStereoBuffer, 2);
- }
-
- ~CarlaPluginLADSPA() noexcept override
- {
- carla_debug("CarlaPluginLADSPA::~CarlaPluginLADSPA()");
-
- pData->singleMutex.lock();
- pData->masterMutex.lock();
-
- if (pData->client != nullptr && pData->client->isActive())
- pData->client->deactivate();
-
- if (pData->active)
- {
- deactivate();
- pData->active = false;
- }
-
- if (fDescriptor != nullptr)
- {
- if (fDescriptor->cleanup != nullptr)
- {
- for (LinkedList<LADSPA_Handle>::Itenerator it = fHandles.begin(); it.valid(); it.next())
- {
- LADSPA_Handle const handle(it.getValue(nullptr));
- CARLA_SAFE_ASSERT_CONTINUE(handle != nullptr);
-
- try {
- fDescriptor->cleanup(handle);
- } CARLA_SAFE_EXCEPTION("LADSPA cleanup");
- }
- }
-
- fHandles.clear();
- fDescriptor = nullptr;
- }
-
- if (fRdfDescriptor != nullptr)
- {
- delete fRdfDescriptor;
- fRdfDescriptor = nullptr;
- }
-
- clearBuffers();
- }
-
- // -------------------------------------------------------------------
- // Information (base)
-
- PluginType getType() const noexcept override
- {
- return PLUGIN_LADSPA;
- }
-
- PluginCategory getCategory() const noexcept override
- {
- if (fRdfDescriptor != nullptr)
- {
- const LADSPA_PluginType category(fRdfDescriptor->Type);
-
- // Specific Types
- if (category & (LADSPA_PLUGIN_DELAY|LADSPA_PLUGIN_REVERB))
- return PLUGIN_CATEGORY_DELAY;
- if (category & (LADSPA_PLUGIN_PHASER|LADSPA_PLUGIN_FLANGER|LADSPA_PLUGIN_CHORUS))
- return PLUGIN_CATEGORY_MODULATOR;
- if (category & (LADSPA_PLUGIN_AMPLIFIER))
- return PLUGIN_CATEGORY_DYNAMICS;
- if (category & (LADSPA_PLUGIN_UTILITY|LADSPA_PLUGIN_SPECTRAL|LADSPA_PLUGIN_FREQUENCY_METER))
- return PLUGIN_CATEGORY_UTILITY;
-
- // Pre-set LADSPA Types
- if (LADSPA_IS_PLUGIN_DYNAMICS(category))
- return PLUGIN_CATEGORY_DYNAMICS;
- if (LADSPA_IS_PLUGIN_AMPLITUDE(category))
- return PLUGIN_CATEGORY_MODULATOR;
- if (LADSPA_IS_PLUGIN_EQ(category))
- return PLUGIN_CATEGORY_EQ;
- if (LADSPA_IS_PLUGIN_FILTER(category))
- return PLUGIN_CATEGORY_FILTER;
- if (LADSPA_IS_PLUGIN_FREQUENCY(category))
- return PLUGIN_CATEGORY_UTILITY;
- if (LADSPA_IS_PLUGIN_SIMULATOR(category))
- return PLUGIN_CATEGORY_OTHER;
- if (LADSPA_IS_PLUGIN_TIME(category))
- return PLUGIN_CATEGORY_DELAY;
- if (LADSPA_IS_PLUGIN_GENERATOR(category))
- return PLUGIN_CATEGORY_SYNTH;
- }
-
- return CarlaPlugin::getCategory();
- }
-
- int64_t getUniqueId() const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr, 0);
-
- return static_cast<int64_t>(fDescriptor->UniqueID);
- }
-
- uint32_t getLatencyInFrames() const noexcept override
- {
- if (fLatencyIndex < 0 || fParamBuffers == nullptr)
- return 0;
-
- const float latency(fParamBuffers[fLatencyIndex]);
- CARLA_SAFE_ASSERT_RETURN(latency >= 0.0f, 0);
-
- return static_cast<uint32_t>(latency);
- }
-
- // -------------------------------------------------------------------
- // Information (count)
-
- uint32_t getParameterScalePointCount(const uint32_t parameterId) const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, 0);
-
- const int32_t rindex(pData->param.data[parameterId].rindex);
- CARLA_SAFE_ASSERT_RETURN(rindex >= 0, 0);
-
- if (fRdfDescriptor != nullptr && rindex < static_cast<int32_t>(fRdfDescriptor->PortCount))
- {
- const LADSPA_RDF_Port* const port(&fRdfDescriptor->Ports[rindex]);
- return static_cast<uint32_t>(port->ScalePointCount);
- }
-
- return 0;
- }
-
- // -------------------------------------------------------------------
- // Information (current data)
-
- // nothing
-
- // -------------------------------------------------------------------
- // Information (per-plugin data)
-
- uint getOptionsAvailable() const noexcept override
- {
- uint options = 0x0;
-
- if (! fIsDssiVst)
- {
- // can't disable fixed buffers if using latency
- if (fLatencyIndex == -1)
- options |= PLUGIN_OPTION_FIXED_BUFFERS;
-
- // can't disable forced stereo if in rack mode
- if (pData->engine->getProccessMode() == ENGINE_PROCESS_MODE_CONTINUOUS_RACK)
- pass();
- // if inputs or outputs are just 1, then yes we can force stereo
- else if (pData->audioIn.count == 1 || pData->audioOut.count == 1 || fForcedStereoIn || fForcedStereoOut)
- options |= PLUGIN_OPTION_FORCE_STEREO;
- }
-
- return options;
- }
-
- float getParameterValue(const uint32_t parameterId) const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fParamBuffers != nullptr, 0.0f);
- CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, 0.0f);
-
- // bad plugins might have set output values out of bounds
- if (pData->param.data[parameterId].type == PARAMETER_OUTPUT)
- return pData->param.ranges[parameterId].getFixedValue(fParamBuffers[parameterId]);
-
- // not output, should be fine
- return fParamBuffers[parameterId];
- }
-
- float getParameterScalePointValue(const uint32_t parameterId, const uint32_t scalePointId) const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fRdfDescriptor != nullptr, 0.0f);
- CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, 0.0f);
-
- const int32_t rindex(pData->param.data[parameterId].rindex);
- CARLA_SAFE_ASSERT_RETURN(rindex >= 0, 0.0f);
-
- if (rindex < static_cast<int32_t>(fRdfDescriptor->PortCount))
- {
- const LADSPA_RDF_Port* const port(&fRdfDescriptor->Ports[rindex]);
- CARLA_SAFE_ASSERT_RETURN(scalePointId < port->ScalePointCount, 0.0f);
-
- const LADSPA_RDF_ScalePoint* const scalePoint(&port->ScalePoints[scalePointId]);
- return pData->param.ranges[parameterId].getFixedValue(scalePoint->Value);
- }
-
- return 0.0f;
- }
-
- void getLabel(char* const strBuf) const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr, nullStrBuf(strBuf));
- CARLA_SAFE_ASSERT_RETURN(fDescriptor->Label != nullptr, nullStrBuf(strBuf));
-
- std::strncpy(strBuf, fDescriptor->Label, STR_MAX);
- }
-
- void getMaker(char* const strBuf) const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr, nullStrBuf(strBuf));
- CARLA_SAFE_ASSERT_RETURN(fDescriptor->Maker != nullptr, nullStrBuf(strBuf));
-
- if (fRdfDescriptor != nullptr && fRdfDescriptor->Creator != nullptr)
- {
- std::strncpy(strBuf, fRdfDescriptor->Creator, STR_MAX);
- return;
- }
-
- std::strncpy(strBuf, fDescriptor->Maker, STR_MAX);
- }
-
- void getCopyright(char* const strBuf) const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr, nullStrBuf(strBuf));
- CARLA_SAFE_ASSERT_RETURN(fDescriptor->Copyright != nullptr, nullStrBuf(strBuf));
-
- std::strncpy(strBuf, fDescriptor->Copyright, STR_MAX);
- }
-
- void getRealName(char* const strBuf) const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr, nullStrBuf(strBuf));
- CARLA_SAFE_ASSERT_RETURN(fDescriptor->Name != nullptr, nullStrBuf(strBuf));
-
- if (fRdfDescriptor != nullptr && fRdfDescriptor->Title != nullptr)
- {
- std::strncpy(strBuf, fRdfDescriptor->Title, STR_MAX);
- return;
- }
-
- std::strncpy(strBuf, fDescriptor->Name, STR_MAX);
- }
-
- void getParameterName(const uint32_t parameterId, char* const strBuf) const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr, nullStrBuf(strBuf));
- CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, nullStrBuf(strBuf));
-
- const int32_t rindex(pData->param.data[parameterId].rindex);
- CARLA_SAFE_ASSERT_RETURN(rindex >= 0, nullStrBuf(strBuf));
-
- CARLA_SAFE_ASSERT_RETURN(rindex < static_cast<int32_t>(fDescriptor->PortCount), nullStrBuf(strBuf));
- CARLA_SAFE_ASSERT_RETURN(fDescriptor->PortNames[rindex] != nullptr, nullStrBuf(strBuf));
-
- if (getSeparatedParameterNameOrUnit(fDescriptor->PortNames[rindex], strBuf, true))
- return;
-
- std::strncpy(strBuf, fDescriptor->PortNames[rindex], STR_MAX);
- }
-
- void getParameterSymbol(const uint32_t parameterId, char* const strBuf) const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, nullStrBuf(strBuf));
-
- const int32_t rindex(pData->param.data[parameterId].rindex);
- CARLA_SAFE_ASSERT_RETURN(rindex >= 0, nullStrBuf(strBuf));
-
- if (fRdfDescriptor != nullptr && rindex < static_cast<int32_t>(fRdfDescriptor->PortCount))
- {
- const LADSPA_RDF_Port* const port(&fRdfDescriptor->Ports[rindex]);
-
- if (LADSPA_PORT_HAS_LABEL(port->Hints))
- {
- CARLA_SAFE_ASSERT_RETURN(port->Label != nullptr, nullStrBuf(strBuf));
-
- std::strncpy(strBuf, port->Label, STR_MAX);
- return;
- }
- }
-
- nullStrBuf(strBuf);
- }
-
- void getParameterUnit(const uint32_t parameterId, char* const strBuf) const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, nullStrBuf(strBuf));
-
- const int32_t rindex(pData->param.data[parameterId].rindex);
- CARLA_SAFE_ASSERT_RETURN(rindex >= 0, nullStrBuf(strBuf));
-
- if (fRdfDescriptor != nullptr && rindex < static_cast<int32_t>(fRdfDescriptor->PortCount))
- {
- const LADSPA_RDF_Port* const port(&fRdfDescriptor->Ports[rindex]);
-
- if (LADSPA_PORT_HAS_UNIT(port->Hints))
- {
- switch (port->Unit)
- {
- case LADSPA_UNIT_DB:
- std::strncpy(strBuf, "dB", STR_MAX);
- return;
- case LADSPA_UNIT_COEF:
- std::strncpy(strBuf, "(coef)", STR_MAX);
- return;
- case LADSPA_UNIT_HZ:
- std::strncpy(strBuf, "Hz", STR_MAX);
- return;
- case LADSPA_UNIT_S:
- std::strncpy(strBuf, "s", STR_MAX);
- return;
- case LADSPA_UNIT_MS:
- std::strncpy(strBuf, "ms", STR_MAX);
- return;
- case LADSPA_UNIT_MIN:
- std::strncpy(strBuf, "min", STR_MAX);
- return;
- }
- }
- }
-
- CARLA_SAFE_ASSERT_RETURN(rindex < static_cast<int32_t>(fDescriptor->PortCount), nullStrBuf(strBuf));
- CARLA_SAFE_ASSERT_RETURN(fDescriptor->PortNames[rindex] != nullptr, nullStrBuf(strBuf));
-
- if (getSeparatedParameterNameOrUnit(fDescriptor->PortNames[rindex], strBuf, false))
- return;
-
- nullStrBuf(strBuf);
- }
-
- void getParameterScalePointLabel(const uint32_t parameterId, const uint32_t scalePointId, char* const strBuf) const noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fRdfDescriptor != nullptr, nullStrBuf(strBuf));
- CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count, nullStrBuf(strBuf));
-
- const int32_t rindex(pData->param.data[parameterId].rindex);
- CARLA_SAFE_ASSERT_RETURN(rindex >= 0, nullStrBuf(strBuf));
-
- if (rindex < static_cast<int32_t>(fRdfDescriptor->PortCount))
- {
- const LADSPA_RDF_Port* const port(&fRdfDescriptor->Ports[rindex]);
- CARLA_SAFE_ASSERT_RETURN(scalePointId < port->ScalePointCount, nullStrBuf(strBuf));
-
- const LADSPA_RDF_ScalePoint* const scalePoint(&port->ScalePoints[scalePointId]);
- CARLA_SAFE_ASSERT_RETURN(scalePoint->Label != nullptr, nullStrBuf(strBuf));
-
- std::strncpy(strBuf, scalePoint->Label, STR_MAX);
- return;
- }
-
- nullStrBuf(strBuf);
- }
-
- // -------------------------------------------------------------------
- // Set data (state)
-
- // nothing
-
- // -------------------------------------------------------------------
- // Set data (internal stuff)
-
- // nothing
-
- // -------------------------------------------------------------------
- // Set data (plugin-specific stuff)
-
- void setParameterValue(const uint32_t parameterId, const float value, const bool sendGui, const bool sendOsc, const bool sendCallback) noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fParamBuffers != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
-
- const float fixedValue(pData->param.getFixedValue(parameterId, value));
- fParamBuffers[parameterId] = fixedValue;
-
- CarlaPlugin::setParameterValue(parameterId, fixedValue, sendGui, sendOsc, sendCallback);
- }
-
- // -------------------------------------------------------------------
- // Misc
-
- // nothing
-
- // -------------------------------------------------------------------
- // Plugin state
-
- void reload() override
- {
- CARLA_SAFE_ASSERT_RETURN(pData->engine != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
- carla_debug("CarlaPluginLADSPA::reload() - start");
-
- const EngineProcessMode processMode(pData->engine->getProccessMode());
-
- // Safely disable plugin for reload
- const ScopedDisabler sd(this);
-
- if (pData->active)
- deactivate();
-
- clearBuffers();
-
- const float sampleRate(static_cast<float>(pData->engine->getSampleRate()));
- const uint32_t portCount(getSafePortCount());
-
- uint32_t aIns, aOuts, params;
- aIns = aOuts = params = 0;
-
- bool forcedStereoIn, forcedStereoOut;
- forcedStereoIn = forcedStereoOut = false;
-
- bool needsCtrlIn, needsCtrlOut;
- needsCtrlIn = needsCtrlOut = false;
-
- for (uint32_t i=0; i < portCount; ++i)
- {
- const LADSPA_PortDescriptor portType(fDescriptor->PortDescriptors[i]);
-
- if (LADSPA_IS_PORT_AUDIO(portType))
- {
- if (LADSPA_IS_PORT_INPUT(portType))
- aIns += 1;
- else if (LADSPA_IS_PORT_OUTPUT(portType))
- aOuts += 1;
- }
- else if (LADSPA_IS_PORT_CONTROL(portType))
- params += 1;
- }
-
- if (pData->options & PLUGIN_OPTION_FORCE_STEREO)
- {
- if ((aIns == 1 || aOuts == 1) && fHandles.count() == 1 && addInstance())
- {
- if (aIns == 1)
- {
- aIns = 2;
- forcedStereoIn = true;
- }
- if (aOuts == 1)
- {
- aOuts = 2;
- forcedStereoOut = true;
- }
- }
- }
-
- if (aIns > 0)
- {
- pData->audioIn.createNew(aIns);
- fAudioInBuffers = new float*[aIns];
-
- for (uint32_t i=0; i < aIns; ++i)
- fAudioInBuffers[i] = nullptr;
- }
-
- if (aOuts > 0)
- {
- pData->audioOut.createNew(aOuts);
- fAudioOutBuffers = new float*[aOuts];
- needsCtrlIn = true;
-
- for (uint32_t i=0; i < aOuts; ++i)
- fAudioOutBuffers[i] = nullptr;
- }
-
- if (params > 0)
- {
- pData->param.createNew(params, true);
-
- fParamBuffers = new float[params];
- FloatVectorOperations::clear(fParamBuffers, static_cast<int>(params));
- }
-
- const uint portNameSize(pData->engine->getMaxPortNameSize());
- CarlaString portName;
-
- for (uint32_t i=0, iAudioIn=0, iAudioOut=0, iCtrl=0; i < portCount; ++i)
- {
- const LADSPA_PortDescriptor portType = fDescriptor->PortDescriptors[i];
- const LADSPA_PortRangeHint portRangeHints = fDescriptor->PortRangeHints[i];
- const bool hasPortRDF = (fRdfDescriptor != nullptr && i < fRdfDescriptor->PortCount);
-
- if (LADSPA_IS_PORT_AUDIO(portType))
- {
- portName.clear();
-
- if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
- {
- portName = pData->name;
- portName += ":";
- }
-
- if (fDescriptor->PortNames[i] != nullptr && fDescriptor->PortNames[i][0] != '\0')
- {
- portName += fDescriptor->PortNames[i];
- }
- else
- {
- if (LADSPA_IS_PORT_INPUT(portType))
- {
- if (aIns > 1)
- {
- portName += "audio-in_";
- portName += CarlaString(iAudioIn+1);
- }
- else
- portName += "audio-in";
- }
- else
- {
- if (aOuts > 1)
- {
- portName += "audio-out_";
- portName += CarlaString(iAudioOut+1);
- }
- else
- portName += "audio-out";
- }
- }
-
- portName.truncate(portNameSize);
-
- if (LADSPA_IS_PORT_INPUT(portType))
- {
- const uint32_t j = iAudioIn++;
- pData->audioIn.ports[j].port = (CarlaEngineAudioPort*)pData->client->addPort(kEnginePortTypeAudio, portName, true);
- pData->audioIn.ports[j].rindex = i;
-
- if (forcedStereoIn)
- {
- portName += "_2";
- pData->audioIn.ports[1].port = (CarlaEngineAudioPort*)pData->client->addPort(kEnginePortTypeAudio, portName, true);
- pData->audioIn.ports[1].rindex = i;
- }
- }
- else if (LADSPA_IS_PORT_OUTPUT(portType))
- {
- const uint32_t j = iAudioOut++;
- pData->audioOut.ports[j].port = (CarlaEngineAudioPort*)pData->client->addPort(kEnginePortTypeAudio, portName, false);
- pData->audioOut.ports[j].rindex = i;
-
- if (forcedStereoOut)
- {
- portName += "_2";
- pData->audioOut.ports[1].port = (CarlaEngineAudioPort*)pData->client->addPort(kEnginePortTypeAudio, portName, false);
- pData->audioOut.ports[1].rindex = i;
- }
- }
- else
- carla_stderr2("WARNING - Got a broken Port (Audio, but not input or output)");
- }
- else if (LADSPA_IS_PORT_CONTROL(portType))
- {
- const uint32_t j = iCtrl++;
- pData->param.data[j].index = static_cast<int32_t>(j);
- pData->param.data[j].rindex = static_cast<int32_t>(i);
-
- const char* const paramName(fDescriptor->PortNames[i] != nullptr ? fDescriptor->PortNames[i] : "unknown");
-
- float min, max, def, step, stepSmall, stepLarge;
-
- // min value
- if (LADSPA_IS_HINT_BOUNDED_BELOW(portRangeHints.HintDescriptor))
- min = portRangeHints.LowerBound;
- else
- min = 0.0f;
-
- // max value
- if (LADSPA_IS_HINT_BOUNDED_ABOVE(portRangeHints.HintDescriptor))
- max = portRangeHints.UpperBound;
- else
- max = 1.0f;
-
- if (min > max)
- {
- carla_stderr2("WARNING - Broken plugin parameter '%s': min > max", paramName);
- min = max - 0.1f;
- }
- else if (carla_compareFloats(min, max))
- {
- carla_stderr2("WARNING - Broken plugin parameter '%s': min == max", paramName);
- max = min + 0.1f;
- }
-
- // default value
- if (hasPortRDF && LADSPA_PORT_HAS_DEFAULT(fRdfDescriptor->Ports[i].Hints))
- def = fRdfDescriptor->Ports[i].Default;
- else
- def = get_default_ladspa_port_value(portRangeHints.HintDescriptor, min, max);
-
- if (def < min)
- def = min;
- else if (def > max)
- def = max;
-
- if (LADSPA_IS_HINT_SAMPLE_RATE(portRangeHints.HintDescriptor))
- {
- min *= sampleRate;
- max *= sampleRate;
- def *= sampleRate;
- pData->param.data[j].hints |= PARAMETER_USES_SAMPLERATE;
- }
-
- if (LADSPA_IS_HINT_TOGGLED(portRangeHints.HintDescriptor))
- {
- step = max - min;
- stepSmall = step;
- stepLarge = step;
- pData->param.data[j].hints |= PARAMETER_IS_BOOLEAN;
- }
- else if (LADSPA_IS_HINT_INTEGER(portRangeHints.HintDescriptor))
- {
- step = 1.0f;
- stepSmall = 1.0f;
- stepLarge = 10.0f;
- pData->param.data[j].hints |= PARAMETER_IS_INTEGER;
- }
- else
- {
- const float range = max - min;
- step = range/100.0f;
- stepSmall = range/1000.0f;
- stepLarge = range/10.0f;
- }
-
- if (LADSPA_IS_PORT_INPUT(portType))
- {
- pData->param.data[j].type = PARAMETER_INPUT;
- pData->param.data[j].hints |= PARAMETER_IS_ENABLED;
- pData->param.data[j].hints |= PARAMETER_IS_AUTOMABLE;
- needsCtrlIn = true;
- }
- else if (LADSPA_IS_PORT_OUTPUT(portType))
- {
- pData->param.data[j].type = PARAMETER_OUTPUT;
-
- if (std::strcmp(paramName, "latency") == 0 || std::strcmp(paramName, "_latency") == 0)
- {
- min = 0.0f;
- max = sampleRate;
- def = 0.0f;
- step = 1.0f;
- stepSmall = 1.0f;
- stepLarge = 1.0f;
- pData->param.special[j] = PARAMETER_SPECIAL_LATENCY;
- CARLA_SAFE_ASSERT(fLatencyIndex == static_cast<int32_t>(j));
- }
- else
- {
- pData->param.data[j].hints |= PARAMETER_IS_ENABLED;
- pData->param.data[j].hints |= PARAMETER_IS_AUTOMABLE;
- needsCtrlOut = true;
- }
- }
- else
- {
- carla_stderr2("WARNING - Got a broken Port (Control, but not input or output)");
- }
-
- // extra parameter hints
- if (LADSPA_IS_HINT_LOGARITHMIC(portRangeHints.HintDescriptor))
- pData->param.data[j].hints |= PARAMETER_IS_LOGARITHMIC;
-
- // check for scalepoints, require at least 2 to make it useful
- if (hasPortRDF && fRdfDescriptor->Ports[i].ScalePointCount >= 2)
- pData->param.data[j].hints |= PARAMETER_USES_SCALEPOINTS;
-
- pData->param.ranges[j].min = min;
- pData->param.ranges[j].max = max;
- pData->param.ranges[j].def = def;
- pData->param.ranges[j].step = step;
- pData->param.ranges[j].stepSmall = stepSmall;
- pData->param.ranges[j].stepLarge = stepLarge;
-
- // Start parameters in their default values
- fParamBuffers[j] = def;
-
- for (LinkedList<LADSPA_Handle>::Itenerator it = fHandles.begin(); it.valid(); it.next())
- {
- LADSPA_Handle const handle(it.getValue(nullptr));
- CARLA_SAFE_ASSERT_CONTINUE(handle != nullptr);
-
- try {
- fDescriptor->connect_port(handle, i, &fParamBuffers[j]);
- } CARLA_SAFE_EXCEPTION("LADSPA connect_port (parameter)");
- }
- }
- else
- {
- // Not Audio or Control
- carla_stderr2("ERROR - Got a broken Port (neither Audio or Control)");
-
- for (LinkedList<LADSPA_Handle>::Itenerator it = fHandles.begin(); it.valid(); it.next())
- {
- LADSPA_Handle const handle(it.getValue(nullptr));
- CARLA_SAFE_ASSERT_CONTINUE(handle != nullptr);
-
- try {
- fDescriptor->connect_port(handle, i, nullptr);
- } CARLA_SAFE_EXCEPTION("LADSPA connect_port (null)");
- }
- }
- }
-
- if (needsCtrlIn)
- {
- portName.clear();
-
- if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
- {
- portName = pData->name;
- portName += ":";
- }
-
- portName += "events-in";
- portName.truncate(portNameSize);
-
- pData->event.portIn = (CarlaEngineEventPort*)pData->client->addPort(kEnginePortTypeEvent, portName, true);
- }
-
- if (needsCtrlOut)
- {
- portName.clear();
-
- if (processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)
- {
- portName = pData->name;
- portName += ":";
- }
-
- portName += "events-out";
- portName.truncate(portNameSize);
-
- pData->event.portOut = (CarlaEngineEventPort*)pData->client->addPort(kEnginePortTypeEvent, portName, false);
- }
-
- if (forcedStereoIn || forcedStereoOut)
- pData->options |= PLUGIN_OPTION_FORCE_STEREO;
- else
- pData->options &= ~PLUGIN_OPTION_FORCE_STEREO;
-
- // plugin hints
- pData->hints = 0x0;
-
- if (LADSPA_IS_HARD_RT_CAPABLE(fDescriptor->Properties))
- pData->hints |= PLUGIN_IS_RTSAFE;
-
- #ifndef BUILD_BRIDGE
- if (aOuts > 0 && (aIns == aOuts || aIns == 1))
- pData->hints |= PLUGIN_CAN_DRYWET;
-
- if (aOuts > 0)
- pData->hints |= PLUGIN_CAN_VOLUME;
-
- if (aOuts >= 2 && aOuts % 2 == 0)
- pData->hints |= PLUGIN_CAN_BALANCE;
- #endif
-
- // extra plugin hints
- pData->extraHints = 0x0;
- pData->extraHints |= PLUGIN_EXTRA_HINT_CAN_RUN_RACK;
-
- // check initial latency
- findInitialLatencyValue(aIns, aOuts);
-
- fForcedStereoIn = forcedStereoIn;
- fForcedStereoOut = forcedStereoOut;
-
- bufferSizeChanged(pData->engine->getBufferSize());
-
- if (pData->active)
- activate();
-
- carla_debug("CarlaPluginLADSPA::reload() - end");
- }
-
- void findInitialLatencyValue(const uint32_t aIns, const uint32_t aOuts) const
- {
- if (fLatencyIndex < 0 || fHandles.count() == 0)
- return;
-
- // we need to pre-run the plugin so it can update its latency control-port
- const LADSPA_Handle handle(fHandles.getFirst(nullptr));
- CARLA_SAFE_ASSERT_RETURN(handle != nullptr,);
-
- float tmpIn [(aIns > 0) ? aIns : 1][2];
- float tmpOut[(aOuts > 0) ? aOuts : 1][2];
-
- for (uint32_t j=0; j < aIns; ++j)
- {
- tmpIn[j][0] = 0.0f;
- tmpIn[j][1] = 0.0f;
-
- try {
- fDescriptor->connect_port(handle, pData->audioIn.ports[j].rindex, tmpIn[j]);
- } CARLA_SAFE_EXCEPTION("LADSPA connect_port (latency input)");
- }
-
- for (uint32_t j=0; j < aOuts; ++j)
- {
- tmpOut[j][0] = 0.0f;
- tmpOut[j][1] = 0.0f;
-
- try {
- fDescriptor->connect_port(handle, pData->audioOut.ports[j].rindex, tmpOut[j]);
- } CARLA_SAFE_EXCEPTION("LADSPA connect_port (latency output)");
- }
-
- if (fDescriptor->activate != nullptr)
- {
- try {
- fDescriptor->activate(handle);
- } CARLA_SAFE_EXCEPTION("LADSPA latency activate");
- }
-
- try {
- fDescriptor->run(handle, 2);
- } CARLA_SAFE_EXCEPTION("LADSPA latency run");
-
- if (fDescriptor->deactivate != nullptr)
- {
- try {
- fDescriptor->deactivate(handle);
- } CARLA_SAFE_EXCEPTION("LADSPA latency deactivate");
- }
-
- // done, let's get the value
- if (const uint32_t latency = getLatencyInFrames())
- {
- pData->client->setLatency(latency);
- pData->latency.recreateBuffers(std::max(aIns, aOuts), latency);
- }
- }
-
- // -------------------------------------------------------------------
- // Plugin processing
-
- void activate() noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
-
- if (fDescriptor->activate != nullptr)
- {
- for (LinkedList<LADSPA_Handle>::Itenerator it = fHandles.begin(); it.valid(); it.next())
- {
- LADSPA_Handle const handle(it.getValue(nullptr));
- CARLA_SAFE_ASSERT_CONTINUE(handle != nullptr);
-
- try {
- fDescriptor->activate(handle);
- } CARLA_SAFE_EXCEPTION("LADSPA activate");
- }
- }
- }
-
- void deactivate() noexcept override
- {
- CARLA_SAFE_ASSERT_RETURN(fDescriptor != nullptr,);
-
- if (fDescriptor->deactivate != nullptr)
- {
- for (LinkedList<LADSPA_Handle>::Itenerator it = fHandles.begin(); it.valid(); it.next())
- {
- LADSPA_Handle const handle(it.getValue(nullptr));
- CARLA_SAFE_ASSERT_CONTINUE(handle != nullptr);
-
- try {
- fDescriptor->deactivate(handle);
- } CARLA_SAFE_EXCEPTION("LADSPA deactivate");
- }
- }
- }
-
- void process(const float** const audioIn, float** const audioOut, const float** const, float** const, const uint32_t frames) override
- {
- // --------------------------------------------------------------------------------------------------------
- // Check if active
-
- if (! pData->active)
- {
- // disable any output sound
- for (uint32_t i=0; i < pData->audioOut.count; ++i)
- FloatVectorOperations::clear(audioOut[i], static_cast<int>(frames));
- return;
- }
-
- // --------------------------------------------------------------------------------------------------------
- // Event Input and Processing
-
- if (pData->event.portIn != nullptr)
- {
- // ----------------------------------------------------------------------------------------------------
- // Event Input (System)
-
- const bool isSampleAccurate = (pData->options & PLUGIN_OPTION_FIXED_BUFFERS) == 0;
-
- uint32_t numEvents = pData->event.portIn->getEventCount();
- uint32_t timeOffset = 0;
-
- for (uint32_t i=0; i < numEvents; ++i)
- {
- const EngineEvent& event(pData->event.portIn->getEvent(i));
-
- if (event.time >= frames)
- continue;
-
- CARLA_ASSERT_INT2(event.time >= timeOffset, event.time, timeOffset);
-
- if (isSampleAccurate && event.time > timeOffset)
- {
- if (processSingle(audioIn, audioOut, event.time - timeOffset, timeOffset))
- timeOffset = event.time;
- }
-
- switch (event.type)
- {
- case kEngineEventTypeNull:
- break;
-
- case kEngineEventTypeControl: {
- const EngineControlEvent& ctrlEvent(event.ctrl);
-
- switch (ctrlEvent.type)
- {
- case kEngineControlEventTypeNull:
- break;
-
- case kEngineControlEventTypeParameter: {
- #ifndef BUILD_BRIDGE
- // Control backend stuff
- if (event.channel == pData->ctrlChannel)
- {
- float value;
-
- if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) != 0)
- {
- value = ctrlEvent.value;
- setDryWet(value, false, false);
- pData->postponeRtEvent(kPluginPostRtEventParameterChange, PARAMETER_DRYWET, 0, value);
- break;
- }
-
- if (MIDI_IS_CONTROL_CHANNEL_VOLUME(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_VOLUME) != 0)
- {
- value = ctrlEvent.value*127.0f/100.0f;
- setVolume(value, false, false);
- pData->postponeRtEvent(kPluginPostRtEventParameterChange, PARAMETER_VOLUME, 0, value);
- break;
- }
-
- if (MIDI_IS_CONTROL_BALANCE(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_BALANCE) != 0)
- {
- float left, right;
- value = ctrlEvent.value/0.5f - 1.0f;
-
- if (value < 0.0f)
- {
- left = -1.0f;
- right = (value*2.0f)+1.0f;
- }
- else if (value > 0.0f)
- {
- left = (value*2.0f)-1.0f;
- right = 1.0f;
- }
- else
- {
- left = -1.0f;
- right = 1.0f;
- }
-
- setBalanceLeft(left, false, false);
- setBalanceRight(right, false, false);
- pData->postponeRtEvent(kPluginPostRtEventParameterChange, PARAMETER_BALANCE_LEFT, 0, left);
- pData->postponeRtEvent(kPluginPostRtEventParameterChange, PARAMETER_BALANCE_RIGHT, 0, right);
- break;
- }
- }
- #endif
- // Control plugin parameters
- for (uint32_t k=0; k < pData->param.count; ++k)
- {
- if (pData->param.data[k].midiChannel != event.channel)
- continue;
- if (pData->param.data[k].midiCC != ctrlEvent.param)
- continue;
- if (pData->param.data[k].type != PARAMETER_INPUT)
- continue;
- if ((pData->param.data[k].hints & PARAMETER_IS_AUTOMABLE) == 0)
- continue;
-
- float value;
-
- if (pData->param.data[k].hints & PARAMETER_IS_BOOLEAN)
- {
- value = (ctrlEvent.value < 0.5f) ? pData->param.ranges[k].min : pData->param.ranges[k].max;
- }
- else
- {
- value = pData->param.ranges[k].getUnnormalizedValue(ctrlEvent.value);
-
- if (pData->param.data[k].hints & PARAMETER_IS_INTEGER)
- value = std::rint(value);
- }
-
- setParameterValue(k, value, false, false, false);
- pData->postponeRtEvent(kPluginPostRtEventParameterChange, static_cast<int32_t>(k), 0, value);
- break;
- }
- break;
- } // case kEngineControlEventTypeParameter
-
- case kEngineControlEventTypeMidiBank:
- case kEngineControlEventTypeMidiProgram:
- case kEngineControlEventTypeAllSoundOff:
- case kEngineControlEventTypeAllNotesOff:
- break;
- } // switch (ctrlEvent.type)
- break;
- } // case kEngineEventTypeControl
-
- case kEngineEventTypeMidi:
- break;
- } // switch (event.type)
- }
-
- pData->postRtEvents.trySplice();
-
- if (frames > timeOffset)
- processSingle(audioIn, audioOut, frames - timeOffset, timeOffset);
-
- } // End of Event Input and Processing
-
- // --------------------------------------------------------------------------------------------------------
- // Plugin processing (no events)
-
- else
- {
- processSingle(audioIn, audioOut, frames, 0);
-
- } // End of Plugin processing (no events)
-
- // --------------------------------------------------------------------------------------------------------
- // Control Output
-
- if (pData->event.portOut != nullptr)
- {
- uint8_t channel;
- uint16_t param;
- float value;
-
- for (uint32_t k=0; k < pData->param.count; ++k)
- {
- if (pData->param.data[k].type != PARAMETER_OUTPUT)
- continue;
-
- pData->param.ranges[k].fixValue(fParamBuffers[k]);
-
- if (pData->param.data[k].midiCC > 0)
- {
- channel = pData->param.data[k].midiChannel;
- param = static_cast<uint16_t>(pData->param.data[k].midiCC);
- value = pData->param.ranges[k].getNormalizedValue(fParamBuffers[k]);
- pData->event.portOut->writeControlEvent(0, channel, kEngineControlEventTypeParameter, param, value);
- }
- }
- } // End of Control Output
- }
-
- bool processSingle(const float** const audioIn, float** const audioOut, const uint32_t frames, const uint32_t timeOffset)
- {
- CARLA_SAFE_ASSERT_RETURN(frames > 0, false);
-
- if (pData->audioIn.count > 0)
- {
- CARLA_SAFE_ASSERT_RETURN(audioIn != nullptr, false);
- }
- if (pData->audioOut.count > 0)
- {
- CARLA_SAFE_ASSERT_RETURN(audioOut != nullptr, false);
- }
-
- // --------------------------------------------------------------------------------------------------------
- // Try lock, silence otherwise
-
- if (pData->engine->isOffline())
- {
- pData->singleMutex.lock();
- }
- else if (! pData->singleMutex.tryLock())
- {
- for (uint32_t i=0; i < pData->audioOut.count; ++i)
- {
- for (uint32_t k=0; k < frames; ++k)
- audioOut[i][k+timeOffset] = 0.0f;
- }
-
- return false;
- }
-
- const int iframes(static_cast<int>(frames));
-
- // --------------------------------------------------------------------------------------------------------
- // Handle needsReset
-
- if (pData->needsReset)
- {
- if (pData->latency.frames > 0)
- {
- for (uint32_t i=0; i < pData->audioIn.count; ++i)
- FloatVectorOperations::clear(pData->latency.buffers[i], static_cast<int>(pData->latency.frames));
- }
-
- pData->needsReset = false;
- }
-
- // --------------------------------------------------------------------------------------------------------
- // Set audio buffers
-
- const bool customMonoOut = pData->audioOut.count == 2 && fForcedStereoOut && ! fForcedStereoIn;
- const bool customStereoOut = pData->audioOut.count == 2 && fForcedStereoIn && ! fForcedStereoOut;
-
- if (! customMonoOut)
- {
- for (uint32_t i=0; i < pData->audioOut.count; ++i)
- FloatVectorOperations::clear(fAudioOutBuffers[i], iframes);
- }
-
- for (uint32_t i=0; i < pData->audioIn.count; ++i)
- FloatVectorOperations::copy(fAudioInBuffers[i], audioIn[i]+timeOffset, iframes);
-
- // --------------------------------------------------------------------------------------------------------
- // Run plugin
-
- uint instn = 0;
- for (LinkedList<LADSPA_Handle>::Itenerator it = fHandles.begin(); it.valid(); it.next(), ++instn)
- {
- LADSPA_Handle const handle(it.getValue(nullptr));
- CARLA_SAFE_ASSERT_CONTINUE(handle != nullptr);
-
- // ----------------------------------------------------------------------------------------------------
- // Mixdown for forced stereo
-
- if (customMonoOut)
- FloatVectorOperations::clear(fAudioOutBuffers[instn], iframes);
-
- // ----------------------------------------------------------------------------------------------------
- // Run it
-
- try {
- fDescriptor->run(handle, frames);
- } CARLA_SAFE_EXCEPTION("LADSPA run");
-
- // ----------------------------------------------------------------------------------------------------
- // Mixdown for forced stereo
-
- if (customMonoOut)
- FloatVectorOperations::multiply(fAudioOutBuffers[instn], 0.5f, iframes);
- else if (customStereoOut)
- FloatVectorOperations::copy(fExtraStereoBuffer[instn], fAudioOutBuffers[instn], iframes);
- }
-
- if (customStereoOut)
- {
- FloatVectorOperations::copy(fAudioOutBuffers[0], fExtraStereoBuffer[0], iframes);
- FloatVectorOperations::copy(fAudioOutBuffers[1], fExtraStereoBuffer[1], iframes);
- }
-
- #ifndef BUILD_BRIDGE
- // --------------------------------------------------------------------------------------------------------
- // Post-processing (dry/wet, volume and balance)
-
- {
- const bool doDryWet = (pData->hints & PLUGIN_CAN_DRYWET) != 0 && ! carla_compareFloats(pData->postProc.dryWet, 1.0f);
- const bool doBalance = (pData->hints & PLUGIN_CAN_BALANCE) != 0 && ! (carla_compareFloats(pData->postProc.balanceLeft, -1.0f) && carla_compareFloats(pData->postProc.balanceRight, 1.0f));
- const bool isMono = (pData->audioIn.count == 1);
-
- bool isPair;
- float bufValue, oldBufLeft[doBalance ? frames : 1];
-
- for (uint32_t i=0; i < pData->audioOut.count; ++i)
- {
- // Dry/Wet
- if (doDryWet)
- {
- const uint32_t c = isMono ? 0 : i;
-
- for (uint32_t k=0; k < frames; ++k)
- {
- if (k < pData->latency.frames)
- bufValue = pData->latency.buffers[c][k];
- else if (pData->latency.frames < frames)
- bufValue = fAudioInBuffers[c][k-pData->latency.frames];
- else
- bufValue = fAudioInBuffers[c][k];
-
- fAudioOutBuffers[i][k] = (fAudioOutBuffers[i][k] * pData->postProc.dryWet) + (bufValue * (1.0f - pData->postProc.dryWet));
- }
- }
-
- // Balance
- if (doBalance)
- {
- isPair = (i % 2 == 0);
-
- if (isPair)
- {
- CARLA_ASSERT(i+1 < pData->audioOut.count);
- FloatVectorOperations::copy(oldBufLeft, fAudioOutBuffers[i], iframes);
- }
-
- float balRangeL = (pData->postProc.balanceLeft + 1.0f)/2.0f;
- float balRangeR = (pData->postProc.balanceRight + 1.0f)/2.0f;
-
- for (uint32_t k=0; k < frames; ++k)
- {
- if (isPair)
- {
- // left
- fAudioOutBuffers[i][k] = oldBufLeft[k] * (1.0f - balRangeL);
- fAudioOutBuffers[i][k] += fAudioOutBuffers[i+1][k] * (1.0f - balRangeR);
- }
- else
- {
- // right
- fAudioOutBuffers[i][k] = fAudioOutBuffers[i][k] * balRangeR;
- fAudioOutBuffers[i][k] += oldBufLeft[k] * balRangeL;
- }
- }
- }
-
- // Volume (and buffer copy)
- {
- for (uint32_t k=0; k < frames; ++k)
- audioOut[i][k+timeOffset] = fAudioOutBuffers[i][k] * pData->postProc.volume;
- }
- }
-
- } // End of Post-processing
-
- #else // BUILD_BRIDGE
- for (uint32_t i=0; i < pData->audioOut.count; ++i)
- {
- for (uint32_t k=0; k < frames; ++k)
- audioOut[i][k+timeOffset] = fAudioOutBuffers[i][k];
- }
- #endif
-
- // --------------------------------------------------------------------------------------------------------
- // Save latency values for next callback
-
- if (const uint32_t latframes = pData->latency.frames)
- {
- CARLA_SAFE_ASSERT(timeOffset == 0);
-
- if (latframes <= frames)
- {
- for (uint32_t i=0; i < pData->audioIn.count; ++i)
- FloatVectorOperations::copy(pData->latency.buffers[i], audioIn[i]+(frames-latframes), static_cast<int>(latframes));
- }
- else
- {
- const uint32_t diff = pData->latency.frames-frames;
-
- for (uint32_t i=0, k; i<pData->audioIn.count; ++i)
- {
- // push back buffer by 'frames'
- for (k=0; k < diff; ++k)
- pData->latency.buffers[i][k] = pData->latency.buffers[i][k+frames];
-
- // put current input at the end
- for (uint32_t j=0; k < latframes; ++j, ++k)
- pData->latency.buffers[i][k] = audioIn[i][j];
- }
- }
- }
-
- // --------------------------------------------------------------------------------------------------------
-
- pData->singleMutex.unlock();
- return true;
- }
-
- void bufferSizeChanged(const uint32_t newBufferSize) override
- {
- CARLA_ASSERT_INT(newBufferSize > 0, newBufferSize);
- carla_debug("CarlaPluginLADSPA::bufferSizeChanged(%i) - start", newBufferSize);
-
- const int iBufferSize(static_cast<int>(newBufferSize));
-
- for (uint32_t i=0; i < pData->audioIn.count; ++i)
- {
- if (fAudioInBuffers[i] != nullptr)
- delete[] fAudioInBuffers[i];
-
- fAudioInBuffers[i] = new float[newBufferSize];
- FloatVectorOperations::clear(fAudioInBuffers[i], iBufferSize);
- }
-
- for (uint32_t i=0; i < pData->audioOut.count; ++i)
- {
- if (fAudioOutBuffers[i] != nullptr)
- delete[] fAudioOutBuffers[i];
-
- fAudioOutBuffers[i] = new float[newBufferSize];
- FloatVectorOperations::clear(fAudioOutBuffers[i], iBufferSize);
- }
-
- if (fExtraStereoBuffer[0] != nullptr)
- {
- delete[] fExtraStereoBuffer[0];
- fExtraStereoBuffer[0] = nullptr;
- }
-
- if (fExtraStereoBuffer[1] != nullptr)
- {
- delete[] fExtraStereoBuffer[1];
- fExtraStereoBuffer[1] = nullptr;
- }
-
- if (fForcedStereoIn && pData->audioOut.count == 2)
- {
- fExtraStereoBuffer[0] = new float[newBufferSize];
- fExtraStereoBuffer[1] = new float[newBufferSize];
- FloatVectorOperations::clear(fExtraStereoBuffer[0], iBufferSize);
- FloatVectorOperations::clear(fExtraStereoBuffer[1], iBufferSize);
- }
-
- reconnectAudioPorts();
-
- carla_debug("CarlaPluginLADSPA::bufferSizeChanged(%i) - end", newBufferSize);
- }
-
- void sampleRateChanged(const double newSampleRate) override
- {
- CARLA_ASSERT_INT(newSampleRate > 0.0, newSampleRate);
- carla_stdout("CarlaPluginLADSPA::sampleRateChanged(%g) - start", newSampleRate);
-
- if (pData->active)
- deactivate();
-
- const std::size_t instanceCount(fHandles.count());
-
- if (fDescriptor->cleanup == nullptr)
- {
- for (LinkedList<LADSPA_Handle>::Itenerator it = fHandles.begin(); it.valid(); it.next())
- {
- LADSPA_Handle const handle(it.getValue(nullptr));
- CARLA_SAFE_ASSERT_CONTINUE(handle != nullptr);
-
- try {
- fDescriptor->cleanup(handle);
- } CARLA_SAFE_EXCEPTION("LADSPA cleanup");
- }
- }
-
- fHandles.clear();
-
- for (std::size_t i=0; i<instanceCount; ++i)
- addInstance();
-
- reconnectAudioPorts();
-
- if (pData->active)
- activate();
-
- carla_stdout("CarlaPluginLADSPA::sampleRateChanged(%g) - end", newSampleRate);
- }
-
- void reconnectAudioPorts() const noexcept
- {
- if (fForcedStereoIn)
- {
- if (LADSPA_Handle const handle = fHandles.getAt(0, nullptr))
- {
- try {
- fDescriptor->connect_port(handle, pData->audioIn.ports[0].rindex, fAudioInBuffers[0]);
- } CARLA_SAFE_EXCEPTION("LADSPA connect_port (forced stereo input)");
- }
-
- if (LADSPA_Handle const handle = fHandles.getAt(1, nullptr))
- {
- try {
- fDescriptor->connect_port(handle, pData->audioIn.ports[1].rindex, fAudioInBuffers[1]);
- } CARLA_SAFE_EXCEPTION("LADSPA connect_port (forced stereo input)");
- }
- }
- else
- {
- for (LinkedList<LADSPA_Handle>::Itenerator it = fHandles.begin(); it.valid(); it.next())
- {
- LADSPA_Handle const handle(it.getValue(nullptr));
- CARLA_SAFE_ASSERT_CONTINUE(handle != nullptr);
-
- for (uint32_t i=0; i < pData->audioIn.count; ++i)
- {
- try {
- fDescriptor->connect_port(handle, pData->audioIn.ports[i].rindex, fAudioInBuffers[i]);
- } CARLA_SAFE_EXCEPTION("LADSPA connect_port (audio input)");
- }
- }
- }
-
- if (fForcedStereoOut)
- {
- if (LADSPA_Handle const handle = fHandles.getAt(0, nullptr))
- {
- try {
- fDescriptor->connect_port(handle, pData->audioOut.ports[0].rindex, fAudioOutBuffers[0]);
- } CARLA_SAFE_EXCEPTION("LADSPA connect_port (forced stereo output)");
- }
-
- if (LADSPA_Handle const handle = fHandles.getAt(1, nullptr))
- {
- try {
- fDescriptor->connect_port(handle, pData->audioOut.ports[1].rindex, fAudioOutBuffers[1]);
- } CARLA_SAFE_EXCEPTION("LADSPA connect_port (forced stereo output)");
- }
- }
- else
- {
- for (LinkedList<LADSPA_Handle>::Itenerator it = fHandles.begin(); it.valid(); it.next())
- {
- LADSPA_Handle const handle(it.getValue(nullptr));
- CARLA_SAFE_ASSERT_CONTINUE(handle != nullptr);
-
- for (uint32_t i=0; i < pData->audioOut.count; ++i)
- {
- try {
- fDescriptor->connect_port(handle, pData->audioOut.ports[i].rindex, fAudioOutBuffers[i]);
- } CARLA_SAFE_EXCEPTION("LADSPA connect_port (audio output)");
- }
- }
- }
- }
-
- // -------------------------------------------------------------------
- // Plugin buffers
-
- void clearBuffers() noexcept override
- {
- carla_debug("CarlaPluginLADSPA::clearBuffers() - start");
-
- if (fAudioInBuffers != nullptr)
- {
- for (uint32_t i=0; i < pData->audioIn.count; ++i)
- {
- if (fAudioInBuffers[i] != nullptr)
- {
- delete[] fAudioInBuffers[i];
- fAudioInBuffers[i] = nullptr;
- }
- }
-
- delete[] fAudioInBuffers;
- fAudioInBuffers = nullptr;
- }
-
- if (fAudioOutBuffers != nullptr)
- {
- for (uint32_t i=0; i < pData->audioOut.count; ++i)
- {
- if (fAudioOutBuffers[i] != nullptr)
- {
- delete[] fAudioOutBuffers[i];
- fAudioOutBuffers[i] = nullptr;
- }
- }
-
- delete[] fAudioOutBuffers;
- fAudioOutBuffers = nullptr;
- }
-
- if (fExtraStereoBuffer[0] != nullptr)
- {
- delete[] fExtraStereoBuffer[0];
- fExtraStereoBuffer[0] = nullptr;
- }
-
- if (fExtraStereoBuffer[1] != nullptr)
- {
- delete[] fExtraStereoBuffer[1];
- fExtraStereoBuffer[1] = nullptr;
- }
-
- if (fParamBuffers != nullptr)
- {
- delete[] fParamBuffers;
- fParamBuffers = nullptr;
- }
-
- CarlaPlugin::clearBuffers();
-
- carla_debug("CarlaPluginLADSPA::clearBuffers() - end");
- }
-
- // -------------------------------------------------------------------
-
- void* getNativeHandle() const noexcept override
- {
- return nullptr; // fHandle;
- }
-
- const void* getNativeDescriptor() const noexcept override
- {
- return fDescriptor;
- }
-
- const void* getExtraStuff() const noexcept override
- {
- return fRdfDescriptor;
- }
-
- // -------------------------------------------------------------------
-
- bool init(const char* const filename, const char* const name, const char* const label, const uint options,
- const LADSPA_RDF_Descriptor* const rdfDescriptor)
- {
- CARLA_SAFE_ASSERT_RETURN(pData->engine != nullptr, false);
-
- // ---------------------------------------------------------------
- // first checks
-
- if (pData->client != nullptr)
- {
- pData->engine->setLastError("Plugin client is already registered");
- return false;
- }
-
- if (filename == nullptr || filename[0] == '\0')
- {
- pData->engine->setLastError("null filename");
- return false;
- }
-
- if (label == nullptr || label[0] == '\0')
- {
- pData->engine->setLastError("null label");
- return false;
- }
-
- fIsDssiVst = CarlaString(filename).contains("dssi-vst", true);
-
- // ---------------------------------------------------------------
- // open DLL
-
- if (! pData->libOpen(filename))
- {
- pData->engine->setLastError(pData->libError(filename));
- return false;
- }
-
- // ---------------------------------------------------------------
- // get DLL main entry
-
- const LADSPA_Descriptor_Function descFn = pData->libSymbol<LADSPA_Descriptor_Function>("ladspa_descriptor");
-
- if (descFn == nullptr)
- {
- pData->engine->setLastError("Could not find the LASDPA Descriptor in the plugin library");
- return false;
- }
-
- // ---------------------------------------------------------------
- // get descriptor that matches label
-
- for (ulong d=0;; ++d)
- {
- try {
- fDescriptor = descFn(d);
- }
- catch(...) {
- carla_stderr2("Caught exception when trying to get LADSPA descriptor");
- fDescriptor = nullptr;
- break;
- }
-
- if (fDescriptor == nullptr)
- break;
-
- if (fDescriptor->Label == nullptr || fDescriptor->Label[0] == '\0')
- {
- carla_stderr2("WARNING - Got an invalid label, will not use this plugin");
- fDescriptor = nullptr;
- break;
- }
- if (fDescriptor->run == nullptr)
- {
- carla_stderr2("WARNING - Plugin has no run, cannot use it");
- fDescriptor = nullptr;
- break;
- }
-
- if (std::strcmp(fDescriptor->Label, label) == 0)
- break;
- }
-
- if (fDescriptor == nullptr)
- {
- pData->engine->setLastError("Could not find the requested plugin label in the plugin library");
- return false;
- }
-
- // ---------------------------------------------------------------
- // get info
-
- if (is_ladspa_rdf_descriptor_valid(rdfDescriptor, fDescriptor))
- fRdfDescriptor = ladspa_rdf_dup(rdfDescriptor);
-
- if (name != nullptr && name[0] != '\0')
- pData->name = pData->engine->getUniquePluginName(name);
- else if (fRdfDescriptor != nullptr && fRdfDescriptor->Title != nullptr && fRdfDescriptor->Title[0] != '\0')
- pData->name = pData->engine->getUniquePluginName(fRdfDescriptor->Title);
- else if (fDescriptor->Name != nullptr && fDescriptor->Name[0] != '\0')
- pData->name = pData->engine->getUniquePluginName(fDescriptor->Name);
- else
- pData->name = pData->engine->getUniquePluginName(fDescriptor->Label);
-
- pData->filename = carla_strdup(filename);
-
- // ---------------------------------------------------------------
- // register client
-
- pData->client = pData->engine->addClient(this);
-
- if (pData->client == nullptr || ! pData->client->isOk())
- {
- pData->engine->setLastError("Failed to register plugin client");
- return false;
- }
-
- // ---------------------------------------------------------------
- // initialize plugin
-
- if (! addInstance())
- return false;
-
- // ---------------------------------------------------------------
- // find latency port index
-
- for (uint32_t i=0, iCtrl=0, count=getSafePortCount(); i<count; ++i)
- {
- const int portType(fDescriptor->PortDescriptors[i]);
-
- if (! LADSPA_IS_PORT_CONTROL(portType))
- continue;
-
- const uint32_t index(iCtrl++);
-
- if (! LADSPA_IS_PORT_OUTPUT(portType))
- continue;
-
- const char* const portName(fDescriptor->PortNames[i]);
- CARLA_SAFE_ASSERT_BREAK(portName != nullptr);
-
- if (std::strcmp(portName, "latency") == 0 ||
- std::strcmp(portName, "_latency") == 0)
- {
- fLatencyIndex = static_cast<int32_t>(index);
- break;
- }
- }
-
- // ---------------------------------------------------------------
- // set default options
-
- pData->options = 0x0;
-
- /**/ if (fLatencyIndex >= 0 || fIsDssiVst)
- pData->options |= PLUGIN_OPTION_FIXED_BUFFERS;
- else if (options & PLUGIN_OPTION_FIXED_BUFFERS)
- pData->options |= PLUGIN_OPTION_FIXED_BUFFERS;
-
- /**/ if (pData->engine->getOptions().forceStereo)
- pData->options |= PLUGIN_OPTION_FORCE_STEREO;
- else if (options & PLUGIN_OPTION_FORCE_STEREO)
- pData->options |= PLUGIN_OPTION_FORCE_STEREO;
-
- return true;
- }
-
- // -------------------------------------------------------------------
-
- private:
- LinkedList<LADSPA_Handle> fHandles;
- const LADSPA_Descriptor* fDescriptor;
- const LADSPA_RDF_Descriptor* fRdfDescriptor;
-
- float** fAudioInBuffers;
- float** fAudioOutBuffers;
- float* fExtraStereoBuffer[2]; // used only if forcedStereoIn and audioOut == 2
- float* fParamBuffers;
-
- int32_t fLatencyIndex; // -1 if invalid
- bool fIsDssiVst;
- bool fForcedStereoIn;
- bool fForcedStereoOut;
-
- // -------------------------------------------------------------------
-
- bool addInstance()
- {
- LADSPA_Handle handle;
-
- try {
- handle = fDescriptor->instantiate(fDescriptor, static_cast<ulong>(pData->engine->getSampleRate()));
- } CARLA_SAFE_EXCEPTION_RETURN_ERR("LADSPA instantiate", "Plugin failed to initialize");
-
- for (uint32_t i=0, count=pData->param.count; i<count; ++i)
- {
- const int32_t rindex(pData->param.data[i].rindex);
- CARLA_SAFE_ASSERT_CONTINUE(rindex >= 0);
-
- try {
- fDescriptor->connect_port(handle, static_cast<ulong>(rindex), &fParamBuffers[i]);
- } CARLA_SAFE_EXCEPTION("LADSPA connect_port");
- }
-
- if (fHandles.append(handle))
- return true;
-
- try {
- fDescriptor->cleanup(handle);
- } CARLA_SAFE_EXCEPTION("LADSPA cleanup");
-
- pData->engine->setLastError("Out of memory");
- return false;
- }
-
- uint32_t getSafePortCount() const noexcept
- {
- if (fDescriptor->PortCount == 0)
- return 0;
-
- CARLA_SAFE_ASSERT_RETURN(fDescriptor->PortDescriptors != nullptr, 0);
- CARLA_SAFE_ASSERT_RETURN(fDescriptor->PortRangeHints != nullptr, 0);
- CARLA_SAFE_ASSERT_RETURN(fDescriptor->PortNames != nullptr, 0);
-
- return static_cast<uint32_t>(fDescriptor->PortCount);
- }
-
- bool getSeparatedParameterNameOrUnit(const char* const paramName, char* const strBuf, const bool wantName) const noexcept
- {
- if (_getSeparatedParameterNameOrUnitImpl(paramName, strBuf, wantName, true))
- return true;
- if (_getSeparatedParameterNameOrUnitImpl(paramName, strBuf, wantName, false))
- return true;
- return false;
- }
-
- static bool _getSeparatedParameterNameOrUnitImpl(const char* const paramName, char* const strBuf, const bool wantName, const bool useBracket) noexcept
- {
- const char* const sepBracketStart(std::strstr(paramName, useBracket ? " [" : " ("));
-
- if (sepBracketStart == nullptr)
- return false;
-
- const char* const sepBracketEnd(std::strstr(sepBracketStart, useBracket ? "]" : ")"));
-
- if (sepBracketEnd == nullptr)
- return false;
-
- const std::size_t unitSize(static_cast<std::size_t>(sepBracketEnd-sepBracketStart-2));
-
- if (unitSize > 7) // very unlikely to have such big unit
- return false;
-
- const std::size_t sepIndex(std::strlen(paramName)-unitSize-3);
-
- // just in case
- if (sepIndex >= STR_MAX)
- return false;
-
- if (wantName)
- {
- std::strncpy(strBuf, paramName, sepIndex);
- strBuf[sepIndex] = '\0';
- }
- else
- {
- std::strncpy(strBuf, paramName+(sepIndex+2), unitSize);
- strBuf[unitSize] = '\0';
- }
-
- return true;
- }
-
- // -------------------------------------------------------------------
-
- CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaPluginLADSPA)
- };
-
- // -------------------------------------------------------------------------------------------------------------------
-
- CarlaPlugin* CarlaPlugin::newLADSPA(const Initializer& init, const LADSPA_RDF_Descriptor* const rdfDescriptor)
- {
- carla_debug("CarlaPlugin::newLADSPA({%p, \"%s\", \"%s\", \"%s\", " P_INT64 ", %x}, %p)", init.engine, init.filename, init.name, init.label, init.uniqueId, init.options, rdfDescriptor);
-
- CarlaPluginLADSPA* const plugin(new CarlaPluginLADSPA(init.engine, init.id));
-
- if (! plugin->init(init.filename, init.name, init.label, init.options, rdfDescriptor))
- {
- delete plugin;
- return nullptr;
- }
-
- plugin->reload();
-
- bool canRun = true;
-
- if (init.engine->getProccessMode() == ENGINE_PROCESS_MODE_CONTINUOUS_RACK)
- {
- if (! plugin->canRunInRack())
- {
- init.engine->setLastError("Carla's rack mode can only work with Mono or Stereo LADSPA plugins, sorry!");
- canRun = false;
- }
- }
-
- if (! canRun)
- {
- delete plugin;
- return nullptr;
- }
-
- return plugin;
- }
-
- // -------------------------------------------------------------------------------------------------------------------
-
- CARLA_BACKEND_END_NAMESPACE
|