Collection of DPF-based plugins for packaging
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.

46 lines
1.6KB

  1. /*
  2. * DISTRHO glBars Plugin based on XMMS/XBMC "GL Bars"
  3. * Copyright (C) 1998-2000 Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies
  4. * Copyright (C) 2000 Christian Zander <phoenix@minion.de>
  5. * Copyright (C) 2015 Nedko Arnaudov
  6. * Copyright (C) 2016-2022 Filipe Coelho <falktx@falktx.com>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * For a full copy of the license see the LICENSE file.
  19. */
  20. #ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
  21. #define DISTRHO_PLUGIN_INFO_H_INCLUDED
  22. #define DISTRHO_PLUGIN_BRAND "DISTRHO"
  23. #define DISTRHO_PLUGIN_NAME "glBars"
  24. #define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/glBars"
  25. #define DISTRHO_PLUGIN_HAS_UI 1
  26. #define DISTRHO_PLUGIN_NUM_INPUTS 1
  27. #define DISTRHO_PLUGIN_NUM_OUTPUTS 1
  28. #define DISTRHO_PLUGIN_WANT_DIRECT_ACCESS 1
  29. #define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:AnalyserPlugin"
  30. #define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|Analyzer"
  31. #define DISTRHO_UI_USER_RESIZABLE 1
  32. enum Parameters {
  33. kParameterScale = 0,
  34. kParameterSpeed,
  35. kParameterX,
  36. kParameterY,
  37. kParameterZ,
  38. kParameterCount
  39. };
  40. #endif // DISTRHO_PLUGIN_INFO_H_INCLUDED