aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-08 18:42:47 -0400
committerDavid Robillard <d@drobilla.net>2022-08-17 13:50:50 -0400
commit4e173ca441599d164fa7eb7eb3676f722de62b4d (patch)
treeed1b7f4013a9e1132426779d152c69d110c7a4f1 /src
parent9ca96aaa57bf101d7b92f3250bac56e356361030 (diff)
downloadjalv-4e173ca441599d164fa7eb7eb3676f722de62b4d.tar.gz
jalv-4e173ca441599d164fa7eb7eb3676f722de62b4d.tar.bz2
jalv-4e173ca441599d164fa7eb7eb3676f722de62b4d.zip
Fix atom buffer alignment
Diffstat (limited to 'src')
-rw-r--r--src/jalv.c2
-rw-r--r--src/lv2_evbuf.c52
2 files changed, 36 insertions, 18 deletions
diff --git a/src/jalv.c b/src/jalv.c
index 2b92d63..ef4d403 100644
--- a/src/jalv.c
+++ b/src/jalv.c
@@ -280,6 +280,8 @@ jalv_allocate_port_buffers(Jalv* jalv)
lilv_instance_connect_port(
jalv->instance, i, lv2_evbuf_get_buffer(port->evbuf));
+
+ lv2_evbuf_reset(port->evbuf, port->flow == FLOW_INPUT);
}
}
}
diff --git a/src/lv2_evbuf.c b/src/lv2_evbuf.c
index 47ddd3f..d73b339 100644
--- a/src/lv2_evbuf.c
+++ b/src/lv2_evbuf.c
@@ -1,7 +1,8 @@
-// Copyright 2008-2018 David Robillard <d@drobilla.net>
+// Copyright 2008-2022 David Robillard <d@drobilla.net>
// SPDX-License-Identifier: ISC
#include "lv2_evbuf.h"
+#include "jalv_config.h"
#include "lv2/atom/atom.h"
#include "lv2/atom/util.h"
@@ -14,19 +15,35 @@ struct LV2_Evbuf_Impl {
uint32_t capacity;
uint32_t atom_Chunk;
uint32_t atom_Sequence;
+ uint32_t pad; // So buf has correct atom alignment
LV2_Atom_Sequence buf;
};
LV2_Evbuf*
lv2_evbuf_new(uint32_t capacity, uint32_t atom_Chunk, uint32_t atom_Sequence)
{
- // FIXME: memory must be 64-bit aligned
- LV2_Evbuf* evbuf = (LV2_Evbuf*)malloc(sizeof(LV2_Evbuf) +
- sizeof(LV2_Atom_Sequence) + capacity);
- evbuf->capacity = capacity;
- evbuf->atom_Chunk = atom_Chunk;
- evbuf->atom_Sequence = atom_Sequence;
- lv2_evbuf_reset(evbuf, true);
+ const size_t buffer_size =
+ sizeof(LV2_Evbuf) + sizeof(LV2_Atom_Sequence) + capacity;
+
+#if USE_POSIX_MEMALIGN
+ LV2_Evbuf* evbuf = NULL;
+ const int st = posix_memalign((void**)&evbuf, 16, buffer_size);
+ if (st) {
+ return NULL;
+ }
+
+ assert((uintptr_t)evbuf % 8U == 0U);
+#else
+ LV2_Evbuf* evbuf = (LV2_Evbuf*)malloc(buffer_size);
+#endif
+
+ if (evbuf) {
+ memset(evbuf, 0, sizeof(*evbuf));
+ evbuf->capacity = capacity;
+ evbuf->atom_Chunk = atom_Chunk;
+ evbuf->atom_Sequence = atom_Sequence;
+ }
+
return evbuf;
}
@@ -86,22 +103,21 @@ lv2_evbuf_is_valid(LV2_Evbuf_Iterator iter)
}
LV2_Evbuf_Iterator
-lv2_evbuf_next(LV2_Evbuf_Iterator iter)
+lv2_evbuf_next(const LV2_Evbuf_Iterator iter)
{
if (!lv2_evbuf_is_valid(iter)) {
return iter;
}
- LV2_Evbuf* evbuf = iter.evbuf;
- uint32_t offset = iter.offset;
- uint32_t size = 0;
- size = ((LV2_Atom_Event*)((char*)LV2_ATOM_CONTENTS(LV2_Atom_Sequence,
- &evbuf->buf.atom) +
- offset))
- ->body.size;
- offset += lv2_atom_pad_size(sizeof(LV2_Atom_Event) + size);
+ LV2_Atom_Sequence* aseq = &iter.evbuf->buf;
+ LV2_Atom_Event* aev =
+ (LV2_Atom_Event*)((char*)LV2_ATOM_CONTENTS(LV2_Atom_Sequence, aseq) +
+ iter.offset);
+
+ const uint32_t offset =
+ iter.offset + lv2_atom_pad_size(sizeof(LV2_Atom_Event) + aev->body.size);
- LV2_Evbuf_Iterator next = {evbuf, offset};
+ LV2_Evbuf_Iterator next = {iter.evbuf, offset};
return next;
}