newsAdvanced Gtk+ Sequencer - News: Lock-free audio processing and ::dispose()

 
 
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

Lock-free audio processing and ::dispose()

Item posted by Joël Krähemann <jkraehemann> on Tue 07 Mar 2017 08:38:05 AM UTC.

Recently the mutices has been heavily improved. As the design of Advanced Gtk+ Sequencer allows lock free audio processing, why not doing so?

Next stable release will do so. The locks have been removed of ags_audio_play() and ags_channel_play(). This change comes along with major performance improvement.

One more thing to do is proper clean-up of memory. Although the ::finalize() function was implemented, it doesn't care about circular dependencies. So the allocated memory was still there.

So far many ::dispose() functions have been implemented and some ::finalize() were mangled and fixed.

Performance improvement

The optimization of mutices involved in following functions, have a great performance impact:

  • ags_audio_play()
  • ags_channel_play()


I knew about for some time but was not able to remove them. Because GSequencer crashed then but not for now.

Two more composite widget is going to be introduced AgsVLedArray and AgsHLedArray. Since the visual feedback is polled and uses currently gtk_container_get_children(). What is actually quiet bad in view of performance. Since the returned list has to be freed by g_list_free().

AgsMatrix should be able to stay in real-time with the above changes. Currently its output is delayed and causes audio to slow down. As you enable the sequencers with the notation.

Memory clean-up

Circular dependencies can be released by ::dispose(). All of the needed objects in libags implement it and libags_audio is only missing AgsRecall as well sub-classes to do so.

Within a few days there is going to be released 0.7.122.7 including all changes.


by Joël


 

Back to the top

Powered by Savane 3.13-f8d8.
Corresponding source code