Push GstBuffer list to next downstream element

447 views Asked by At

I have a GstBufferList *list inside the upstream element and wanted to pass the same to the downstream element for further processing.

Is there any way in Gstreamer to pass this Gstbufferlist to the next element?

1

There are 1 answers

15
Florian Zwoch On BEST ANSWER

https://gstreamer.freedesktop.org/documentation/gstreamer/gstpad.html?gi-language=c#gst_pad_push_list

gst_pad_push_list() pushes GstBufferList downstream. If the downstream pad has a chain_list implementation it will get the complete list - if not it will call the chain function with each GstBuffer individually.