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?
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?
https://gstreamer.freedesktop.org/documentation/gstreamer/gstpad.html?gi-language=c#gst_pad_push_list
gst_pad_push_list()
pushesGstBufferList
downstream. If the downstream pad has achain_list
implementation it will get the complete list - if not it will call thechain
function with eachGstBuffer
individually.