Browse Source

Cleanup

Signed-off-by: falkTX <falktx@falktx.com>
pull/1723/head
falkTX 2 years ago
parent
commit
13e983334e
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 6 additions and 11 deletions
  1. +6
    -11
      source/backend/plugin/CarlaPluginCLAP.cpp

+ 6
- 11
source/backend/plugin/CarlaPluginCLAP.cpp View File

@@ -716,7 +716,6 @@ public:
fLastChunk(nullptr),
fLastKnownLatency(0),
kEngineHasIdleOnMainThread(engine->hasIdleOnMainThread()),
fLatencyChanged(false),
fNeedsParamFlush(false),
fNeedsRestart(false),
fNeedsProcess(false),
@@ -1764,11 +1763,16 @@ public:

if (const uint32_t latency = fExtensions.latency != nullptr ? fExtensions.latency->get(fPlugin) : 0)
{
fLastKnownLatency = latency;
pData->client->setLatency(latency);
#ifndef BUILD_BRIDGE
pData->latency.recreateBuffers(std::max(aIns, aOuts), latency);
#endif
}
else
{
fLastKnownLatency = 0;
}

bufferSizeChanged(pData->engine->getBufferSize());
reloadPrograms(true);
@@ -2676,7 +2680,7 @@ protected:
carla_stdout("CarlaPluginCLAP::clapLatencyChanged()");
CARLA_SAFE_ASSERT_RETURN(fExtensions.latency != nullptr,);

fLatencyChanged = true;
fLastKnownLatency = fExtensions.latency->get(fPlugin);
}

// -------------------------------------------------------------------
@@ -3217,7 +3221,6 @@ private:
void* fLastChunk;
uint32_t fLastKnownLatency;
const bool kEngineHasIdleOnMainThread;
bool fLatencyChanged;
bool fNeedsParamFlush;
bool fNeedsRestart;
bool fNeedsProcess;
@@ -3259,13 +3262,11 @@ private:
carla_clap_input_events copy;
copy.reallocEqualTo(fInputEvents);

carla_stdout("lock flush start");
{
const ScopedSingleProcessLocker sspl(this, true);
fInputEvents.handleScheduledParameterUpdates();
fInputEvents.swap(copy);
}
carla_stdout("lock flush end");

fExtensions.params->flush(fPlugin, copy.cast(), nullptr);
}
@@ -3276,12 +3277,6 @@ private:
fPlugin->on_main_thread(fPlugin);
}

if (fLatencyChanged)
{
fLatencyChanged = false;
fLastKnownLatency = fExtensions.latency->get(fPlugin);
}

#ifdef CLAP_WINDOW_API_NATIVE
#ifdef _POSIX_VERSION
for (LinkedList<HostPosixFileDescriptorDetails>::Itenerator it = fPosixFileDescriptors.begin2(); it.valid(); it.next())


Loading…
Cancel
Save