fix crash when copy'ing latent plugins
[ardour.git] / libs / audiographer / README
1 AudioGrapher is Copyright Sakari Bergen 2009-2010
2
3 AudioGrapher is best described as a signal flow management library.
4 It includes facilities to build graphs out of signal processing elements.
5 Once a graph is set up, all signal flow within the graph happens automatically.
6
7 The data flow model in Audiographer is dynamic instead of synchronous - the type
8 and amount of data that goes in to a graph may differ from what comes out.
9 AudioGrapher is aimed mostly for usage by developers, as it includes lots of
10 facilities that ease the development process.
11
12 The main aim of AudioGrapher is to ease development and debugging of signal flow
13 graphs. It makes heavy use of modern C++ techniques like templates, and uses the
14 boost libraries a lot.
15
16 The essential classes in AudioGrapher are Sink, Source and ProcessContext. These
17 three define the signal flow in a graph. In addition, the core of AudioGrapher
18 includes lots of utility classes.
19
20 AudioGrapher includes a bunch of ready Sink, Source and Vertex implementations.
21 Some are utilities used when developing more vertices, while others are general
22 utilities (file i/o, sample rate conversion etc).