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.

38 lines
1.2KB

  1. /*
  2. * DISTRHO MVerb, a DPF'ied MVerb.
  3. * Copyright (c) 2010 Martin Eastwood
  4. * Copyright (C) 2014 Filipe Coelho <falktx@falktx.com>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 3 of
  9. * the License, or any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * For a full copy of the GNU General Public License see the LICENSE file.
  17. */
  18. #ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
  19. #define DISTRHO_PLUGIN_INFO_H_INCLUDED
  20. #define DISTRHO_PLUGIN_NAME "MVerb"
  21. #define DISTRHO_PLUGIN_HAS_UI 1
  22. #define DISTRHO_PLUGIN_IS_SYNTH 0
  23. #define DISTRHO_PLUGIN_NUM_INPUTS 2
  24. #define DISTRHO_PLUGIN_NUM_OUTPUTS 2
  25. #define DISTRHO_PLUGIN_WANT_LATENCY 0
  26. #define DISTRHO_PLUGIN_WANT_PROGRAMS 1
  27. #define DISTRHO_PLUGIN_WANT_STATE 0
  28. #define DISTRHO_PLUGIN_WANT_TIMEPOS 0
  29. #define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MVerb"
  30. #endif // DISTRHO_PLUGIN_INFO_H_INCLUDED