From 8960ebcdf9faeb2fe4aaa1a337e3ad92ab09ef60 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 9 Aug 2013 13:27:05 -0400 Subject: remove another naming that refers to JACK --- libs/ardour/io.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'libs/ardour/io.cc') diff --git a/libs/ardour/io.cc b/libs/ardour/io.cc index c517defe1a..6f5b5a63da 100644 --- a/libs/ardour/io.cc +++ b/libs/ardour/io.cc @@ -1404,10 +1404,11 @@ IO::find_port_hole (const char* base) */ for (n = 1; n < 9999; ++n) { - char buf[jack_port_name_size()]; + size_t size = AudioEngine::instance()->port_name_size() + 1; + char buf[size]; PortSet::iterator i = _ports.begin(); - snprintf (buf, jack_port_name_size(), _("%s %u"), base, n); + snprintf (buf, size, _("%s %u"), base, n); for ( ; i != _ports.end(); ++i) { if (i->name() == buf) { @@ -1638,7 +1639,7 @@ IO::process_input (boost::shared_ptr proc, framepos_t start_frame, fr return; } - _buffers.get_jack_port_addresses (_ports, nframes); + _buffers.get_backend_port_addresses (_ports, nframes); if (proc) { proc->run (_buffers, start_frame, end_frame, nframes, true); } -- cgit v1.2.3