13
0
livetrax/libs/audiographer
Paul Davis 4dc63966f0 globally remove all trailing whitespace from ardour code base.
Paul Davis was responsible for introducing almost all of this.
2015-10-04 14:51:05 -04:00
..
audiographer globally remove all trailing whitespace from ardour code base. 2015-10-04 14:51:05 -04:00
doc
macos/audiographer/audiographer.xcodeproj copy all XCode project files from Tracks. 2015-06-29 14:18:10 -04:00
MSVCaudiographer
private another hint for clang static analysis. 2015-09-06 10:42:58 +02:00
src globally remove all trailing whitespace from ardour code base. 2015-10-04 14:51:05 -04:00
tests initialize private variable (unit-test) 2015-09-05 19:16:50 +02:00
COPYING
README
wscript fix static library build 2015-06-29 14:16:42 -04: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).