mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
15 lines
485 B
Text
15 lines
485 B
Text
|
--src---------------------------- --sink----------------------------
|
||
|
| |
|
||
|
--srcpad--------| |--sinkpad-------
|
||
|
| pad_push() . . |
|
||
|
push() | ->chain . . ->chain | -> chain()
|
||
|
| . . |
|
||
|
----------------| |----------------
|
||
|
| |
|
||
|
|
||
|
chain() is the function provided by sink element
|
||
|
sinkpad->chain is a pointer to that function
|
||
|
srcpad->chain should be a copy of that pointer
|
||
|
pad_push() calls the function pointer srcpad->chain
|
||
|
push() is the function provided by the src element
|