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.

107 lines
3.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. #include "CarlaDefines.h"
  18. // Simple plugins
  19. extern void carla_register_native_plugin_bypass();
  20. extern void carla_register_native_plugin_lfo();
  21. extern void carla_register_native_plugin_midigain();
  22. extern void carla_register_native_plugin_midisplit();
  23. extern void carla_register_native_plugin_midithrough();
  24. extern void carla_register_native_plugin_miditranspose();
  25. extern void carla_register_native_plugin_nekofilter();
  26. #ifndef CARLA_OS_WIN
  27. // Carla
  28. extern void carla_register_native_plugin_carla();
  29. // External-UI plugins
  30. extern void carla_register_native_plugin_bigmeter();
  31. extern void carla_register_native_plugin_notes();
  32. #endif
  33. #ifdef HAVE_JUCE_UI
  34. // JUCE based plugins
  35. extern void carla_register_native_plugin_jucepatchbay();
  36. extern void carla_register_native_plugin_vex_fx();
  37. extern void carla_register_native_plugin_vex_synth();
  38. #endif
  39. #ifdef WANT_AUDIOFILE
  40. // Audio File
  41. extern void carla_register_native_plugin_audiofile();
  42. #endif
  43. #ifdef WANT_MIDIFILE
  44. // MIDI File
  45. extern void carla_register_native_plugin_midifile();
  46. #endif
  47. // SunVox File
  48. extern void carla_register_native_plugin_sunvoxfile();
  49. #ifdef WANT_ZYNADDSUBFX
  50. // ZynAddSubFX
  51. extern void carla_register_native_plugin_zynaddsubfx_fx();
  52. extern void carla_register_native_plugin_zynaddsubfx_synth();
  53. #endif
  54. void carla_register_all_plugins()
  55. {
  56. // Simple plugins
  57. carla_register_native_plugin_bypass();
  58. carla_register_native_plugin_lfo();
  59. carla_register_native_plugin_midigain();
  60. carla_register_native_plugin_midisplit();
  61. carla_register_native_plugin_midithrough();
  62. carla_register_native_plugin_miditranspose();
  63. carla_register_native_plugin_nekofilter();
  64. #ifndef CARLA_OS_WIN
  65. // Carla
  66. carla_register_native_plugin_carla();
  67. // External-UI plugins
  68. carla_register_native_plugin_bigmeter();
  69. carla_register_native_plugin_notes();
  70. #endif
  71. #ifdef HAVE_JUCE_UI
  72. // JUCE based plugins
  73. carla_register_native_plugin_jucepatchbay();
  74. carla_register_native_plugin_vex_fx();
  75. carla_register_native_plugin_vex_synth();
  76. #endif
  77. #ifdef WANT_AUDIOFILE
  78. // Audio File
  79. carla_register_native_plugin_audiofile();
  80. #endif
  81. #ifdef WANT_MIDIFILE
  82. // MIDI File
  83. carla_register_native_plugin_midifile();
  84. #endif
  85. #ifdef WANT_ZYNADDSUBFX
  86. // ZynAddSubFX
  87. carla_register_native_plugin_zynaddsubfx_fx();
  88. carla_register_native_plugin_zynaddsubfx_synth();
  89. #endif
  90. }