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.

distrho-stereoenhancer.cpp 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 GPL.txt file
  16. */
  17. #include "CarlaNative.hpp"
  18. // Plugin Code
  19. #include "stereoenhancer/DistrhoArtworkStereoEnhancer.cpp"
  20. #include "stereoenhancer/DistrhoPluginStereoEnhancer.cpp"
  21. #include "stereoenhancer/DistrhoUIStereoEnhancer.cpp"
  22. // Carla DISTRHO Plugin
  23. #include "distrho/DistrhoPluginCarla.cpp"
  24. START_NAMESPACE_DISTRHO
  25. // -----------------------------------------------------------------------
  26. static const PluginDescriptor stereoenhancerDesc = {
  27. /* category */ PLUGIN_CATEGORY_EQ,
  28. /* hints */ static_cast<PluginHints>(PLUGIN_IS_RTSAFE|PLUGIN_HAS_GUI),
  29. /* audioIns */ DISTRHO_PLUGIN_NUM_INPUTS,
  30. /* audioOuts */ DISTRHO_PLUGIN_NUM_OUTPUTS,
  31. /* midiIns */ 0,
  32. /* midiOuts */ 0,
  33. /* paramIns */ DistrhoPluginStereoEnhancer::paramCount,
  34. /* paramOuts */ 0,
  35. /* name */ DISTRHO_PLUGIN_NAME,
  36. /* label */ "StereoEnhancer",
  37. /* maker */ "falkTX",
  38. /* copyright */ "LGPL",
  39. PluginDescriptorFILL(PluginCarla)
  40. };
  41. END_NAMESPACE_DISTRHO
  42. // -----------------------------------------------------------------------
  43. void carla_register_native_plugin_StereoEnhancer()
  44. {
  45. USE_NAMESPACE_DISTRHO
  46. carla_register_native_plugin(&stereoenhancerDesc);
  47. }
  48. // -----------------------------------------------------------------------