newsAdvanced Gtk+ Sequencer - News: Reduced latency of JACK

 
 
Latest News
Advanced Gtk+ Sequencer version 6.5.x posted by jkraehemann, Sun 11 Feb 2024 05:06:15 PM UTC
Advanced Gtk+ Sequencer version 6.3.5 posted by jkraehemann, Fri 19 Jan 2024 11:53:24 AM UTC
Advanced Gtk+ Sequencer v6.1.0 released posted by jkraehemann, Thu 28 Sep 2023 04:55:19 AM UTC
Advanced Gtk+ Sequencer v6.0.0 released posted by jkraehemann, Mon 21 Aug 2023 11:48:52 AM UTC
Advanced Gtk+ Sequencer v5.5.0 released posted by jkraehemann, Sat 05 Aug 2023 10:21:52 AM UTC

Reduced latency of JACK

Item posted by Joël Krähemann <jkraehemann> on Fri 22 Sep 2017 12:37:27 PM UTC.

Recently I have improved JACK Audio Connection Kit MIDI input and audio output. Without any notable increase of process load. Though prior load was less than 1 % with a very basic setup. The very same setup takes now 3 - 4 % load.

GSequencer's intermediate sync


Advanced Gtk+ Sequencer's AgsThread object has got a nice feature, you can do intermediate pre-/post-sync. While JACK does provide only one single callback, the libags-audio backend does a conditional lock during its call.

As the callback is invoked, the AgsSequencerThread gets signaled by it and copies the buffer in order to be processed a tic later. The audio processing tic computes your input of the instrument. One more tic later, AgsSoundcardThread signals the JACK callback.

In a continuing schema:



|                             The 3 tics occupied by JACK Audio Connection Kit Toolkit                              |
|-------------------------------------------------------------------------------------------------------------------|
| Tic 0                                | Tic 1                                | Tic 2                               |
|--------------------------------------|--------------------------------------|-------------------------------------|
| MIDI input of AgsSequencerThread     | Audio processing of AgsAudioLoop     | Audio output of AgsSoundcardThread  |
| * copy MIDI data to AgsAudio and     | * parallel computing of AgsRecycling | * copy data of internal ring-buffer |
|   AgsChannel recycling tree          |   tree                               |   to your audio hardware            |
|                                      | * provide audio data to AgsSoundcard |                                     |


GMainLoop integration


Yay, GSequencer finally uses gtk_main() instead of its very own Gtk+-2.0 dispatcher. As release 0.9.28 all functional tests have been migrated and do pass, now. Obviously, as you need at least 3 tics of synchronization and the last one might be not called for sure, you should definitely sync 4 tics. Since during the very first sync, AgsTaskThread might have already run it's tasks. It is even more complicated the call to ags_task_thread_append_task() and ags_task_thread_append_tasks() is non-blocking.

However, for now AgsGuiThread does make use of GSource to do its splash-screen and synchronization with AgsTaskThread. This can be done because the GUI dispatcher isn't running while the source is dispatched.

First versions available to Apple OS X


I use Apple OS X 10.7.5 to build my DMG and should run on its latest version Sierra, afaik. The binary distribution contains some pre-built plugins. But it is a very bloody beginning.

Environment variables


Advanced Gtk+ Sequencer now supports following plugins environment variables:

  • LADSPA_PATH
  • DSSI_PATH
  • LV2_PATH


Further you could modify the splash screen or logo shown in about by:

  • AGS_LOGO_FILENAME
  • AGS_ANIMATION_FILENAME


As well as providing a custom gtkrc file:

  • AGS_RC_FILENAME



Enjoy, Joël

 

Back to the top

Powered by Savane 3.13-f8d8.
Corresponding source code