From 3319e2dfa3ab5b1732777323da92d08b9ee42b8e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 11 Oct 2007 05:25:32 +0000 Subject: Fix initial state of radio buttons in connect window when running ingen -eg. Move all GTK main stuff into a single callback (control order better, avoid scheduler overhead). Speed up client GTK thread event processing rate. Eliminate buffering of post-processed events when running internal engine (post-process events directly in GTK thread). git-svn-id: http://svn.drobilla.net/lad/ingen@873 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/Engine.cpp | 4 +--- src/libs/engine/JackAudioDriver.cpp | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'src/libs/engine') diff --git a/src/libs/engine/Engine.cpp b/src/libs/engine/Engine.cpp index 004de200..f0b43dc8 100644 --- a/src/libs/engine/Engine.cpp +++ b/src/libs/engine/Engine.cpp @@ -267,11 +267,9 @@ Engine::deactivate() _process_slaves.clear(); // Finalize any lingering events (unlikely) - //_post_processor->whip(); - //_post_processor->stop(); + _post_processor->process(); _audio_driver.reset(); - _event_source.reset(); _activated = false; diff --git a/src/libs/engine/JackAudioDriver.cpp b/src/libs/engine/JackAudioDriver.cpp index 0c824935..f90e1075 100644 --- a/src/libs/engine/JackAudioDriver.cpp +++ b/src/libs/engine/JackAudioDriver.cpp @@ -276,7 +276,7 @@ JackAudioDriver::driver_port(const Path& path) int JackAudioDriver::_process_cb(jack_nframes_t nframes) { - if (nframes == 0) + if (nframes == 0 || ! _is_activated) return 0; // FIXME: all of this time stuff is screwy -- cgit v1.2.1