d305d53577ed58fd6368913de75a133de774aa67
[platform/upstream/gstreamer.git] / docs / random / intro
1 GNOME Streamer is a pipeline-based media streaming framework.  It is built
2 on top of the Gtk+ object model, and while it currently sits on top of
3 gtk, it can be divorced from it at any point in the future.
4
5 A pipeline consists of at one or more each of sources, sinks, and filters.
6 These elements may be combined inside container elements, which may have
7 their own specific properties, and act as any other element.  Each element 
8 has one or more pads, which are connection points.  These pads are
9 connected to chain from one element to the next, providing a path along
10 which buffers are passed.
11
12 Operation of the pipeline is fully automatic once a buffer is put in the
13 front of the pipeline.  As each element finishes its processing, it pushes
14 the buffer to the next element through an indirect function call, by way
15 of the two connected pads.
16
17