mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 00:50:21 +00:00
0ec400890c
Original commit message from CVS: initial checkin
15 lines
560 B
Text
15 lines
560 B
Text
Here's a possible (huge, large, complete?) sequence of execution for an
|
|
invocation of [GIST] playing a media stream. I'll start with a mp3 audio
|
|
stream, but eventually this should be a mpeg a/v stream off the net with
|
|
rolling capture (think ReplayTV/Tivo), pausing, rewinding, etc. This
|
|
could easily be hundreds of lines by the time I'm done...
|
|
|
|
This may look a lot like C in places, simply because that's the most
|
|
efficient way of representing a given action.
|
|
|
|
|
|
gst_init();
|
|
pipeline = gst_pipeline_new();
|
|
state =
|
|
src = gst_disksrc_new("src","song.mp3");
|
|
|