From 066c38eb3f0f5815037638b0bc56bf19a40e2830 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 23 Nov 2006 02:17:00 +0000 Subject: Updated for Jack MIDI API git-svn-id: http://svn.drobilla.net/lad/ingen@203 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/Serializer.cpp | 4 ++-- src/libs/engine/JackMidiDriver.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/libs/client/Serializer.cpp b/src/libs/client/Serializer.cpp index 48d49b97..9cf7828a 100644 --- a/src/libs/client/Serializer.cpp +++ b/src/libs/client/Serializer.cpp @@ -415,8 +415,8 @@ Serializer::serialize_connection(SharedPtr connection) throw (s { assert(_serializer); - const string node_id = connection->src_port_path().parent().name() + connection->src_port_path().name() - + connection->dst_port_path().parent().name() + connection->dst_port_path().name(); + // (Double slash intentional) + const string node_id = connection->src_port_path() + "/" + connection->dst_port_path(); //raptor_identifier* c = raptor_new_identifier(RAPTOR_IDENTIFIER_TYPE_ANONYMOUS, // NULL, RAPTOR_URI_SOURCE_BLANK_ID, (const unsigned char*)"genid1", NULL, NULL, NULL); diff --git a/src/libs/engine/JackMidiDriver.cpp b/src/libs/engine/JackMidiDriver.cpp index 9310d1a6..016889d7 100644 --- a/src/libs/engine/JackMidiDriver.cpp +++ b/src/libs/engine/JackMidiDriver.cpp @@ -89,7 +89,7 @@ JackMidiPort::prepare_block(const SampleCount block_start, const SampleCount blo const SampleCount nframes = block_end - block_start; void* jack_buffer = jack_port_get_buffer(m_jack_port, nframes); - const jack_nframes_t event_count = jack_midi_port_get_info(jack_buffer, nframes)->event_count; + const jack_nframes_t event_count = jack_midi_get_event_count(jack_buffer, nframes); assert(event_count < m_patch_port->buffer_size()); -- cgit v1.2.1