aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-metro.lv2/metro.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-11-17 22:22:08 +0000
committerDavid Robillard <d@drobilla.net>2012-11-17 22:22:08 +0000
commit04f9343dc9690894678711c39ff4a86538fb3d44 (patch)
treea121c610b6f1bffa702f2d7314ff6353a81e56ba /plugins/eg-metro.lv2/metro.c
parent6fc9dea2ef99d545963e76de2c9d98a18ed025f9 (diff)
downloadlv2-04f9343dc9690894678711c39ff4a86538fb3d44.tar.xz
Fix notify output.
Diffstat (limited to 'plugins/eg-metro.lv2/metro.c')
-rw-r--r--plugins/eg-metro.lv2/metro.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/eg-metro.lv2/metro.c b/plugins/eg-metro.lv2/metro.c
index 54b2a70..1758766 100644
--- a/plugins/eg-metro.lv2/metro.c
+++ b/plugins/eg-metro.lv2/metro.c
@@ -43,6 +43,7 @@ typedef struct {
LV2_URID atom_Float;
LV2_URID atom_Path;
LV2_URID atom_Resource;
+ LV2_URID atom_Sequence;
LV2_URID time_Position;
LV2_URID time_barBeat;
LV2_URID time_beatsPerMinute;
@@ -153,6 +154,7 @@ instantiate(const LV2_Descriptor* descriptor,
uris->atom_Float = map->map(map->handle, LV2_ATOM__Float);
uris->atom_Path = map->map(map->handle, LV2_ATOM__Path);
uris->atom_Resource = map->map(map->handle, LV2_ATOM__Resource);
+ uris->atom_Sequence = map->map(map->handle, LV2_ATOM__Sequence);
uris->time_Position = map->map(map->handle, LV2_TIME__Position);
uris->time_barBeat = map->map(map->handle, LV2_TIME__barBeat);
uris->time_beatsPerMinute = map->map(map->handle, LV2_TIME__beatsPerMinute);
@@ -274,6 +276,12 @@ run(LV2_Handle instance, uint32_t sample_count)
Metro* self = (Metro*)instance;
const MetroURIs* uris = &self->uris;
+ /* Empty notify output for now */
+ LV2_Atom_Sequence* notify = self->ports.notify;
+ notify->atom.type = self->uris.atom_Sequence;
+ notify->atom.size = sizeof(LV2_Atom_Sequence_Body);
+ notify->body.unit = notify->body.pad = 0;
+
/* Work forwards in time frame by frame, handling events as we go */
const LV2_Atom_Sequence* in = self->ports.control;
uint32_t last_t = 0;