mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
5608ed3da1
Original commit message from CVS: added all of my un-committed random doc files, as backup <g>
19 lines
677 B
Text
19 lines
677 B
Text
disksrc -> mp3parse -> mpg123 -> audiosink
|
|
|
|
disksrc reads last 4K chunk from disk. Sets EOS on the buffer, pushes buffer out to peer.
|
|
disksrc:src sets itself to EOS and chains to mp3parse.
|
|
|
|
mp3parse takes the buffer and slices it up into several.
|
|
Each buffer gets chained off to mpg123.
|
|
|
|
mpg123 decoders each frame and sends it to audiosink.
|
|
|
|
audiosink dumps the audio data to the sound card.
|
|
|
|
mpg123 returns from the chain, and returns.
|
|
|
|
mp3parse returns from each of the several chains,a nd returns.
|
|
|
|
disksrc:src returns from the chain, signals EOS, and sets disksrc's EOS flag
|
|
|
|
At this point the pipeline state code takes over and starts to set everyone to READY
|