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.

parameters.h 2.9KB

12 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. Copyright 2012 David Robillard <http://drobilla.net>
  3. Permission to use, copy, modify, and/or distribute this software for any
  4. purpose with or without fee is hereby granted, provided that the above
  5. copyright notice and this permission notice appear in all copies.
  6. THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  7. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  8. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  9. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  10. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  11. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  12. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  13. */
  14. #ifndef LV2_PARAMETERS_H
  15. #define LV2_PARAMETERS_H
  16. #define LV2_PARAMETERS_URI "http://lv2plug.in/ns/ext/parameters"
  17. #define LV2_PARAMETERS_PREFIX LV2_PARAMETERS_URI "#"
  18. #define LV2_PARAMETERS__CompressorControls LV2_PARAMETERS_PREFIX "CompressorControls"
  19. #define LV2_PARAMETERS__ControlGroup LV2_PARAMETERS_PREFIX "ControlGroup"
  20. #define LV2_PARAMETERS__EnvelopeControls LV2_PARAMETERS_PREFIX "EnvelopeControls"
  21. #define LV2_PARAMETERS__FilterControls LV2_PARAMETERS_PREFIX "FilterControls"
  22. #define LV2_PARAMETERS__OscillatorControls LV2_PARAMETERS_PREFIX "OscillatorControls"
  23. #define LV2_PARAMETERS__amplitude LV2_PARAMETERS_PREFIX "amplitude"
  24. #define LV2_PARAMETERS__attack LV2_PARAMETERS_PREFIX "attack"
  25. #define LV2_PARAMETERS__bypass LV2_PARAMETERS_PREFIX "bypass"
  26. #define LV2_PARAMETERS__cutoffFrequency LV2_PARAMETERS_PREFIX "cutoffFrequency"
  27. #define LV2_PARAMETERS__decay LV2_PARAMETERS_PREFIX "decay"
  28. #define LV2_PARAMETERS__delay LV2_PARAMETERS_PREFIX "delay"
  29. #define LV2_PARAMETERS__dryLevel LV2_PARAMETERS_PREFIX "dryLevel"
  30. #define LV2_PARAMETERS__frequency LV2_PARAMETERS_PREFIX "frequency"
  31. #define LV2_PARAMETERS__gain LV2_PARAMETERS_PREFIX "gain"
  32. #define LV2_PARAMETERS__hold LV2_PARAMETERS_PREFIX "hold"
  33. #define LV2_PARAMETERS__pulseWidth LV2_PARAMETERS_PREFIX "pulseWidth"
  34. #define LV2_PARAMETERS__ratio LV2_PARAMETERS_PREFIX "ratio"
  35. #define LV2_PARAMETERS__release LV2_PARAMETERS_PREFIX "release"
  36. #define LV2_PARAMETERS__resonance LV2_PARAMETERS_PREFIX "resonance"
  37. #define LV2_PARAMETERS__sampleRate LV2_PARAMETERS_PREFIX "sampleRate"
  38. #define LV2_PARAMETERS__sustain LV2_PARAMETERS_PREFIX "sustain"
  39. #define LV2_PARAMETERS__threshold LV2_PARAMETERS_PREFIX "threshold"
  40. #define LV2_PARAMETERS__waveform LV2_PARAMETERS_PREFIX "waveform"
  41. #define LV2_PARAMETERS__wetDryRatio LV2_PARAMETERS_PREFIX "wetDryRatio"
  42. #define LV2_PARAMETERS__wetLevel LV2_PARAMETERS_PREFIX "wetLevel"
  43. #endif /* LV2_PARAMETERS_H */