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.

53 lines
1.9KB

  1. /*
  2. Copyright 2011 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 time Time
  16. Properties for describing time, see <http://lv2plug.in/ns/ext/time> for
  17. details.
  18. Note the time extension is purely data, this header merely defines URIs for
  19. convenience.
  20. @{
  21. */
  22. #ifndef LV2_TIME_H
  23. #define LV2_TIME_H
  24. #define LV2_TIME_URI "http://lv2plug.in/ns/ext/time"
  25. #define LV2_TIME__Time LV2_TIME_URI "#Time"
  26. #define LV2_TIME__Position LV2_TIME_URI "#Position"
  27. #define LV2_TIME__Rate LV2_TIME_URI "#Rate"
  28. #define LV2_TIME__position LV2_TIME_URI "#position"
  29. #define LV2_TIME__barBeat LV2_TIME_URI "#barBeat"
  30. #define LV2_TIME__bar LV2_TIME_URI "#bar"
  31. #define LV2_TIME__beat LV2_TIME_URI "#beat"
  32. #define LV2_TIME__beatUnit LV2_TIME_URI "#beatUnit"
  33. #define LV2_TIME__beatsPerBar LV2_TIME_URI "#beatsPerBar"
  34. #define LV2_TIME__beatsPerMinute LV2_TIME_URI "#beatsPerMinute"
  35. #define LV2_TIME__frame LV2_TIME_URI "#frame"
  36. #define LV2_TIME__framesPerSecond LV2_TIME_URI "#framesPerSecond"
  37. #define LV2_TIME__speed LV2_TIME_URI "#speed"
  38. /**
  39. @}
  40. */
  41. #endif /* LV2_TIME_H */