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.

units.h 3.0KB

12 years ago
9 years ago
12 years ago
9 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. /**
  15. @defgroup units Units
  16. Units for LV2 values, see <http://lv2plug.in/ns/extensions/units> for
  17. details.
  18. @{
  19. */
  20. #ifndef LV2_UNITS_H
  21. #define LV2_UNITS_H
  22. #define LV2_UNITS_URI "http://lv2plug.in/ns/extensions/units"
  23. #define LV2_UNITS_PREFIX LV2_UNITS_URI "#"
  24. #define LV2_UNITS__Conversion LV2_UNITS_PREFIX "Conversion"
  25. #define LV2_UNITS__Unit LV2_UNITS_PREFIX "Unit"
  26. #define LV2_UNITS__bar LV2_UNITS_PREFIX "bar"
  27. #define LV2_UNITS__beat LV2_UNITS_PREFIX "beat"
  28. #define LV2_UNITS__bpm LV2_UNITS_PREFIX "bpm"
  29. #define LV2_UNITS__cent LV2_UNITS_PREFIX "cent"
  30. #define LV2_UNITS__cm LV2_UNITS_PREFIX "cm"
  31. #define LV2_UNITS__coef LV2_UNITS_PREFIX "coef"
  32. #define LV2_UNITS__conversion LV2_UNITS_PREFIX "conversion"
  33. #define LV2_UNITS__db LV2_UNITS_PREFIX "db"
  34. #define LV2_UNITS__degree LV2_UNITS_PREFIX "degree"
  35. #define LV2_UNITS__frame LV2_UNITS_PREFIX "frame"
  36. #define LV2_UNITS__hz LV2_UNITS_PREFIX "hz"
  37. #define LV2_UNITS__inch LV2_UNITS_PREFIX "inch"
  38. #define LV2_UNITS__khz LV2_UNITS_PREFIX "khz"
  39. #define LV2_UNITS__km LV2_UNITS_PREFIX "km"
  40. #define LV2_UNITS__m LV2_UNITS_PREFIX "m"
  41. #define LV2_UNITS__mhz LV2_UNITS_PREFIX "mhz"
  42. #define LV2_UNITS__midiNote LV2_UNITS_PREFIX "midiNote"
  43. #define LV2_UNITS__mile LV2_UNITS_PREFIX "mile"
  44. #define LV2_UNITS__min LV2_UNITS_PREFIX "min"
  45. #define LV2_UNITS__mm LV2_UNITS_PREFIX "mm"
  46. #define LV2_UNITS__ms LV2_UNITS_PREFIX "ms"
  47. #define LV2_UNITS__name LV2_UNITS_PREFIX "name"
  48. #define LV2_UNITS__oct LV2_UNITS_PREFIX "oct"
  49. #define LV2_UNITS__pc LV2_UNITS_PREFIX "pc"
  50. #define LV2_UNITS__prefixConversion LV2_UNITS_PREFIX "prefixConversion"
  51. #define LV2_UNITS__render LV2_UNITS_PREFIX "render"
  52. #define LV2_UNITS__s LV2_UNITS_PREFIX "s"
  53. #define LV2_UNITS__semitone12TET LV2_UNITS_PREFIX "semitone12TET"
  54. #define LV2_UNITS__symbol LV2_UNITS_PREFIX "symbol"
  55. #define LV2_UNITS__unit LV2_UNITS_PREFIX "unit"
  56. #endif /* LV2_UNITS_H */
  57. /**
  58. @}
  59. */