Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.3KB

  1. /*
  2. * Carla Native Plugins
  3. * Copyright (C) 2012-2015 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. // config fix
  18. #include "distrho-mverb/DistrhoPluginInfo.h"
  19. #if DISTRHO_PLUGIN_HAS_UI && ! defined(HAVE_DGL)
  20. # undef DISTRHO_PLUGIN_HAS_UI
  21. # define DISTRHO_PLUGIN_HAS_UI 0
  22. #endif
  23. // Plugin Code
  24. #include "distrho-mverb/DistrhoArtworkMVerb.cpp"
  25. #include "distrho-mverb/DistrhoPluginMVerb.cpp"
  26. #include "distrho-mverb/DistrhoUIMVerb.cpp"
  27. #include "distrho-mverb/font/Kh-Kangrey.cpp"
  28. // DISTRHO Code
  29. #define DISTRHO_PLUGIN_TARGET_CARLA
  30. #include "DistrhoPluginMain.cpp"
  31. #include "DistrhoUIMain.cpp"
  32. START_NAMESPACE_DISTRHO
  33. // -----------------------------------------------------------------------
  34. static const NativePluginDescriptor _mverbDesc = {
  35. /* category */ NATIVE_PLUGIN_CATEGORY_DELAY,
  36. #ifdef HAVE_DGL
  37. /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_RTSAFE|NATIVE_PLUGIN_HAS_UI|NATIVE_PLUGIN_USES_PARENT_ID),
  38. #else
  39. /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_RTSAFE),
  40. #endif
  41. /* supports */ static_cast<NativePluginSupports>(0x0),
  42. /* audioIns */ DISTRHO_PLUGIN_NUM_INPUTS,
  43. /* audioOuts */ DISTRHO_PLUGIN_NUM_OUTPUTS,
  44. /* midiIns */ 0,
  45. /* midiOuts */ 0,
  46. /* paramIns */ MVerb<float>::NUM_PARAMS,
  47. /* paramOuts */ 0,
  48. /* name */ DISTRHO_PLUGIN_NAME,
  49. /* label */ "mverb",
  50. /* maker */ "falkTX, Martin Eastwood",
  51. /* copyright */ "GPL v3+",
  52. PluginDescriptorFILL(PluginCarla)
  53. };
  54. END_NAMESPACE_DISTRHO
  55. // -----------------------------------------------------------------------
  56. CARLA_EXPORT
  57. void carla_register_native_plugin_distrho_mverb()
  58. {
  59. USE_NAMESPACE_DISTRHO
  60. carla_register_native_plugin(&_mverbDesc);
  61. }
  62. // -----------------------------------------------------------------------