ardour/libs/audiographer
Robin Gareus 34609232f0
Remove deprecated no-op function (1/2)
Glib::thread_init has been deprecated since 2.32,ib
is no longer necessary and no longer has any effect.

This fixes builds with modern glib[mm] versions, notably
with msys2 in Windows.
2025-11-20 23:10:52 +01:00
..
audiographer Fix export encoder race condition 2024-12-15 16:31:43 +01:00
doc Fix export, which has been broken since the boost::signals2 changes. Also update Audiographer, bacause of its incomplete sndfile handling. Audiographer is equal to revision 74 2010-03-15 19:11:48 +00:00
macos/audiographer/audiographer.xcodeproj copy all XCode project files from Tracks. 2015-06-29 14:18:10 -04:00
MSVCaudiographer Add/remove source(s) in our MSVC project (audiographer) 2021-04-17 11:21:33 +01:00
private Fix shaped dither (#9342) 2023-05-22 04:50:19 +02:00
src Replace boost::format with PBD::string_compose 2024-10-19 03:39:57 +02:00
tests Remove deprecated no-op function (1/2) 2025-11-20 23:10:52 +01:00
COPYING Re-integrate export-optimization branch. 2009-12-27 14:46:23 +00:00
README Fix export, which has been broken since the boost::signals2 changes. Also update Audiographer, bacause of its incomplete sndfile handling. Audiographer is equal to revision 74 2010-03-15 19:11:48 +00:00
run-tests.sh Add script to run audiographer tests 2016-12-06 13:20:54 +10:00
wscript Copy more mingw branches for MSVC 2025-10-22 18:48:40 +02:00

AudioGrapher is Copyright Sakari Bergen 2009-2010

AudioGrapher is best described as a signal flow management library.
It includes facilities to build graphs out of signal processing elements.
Once a graph is set up, all signal flow within the graph happens automatically.

The data flow model in Audiographer is dynamic instead of synchronous - the type
and amount of data that goes in to a graph may differ from what comes out.
AudioGrapher is aimed mostly for usage by developers, as it includes lots of
facilities that ease the development process.

The main aim of AudioGrapher is to ease development and debugging of signal flow
graphs. It makes heavy use of modern C++ techniques like templates, and uses the
boost libraries a lot.

The essential classes in AudioGrapher are Sink, Source and ProcessContext. These
three define the signal flow in a graph. In addition, the core of AudioGrapher
includes lots of utility classes.

AudioGrapher includes a bunch of ready Sink, Source and Vertex implementations.
Some are utilities used when developing more vertices, while others are general
utilities (file i/o, sample rate conversion etc).