diff options
author | Atsushi Eno <atsushieno@gmail.com> | 2020-07-19 03:33:31 +0900 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-25 11:18:21 +0200 |
commit | c6ff21f91af949251aa8f58b335b87e1a1c78f54 (patch) | |
tree | c2146a2bcacf530946f82467f7996d80db5d9685 /lv2 | |
parent | 001234daeb43b4c54b49ffca527cc92cd4d9b718 (diff) | |
download | lv2-c6ff21f91af949251aa8f58b335b87e1a1c78f54.tar.xz |
Add missing define for bufsz:coarseBlockLength
Diffstat (limited to 'lv2')
-rw-r--r-- | lv2/buf-size/buf-size.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lv2/buf-size/buf-size.h b/lv2/buf-size/buf-size.h index 7655c77..ae86545 100644 --- a/lv2/buf-size/buf-size.h +++ b/lv2/buf-size/buf-size.h @@ -31,6 +31,7 @@ #define LV2_BUF_SIZE_PREFIX LV2_BUF_SIZE_URI "#" ///< http://lv2plug.in/ns/ext/buf-size# #define LV2_BUF_SIZE__boundedBlockLength LV2_BUF_SIZE_PREFIX "boundedBlockLength" ///< http://lv2plug.in/ns/ext/buf-size#boundedBlockLength +#define LV2_BUF_SIZE__coarseBlockLength LV2_BUF_SIZE_PREFIX "coarseBlockLength" ///< http://lv2plug.in/ns/ext/buf-size#coarseBlockLength #define LV2_BUF_SIZE__fixedBlockLength LV2_BUF_SIZE_PREFIX "fixedBlockLength" ///< http://lv2plug.in/ns/ext/buf-size#fixedBlockLength #define LV2_BUF_SIZE__maxBlockLength LV2_BUF_SIZE_PREFIX "maxBlockLength" ///< http://lv2plug.in/ns/ext/buf-size#maxBlockLength #define LV2_BUF_SIZE__minBlockLength LV2_BUF_SIZE_PREFIX "minBlockLength" ///< http://lv2plug.in/ns/ext/buf-size#minBlockLength |