Browse Source

fix windows build, discovery regression, vst3 UI param changes

Signed-off-by: falkTX <falktx@falktx.com>
pull/1775/head
falkTX 1 year ago
parent
commit
03a7674433
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 14 additions and 7 deletions
  1. +13
    -6
      source/backend/plugin/CarlaPluginVST3.cpp
  2. +1
    -1
      source/frontend/pluginlist/discovery.py

+ 13
- 6
source/backend/plugin/CarlaPluginVST3.cpp View File

@@ -484,7 +484,8 @@ struct carla_v3_bstream : v3_bstream_cpp {
return V3_NO_INTERFACE; return V3_NO_INTERFACE;
} }


static v3_result carla_read(void* const self, void* const buffer, int32_t num_bytes, int32_t* const bytes_read)
static v3_result V3_API carla_read(void* const self,
void* const buffer, int32_t num_bytes, int32_t* const bytes_read)
{ {
CARLA_SAFE_ASSERT_RETURN(buffer != nullptr, V3_INVALID_ARG); CARLA_SAFE_ASSERT_RETURN(buffer != nullptr, V3_INVALID_ARG);
CARLA_SAFE_ASSERT_RETURN(num_bytes > 0, V3_INVALID_ARG); CARLA_SAFE_ASSERT_RETURN(num_bytes > 0, V3_INVALID_ARG);
@@ -501,8 +502,8 @@ struct carla_v3_bstream : v3_bstream_cpp {
return V3_OK; return V3_OK;
} }


static v3_result carla_write(void* const self,
void* const buffer, const int32_t num_bytes, int32_t* const bytes_read)
static v3_result V3_API carla_write(void* const self,
void* const buffer, const int32_t num_bytes, int32_t* const bytes_read)
{ {
CARLA_SAFE_ASSERT_RETURN(buffer != nullptr, V3_INVALID_ARG); CARLA_SAFE_ASSERT_RETURN(buffer != nullptr, V3_INVALID_ARG);
CARLA_SAFE_ASSERT_RETURN(num_bytes > 0, V3_INVALID_ARG); CARLA_SAFE_ASSERT_RETURN(num_bytes > 0, V3_INVALID_ARG);
@@ -519,7 +520,8 @@ struct carla_v3_bstream : v3_bstream_cpp {
return V3_OK; return V3_OK;
} }


static v3_result carla_seek(void* const self, const int64_t pos, const int32_t seek_mode, int64_t* const result)
static v3_result V3_API carla_seek(void* const self,
const int64_t pos, const int32_t seek_mode, int64_t* const result)
{ {
CARLA_SAFE_ASSERT_RETURN(result != nullptr, V3_INVALID_ARG); CARLA_SAFE_ASSERT_RETURN(result != nullptr, V3_INVALID_ARG);
carla_v3_bstream* const stream = *static_cast<carla_v3_bstream**>(self); carla_v3_bstream* const stream = *static_cast<carla_v3_bstream**>(self);
@@ -543,7 +545,7 @@ struct carla_v3_bstream : v3_bstream_cpp {
return V3_INVALID_ARG; return V3_INVALID_ARG;
} }


static v3_result carla_tell(void* const self, int64_t* const pos)
static v3_result V3_API carla_tell(void* const self, int64_t* const pos)
{ {
CARLA_SAFE_ASSERT_RETURN(pos != nullptr, V3_INVALID_ARG); CARLA_SAFE_ASSERT_RETURN(pos != nullptr, V3_INVALID_ARG);
carla_v3_bstream* const stream = *static_cast<carla_v3_bstream**>(self); carla_v3_bstream* const stream = *static_cast<carla_v3_bstream**>(self);
@@ -1506,6 +1508,7 @@ public:
{ {
CARLA_SAFE_ASSERT_RETURN(fV3.controller != nullptr,); CARLA_SAFE_ASSERT_RETURN(fV3.controller != nullptr,);
CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,); CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
CARLA_SAFE_ASSERT_RETURN(fEvents.paramInputs != nullptr,);


const v3_param_id v3id = pData->param.data[parameterId].rindex; const v3_param_id v3id = pData->param.data[parameterId].rindex;
const float fixedValue = pData->param.getFixedValue(parameterId, value); const float fixedValue = pData->param.getFixedValue(parameterId, value);
@@ -1526,6 +1529,7 @@ public:
{ {
CARLA_SAFE_ASSERT_RETURN(fV3.controller != nullptr,); CARLA_SAFE_ASSERT_RETURN(fV3.controller != nullptr,);
CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,); CARLA_SAFE_ASSERT_RETURN(parameterId < pData->param.count,);
CARLA_SAFE_ASSERT_RETURN(fEvents.paramInputs != nullptr,);


const v3_param_id v3id = pData->param.data[parameterId].rindex; const v3_param_id v3id = pData->param.data[parameterId].rindex;
const float fixedValue = pData->param.getFixedValue(parameterId, value); const float fixedValue = pData->param.getFixedValue(parameterId, value);
@@ -3233,12 +3237,14 @@ protected:


v3_result v3PerformEdit(const v3_param_id paramId, const double value) override v3_result v3PerformEdit(const v3_param_id paramId, const double value) override
{ {
CARLA_SAFE_ASSERT_RETURN(fEvents.paramInputs != nullptr, V3_INTERNAL_ERR);

for (uint32_t i=0; i < pData->param.count; ++i) for (uint32_t i=0; i < pData->param.count; ++i)
{ {
if (static_cast<v3_param_id>(pData->param.data[i].rindex) == paramId) if (static_cast<v3_param_id>(pData->param.data[i].rindex) == paramId)
{ {
// report value to component (next process call) // report value to component (next process call)
fEvents.paramInputs->setParamValue(paramId, static_cast<float>(value));
fEvents.paramInputs->setParamValue(i, static_cast<float>(value));


const double plain = v3_cpp_obj(fV3.controller)->normalised_parameter_to_plain(fV3.controller, const double plain = v3_cpp_obj(fV3.controller)->normalised_parameter_to_plain(fV3.controller,
paramId, paramId,
@@ -3248,6 +3254,7 @@ protected:
return V3_OK; return V3_OK;
} }
} }

return V3_INVALID_ARG; return V3_INVALID_ARG;
} }




+ 1
- 1
source/frontend/pluginlist/discovery.py View File

@@ -247,7 +247,7 @@ def runCarlaDiscovery(itype, stype, filename, tool, wineSettings=None):
else: else:
break break


if line == "carla-discovery::init::-----------":
if line == "carla-discovery::init::------------":
pinfo = deepcopy(PyPluginInfo) pinfo = deepcopy(PyPluginInfo)
pinfo['type'] = itype pinfo['type'] = itype
pinfo['filename'] = filename if filename != ":all" else "" pinfo['filename'] = filename if filename != ":all" else ""


Loading…
Cancel
Save