mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
5608ed3da1
Original commit message from CVS: added all of my un-committed random doc files, as backup <g>
20 lines
766 B
Text
20 lines
766 B
Text
Case 1:
|
|
|
|
|
|
---------------------------------------------------
|
|
| pipeline |
|
|
| --------------- ---------------- |
|
|
| | bin | | thread | |
|
|
| | ----------- | ------------ | ------------ | |
|
|
| | | fakesrc | | | queue | | | fakesink | | |
|
|
| | | src>|-|--|<sink src>|--|-|<sink | | |
|
|
| | ----------- | ------------ | ------------ | |
|
|
| --------------- ---------------- |
|
|
---------------------------------------------------
|
|
|
|
Pipeline manages: fakesrc, queue
|
|
Thread manages: fakesink
|
|
Both forced to use cothreads.
|
|
|
|
First thing the thread does is try to pull from the queue. Because it's a chain function, it runs in
|
|
_chain_wrapper, which calls gst_pad_pull().
|