aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-sampler.lv2/sampler.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-25 11:06:47 +0200
committerDavid Robillard <d@drobilla.net>2020-07-25 11:06:47 +0200
commit001234daeb43b4c54b49ffca527cc92cd4d9b718 (patch)
tree32e834d7f3df18d8ae1653122073422162d419d5 /plugins/eg-sampler.lv2/sampler.c
parent6b4cee5bc2338793d2a7419e5113a9b3c99df8e1 (diff)
downloadlv2-001234daeb43b4c54b49ffca527cc92cd4d9b718.tar.xz
Revert "Use LV2_ATOM_BODY macros in examples instead of pointer arithmetic"
This reverts commit 3aad5eb1b08ed5c27e60aa36021c4a85ce90c08f, which broke the example plugins.
Diffstat (limited to 'plugins/eg-sampler.lv2/sampler.c')
-rw-r--r--plugins/eg-sampler.lv2/sampler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/eg-sampler.lv2/sampler.c b/plugins/eg-sampler.lv2/sampler.c
index 646da2d..17f62a8 100644
--- a/plugins/eg-sampler.lv2/sampler.c
+++ b/plugins/eg-sampler.lv2/sampler.c
@@ -322,7 +322,7 @@ handle_event(Sampler* self, LV2_Atom_Event* ev)
PeaksURIs* peaks_uris = &self->psend.uris;
if (ev->body.type == uris->midi_Event) {
- const uint8_t* const msg = (const uint8_t*)LV2_ATOM_BODY_CONST(ev);
+ const uint8_t* const msg = (const uint8_t*)(ev + 1);
switch (lv2_midi_message_type(msg)) {
case LV2_MIDI_MSG_NOTE_ON:
self->frame = 0;