aboutsummaryrefslogtreecommitdiffstats
path: root/src/jack.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/jack.c')
-rw-r--r--src/jack.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/jack.c b/src/jack.c
index ece2567..13765f1 100644
--- a/src/jack.c
+++ b/src/jack.c
@@ -203,9 +203,7 @@ jack_process_cb(jack_nframes_t nframes, void* data)
jalv->plugin_latency = port->control;
jack_recompute_total_latencies(client);
}
- }
-
- if (port->flow == FLOW_OUTPUT && port->type == TYPE_EVENT) {
+ } else if (port->flow == FLOW_OUTPUT && port->type == TYPE_EVENT) {
void* buf = NULL;
if (port->sys_port) {
buf = jack_port_get_buffer(port->sys_port, nframes);
@@ -230,9 +228,8 @@ jack_process_cb(jack_nframes_t nframes, void* data)
jalv_send_to_ui(jalv, p, type, size, body);
}
}
- } else if (send_ui_updates
- && port->flow != FLOW_INPUT
- && port->type == TYPE_CONTROL) {
+ } else if (send_ui_updates &&
+ port->flow == FLOW_OUTPUT && port->type == TYPE_CONTROL) {
char buf[sizeof(ControlChange) + sizeof(float)];
ControlChange* ev = (ControlChange*)buf;
ev->index = p;