diff options
author | David Robillard <d@drobilla.net> | 2012-02-08 02:03:36 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-02-08 02:03:36 +0000 |
commit | c1fdbaed509eb4662ae1c135df2c95663afaa81d (patch) | |
tree | 4147d8583b29261db562d61b8c3027c410bf7bf2 /lv2/ns/ext | |
parent | 046c0a8bbffb572df1c6376d3bf525aac9b3a9fa (diff) | |
download | lv2-c1fdbaed509eb4662ae1c135df2c95663afaa81d.tar.xz |
Add time_type field to Sequence.
Diffstat (limited to 'lv2/ns/ext')
-rw-r--r-- | lv2/ns/ext/atom/atom.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lv2/ns/ext/atom/atom.h b/lv2/ns/ext/atom/atom.h index 7a29dae..bea9197 100644 --- a/lv2/ns/ext/atom/atom.h +++ b/lv2/ns/ext/atom/atom.h @@ -190,9 +190,9 @@ typedef struct { </pre> */ typedef struct { - LV2_Atom atom; /**< Atom header. */ - uint32_t capacity; /**< Maximum size of contents. */ - uint32_t pad; + LV2_Atom atom; /**< Atom header. */ + uint32_t capacity; /**< Maximum size of contents. */ + uint32_t time_type; /**< URID type of event time stamps. */ /* Contents (a series of events) follow here. */ } LV2_Atom_Sequence; |