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?
Copyright © 2021 Jogjafile Inc.
https://gstreamer.freedesktop.org/documentation/gstreamer/gstpad.html?gi-language=c#gst_pad_push_list
gst_pad_push_list()pushesGstBufferListdownstream. If the downstream pad has achain_listimplementation it will get the complete list - if not it will call thechainfunction with eachGstBufferindividually.