Skip to content

Commit b89d828

Browse files
committed
update flucoma core includes
1 parent 61f1be3 commit b89d828

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

source/include/FluidMaxWrapper.hpp

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,17 @@ under the European Union’s Horizon 2020 research and innovation programme
1717
#include <ext_obex_util.h>
1818
#include <z_dsp.h>
1919

20-
#include <clients/common/FluidBaseClient.hpp>
21-
#include <clients/common/FluidNRTClientWrapper.hpp>
22-
#include <clients/common/OfflineClient.hpp>
23-
#include <clients/common/ParameterSet.hpp>
24-
#include <clients/common/ParameterTypes.hpp>
25-
#include <clients/nrt/FluidSharedInstanceAdaptor.hpp>
26-
27-
#include <data/FluidMemory.hpp>
20+
#include <flucoma/FluidVersion.hpp>
21+
#include <flucoma/clients/common/FluidBaseClient.hpp>
22+
#include <flucoma/clients/common/FluidNRTClientWrapper.hpp>
23+
#include <flucoma/clients/common/OfflineClient.hpp>
24+
#include <flucoma/clients/common/ParameterSet.hpp>
25+
#include <flucoma/clients/common/ParameterTypes.hpp>
26+
#include <flucoma/clients/nrt/FluidSharedInstanceAdaptor.hpp>
27+
#include <flucoma/data/FluidMemory.hpp>
2828

2929
#include "MaxBufferAdaptor.hpp"
3030

31-
#include <FluidVersion.hpp>
3231
#include <atomic>
3332
#include <cctype> //std::tolower
3433
#include <deque>
@@ -304,7 +303,7 @@ struct NonRealTime
304303
}
305304
else
306305
{
307-
class_addmethod(c, (method) deferProcess, "bang", 0);
306+
class_addmethod(c, (method) deferProcess, "bang", 0);
308307
if(Wrapper::NumInputBuffers) class_addmethod(Wrapper::getClass(), (method) doBuffer, "buffer", A_GIMME, 0);
309308
class_addmethod(c, (method) callCancel, "cancel", 0);
310309
class_addmethod(c, (method) assist, "assist", A_CANT, 0);
@@ -1319,7 +1318,7 @@ class FluidMaxWrapper
13191318
static const std::string param_name = lowerCase(x->params().template descriptorAt<N>().name);
13201319
sprintf(s,"buffer: %s", param_name.c_str());
13211320
});
1322-
});
1321+
});
13231322

13241323
//setup an array of buffer~ object that we'll use if the respective params are unset when process is called
13251324
mParams.template forEachParamType<BufferT>([this](auto&, auto idx){

source/include/MaxBufferAdaptor.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ under the European Union’s Horizon 2020 research and innovation programme
1515
#pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
1616
#endif
1717

18-
#include <clients/common/BufferAdaptor.hpp>
19-
#include <data/FluidTensor.hpp>
18+
#include <flucoma/clients/common/BufferAdaptor.hpp>
19+
#include <flucoma/data/FluidTensor.hpp>
2020
#include <atomic>
2121
#include <ext_buffer.h>
2222
#include <ext_systhread.h>

0 commit comments

Comments
 (0)