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.

61 lines
2.0KB

  1. /*
  2. * Carla Native Plugins
  3. * Copyright (C) 2012-2014 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. // Plugin Code
  18. #include "segmentjuice/SegmentJuiceArtwork.cpp"
  19. #include "segmentjuice/SegmentJuicePlugin.cpp"
  20. #include "segmentjuice/SegmentJuiceUI.cpp"
  21. // DISTRHO Code
  22. #define DISTRHO_PLUGIN_TARGET_CARLA
  23. #include "DistrhoPluginMain.cpp"
  24. #include "DistrhoUIMain.cpp"
  25. START_NAMESPACE_DISTRHO
  26. // -----------------------------------------------------------------------
  27. static const NativePluginDescriptor segmentjuiceDesc = {
  28. /* category */ PLUGIN_CATEGORY_SYNTH,
  29. /* hints */ static_cast<NativePluginHints>(PLUGIN_IS_RTSAFE|PLUGIN_IS_SYNTH|PLUGIN_HAS_UI|PLUGIN_USES_PARENT_ID),
  30. /* supports */ static_cast<NativePluginSupports>(0x0),
  31. /* audioIns */ DISTRHO_PLUGIN_NUM_INPUTS,
  32. /* audioOuts */ DISTRHO_PLUGIN_NUM_OUTPUTS,
  33. /* midiIns */ 1,
  34. /* midiOuts */ 0,
  35. /* paramIns */ SegmentJuicePlugin::paramCount,
  36. /* paramOuts */ 0,
  37. /* name */ DISTRHO_PLUGIN_NAME,
  38. /* label */ "segmentjuice",
  39. /* maker */ "Andre Sklenar",
  40. /* copyright */ "GPL v2+",
  41. PluginDescriptorFILL(PluginCarla)
  42. };
  43. END_NAMESPACE_DISTRHO
  44. // -----------------------------------------------------------------------
  45. CARLA_EXPORT
  46. void carla_register_native_plugin_segmentjuice()
  47. {
  48. USE_NAMESPACE_DISTRHO
  49. carla_register_native_plugin(&segmentjuiceDesc);
  50. }
  51. // -----------------------------------------------------------------------