Browse Source

Nekofilter active by default; Disable sunvox plugin for now

tags/1.9.4
falkTX 11 years ago
parent
commit
93baaf33c2
4 changed files with 4 additions and 6 deletions
  1. +1
    -1
      source/backend/native/nekofilter.c
  2. +1
    -1
      source/backend/native/nekofilter/nekofilter.c
  3. +1
    -3
      source/backend/plugin/NativePlugin.cpp
  4. +1
    -1
      source/backend/standalone/CarlaStandalone.cpp

+ 1
- 1
source/backend/native/nekofilter.c View File

@@ -26,7 +26,7 @@

static const PluginDescriptor nekofilterDesc = {
.category = PLUGIN_CATEGORY_FILTER,
#if defined(__linux__)
#if defined(__linux__) || defined(__linux)
.hints = PLUGIN_IS_RTSAFE|PLUGIN_HAS_GUI,
#else
.hints = PLUGIN_IS_RTSAFE,


+ 1
- 1
source/backend/native/nekofilter/nekofilter.c View File

@@ -69,7 +69,7 @@ nekofilter_instantiate(
goto fail_destroy_filter;
}

nekofilter_ptr->params_global[GLOBAL_PARAMETER_ACTIVE] = 0.0f;
nekofilter_ptr->params_global[GLOBAL_PARAMETER_ACTIVE] = 1.0f;
nekofilter_ptr->params_global[GLOBAL_PARAMETER_GAIN] = 0.0f;

filter_connect_global_parameter(nekofilter_ptr->filter,


+ 1
- 3
source/backend/plugin/NativePlugin.cpp View File

@@ -38,10 +38,8 @@ void carla_register_all_plugins()
carla_register_native_plugin_midiSplit();
carla_register_native_plugin_midiThrough();
carla_register_native_plugin_midiTranspose();
#ifndef CARLA_OS_WIN
carla_register_native_plugin_nekofilter();
#endif
carla_register_native_plugin_sunvoxfile(); // unfinished
//carla_register_native_plugin_sunvoxfile(); // unfinished

// Carla
//carla_register_native_plugin_carla(); // unfinished


+ 1
- 1
source/backend/standalone/CarlaStandalone.cpp View File

@@ -303,7 +303,7 @@ const char* carla_get_extended_license_text()
text1 += "<li>DISTRHO Mini-Series plugin code, based on LOSER-dev suite by Michael Gruhn</li>";
#endif
text1 += "<li>NekoFilter plugin code, based on lv2fil by Nedko Arnaudov and Fons Adriaensen</li>";
text1 += "<li>SunVox library file support, http://www.warmplace.ru/soft/sunvox/</li>";
//text1 += "<li>SunVox library file support, http://www.warmplace.ru/soft/sunvox/</li>"; // unfinished

#ifdef WANT_AUDIOFILE
text1 += "<li>AudioDecoder library for Audio file support, by Robin Gareus</li>";


Loading…
Cancel
Save