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
1.8KB

  1. /*
  2. * Carla Native Plugins
  3. * Copyright (C) 2012-2013 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. #include "CarlaNative.hpp"
  18. #include "CarlaMathUtils.hpp"
  19. // Plugin Code
  20. #include "notes/DistrhoPluginNotes.cpp"
  21. #include "notes/DistrhoUINotes.cpp"
  22. // Carla DISTRHO Plugin
  23. #include "distrho/DistrhoPluginCarla.cpp"
  24. START_NAMESPACE_DISTRHO
  25. // -----------------------------------------------------------------------
  26. static const NativePluginDescriptor notesDesc = {
  27. /* category */ PLUGIN_CATEGORY_UTILITY,
  28. /* hints */ static_cast<NativePluginHints>(PLUGIN_IS_RTSAFE|PLUGIN_HAS_UI),
  29. /* supports */ static_cast<NativePluginSupports>(0x0),
  30. /* audioIns */ DISTRHO_PLUGIN_NUM_INPUTS,
  31. /* audioOuts */ DISTRHO_PLUGIN_NUM_OUTPUTS,
  32. /* midiIns */ 0,
  33. /* midiOuts */ 0,
  34. /* paramIns */ 1,
  35. /* paramOuts */ 0,
  36. /* name */ DISTRHO_PLUGIN_NAME,
  37. /* label */ "Notes",
  38. /* maker */ "falkTX",
  39. /* copyright */ "GPL v2+",
  40. PluginDescriptorFILL(PluginCarla)
  41. };
  42. END_NAMESPACE_DISTRHO
  43. // -----------------------------------------------------------------------
  44. CARLA_EXPORT
  45. void carla_register_native_plugin_Notes()
  46. {
  47. USE_NAMESPACE_DISTRHO
  48. carla_register_native_plugin(&notesDesc);
  49. }
  50. // -----------------------------------------------------------------------