diff options
author | David Robillard <d@drobilla.net> | 2007-10-11 05:25:32 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-10-11 05:25:32 +0000 |
commit | 3319e2dfa3ab5b1732777323da92d08b9ee42b8e (patch) | |
tree | aabc443039093849f24e55e4d70958bff5d079d5 /src/libs/engine | |
parent | 8defdcb32f4421c9d124767d1c677c05791ead55 (diff) | |
download | ingen-3319e2dfa3ab5b1732777323da92d08b9ee42b8e.tar.gz ingen-3319e2dfa3ab5b1732777323da92d08b9ee42b8e.tar.bz2 ingen-3319e2dfa3ab5b1732777323da92d08b9ee42b8e.zip |
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
Diffstat (limited to 'src/libs/engine')
-rw-r--r-- | src/libs/engine/Engine.cpp | 4 | ||||
-rw-r--r-- | src/libs/engine/JackAudioDriver.cpp | 2 |
2 files changed, 2 insertions, 4 deletions
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 |