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.

79 lines
2.9KB

  1. /*
  2. * Carla Native Plugins
  3. * Copyright (C) 2012-2017 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. #include "CarlaNative.h"
  19. // --------------------------------------------------------------------------------------------------------------------
  20. // DISTRHO plugins
  21. extern void carla_register_native_plugin_distrho_3bandeq(void);
  22. extern void carla_register_native_plugin_distrho_3bandsplitter(void);
  23. extern void carla_register_native_plugin_distrho_kars(void);
  24. extern void carla_register_native_plugin_distrho_nekobi(void);
  25. extern void carla_register_native_plugin_distrho_pingpongpan(void);
  26. extern void carla_register_native_plugin_distrho_prom(void);
  27. // DISTRHO plugins (Juice)
  28. extern void carla_register_native_plugin_distrho_vectorjuice(void);
  29. extern void carla_register_native_plugin_distrho_wobblejuice(void);
  30. // ZynAddSubFX
  31. extern void carla_register_native_plugin_zynaddsubfx_fx(void);
  32. extern void carla_register_native_plugin_zynaddsubfx_synth(void);
  33. // Experimental plugins
  34. extern void carla_register_native_plugin_zita_at1(void);
  35. extern void carla_register_native_plugin_zita_bls1(void);
  36. extern void carla_register_native_plugin_zita_rev1(void);
  37. // --------------------------------------------------------------------------------------------------------------------
  38. void carla_register_all_native_external_plugins(void)
  39. {
  40. // DISTRHO Plugins
  41. carla_register_native_plugin_distrho_3bandeq();
  42. carla_register_native_plugin_distrho_3bandsplitter();
  43. carla_register_native_plugin_distrho_kars();
  44. carla_register_native_plugin_distrho_nekobi();
  45. carla_register_native_plugin_distrho_pingpongpan();
  46. #if defined(HAVE_DGL) && defined(HAVE_PROJECTM)
  47. carla_register_native_plugin_distrho_prom();
  48. #endif
  49. // DISTRHO plugins (Juice)
  50. carla_register_native_plugin_distrho_vectorjuice();
  51. carla_register_native_plugin_distrho_wobblejuice();
  52. #ifdef HAVE_ZYN_DEPS
  53. // ZynAddSubFX
  54. carla_register_native_plugin_zynaddsubfx_fx();
  55. # ifndef DISABLE_PLUGINS_FOR_WINDOWS_BUILD
  56. carla_register_native_plugin_zynaddsubfx_synth();
  57. # endif
  58. #endif
  59. #ifdef HAVE_EXPERIMENTAL_PLUGINS
  60. // Experimental plugins
  61. carla_register_native_plugin_zita_at1();
  62. carla_register_native_plugin_zita_bls1();
  63. carla_register_native_plugin_zita_rev1();
  64. #endif
  65. }
  66. // --------------------------------------------------------------------------------------------------------------------