
This directory contains all classes which actually handles
the streaming.

The graph simply contains nodes, but there are differences:

*A device takes care that the node is threadsafe (done with nodeDevice)
 and adds device specific methods. (like setVolume in volumeDevice)

*A filter does not to care about threads.A filter take care
 about the actual filter algorithm. (a device can make several
 instances of filters!)

*The acceleration are classes which handle MMX/3DNow specific
 algorithms. This may be used by a filter to speed tings up.
 Note: a filter must make an instance of this class!!!

*The graph is the underlying graph structure.(used by nodeDevice)


 
 