Top |
GstAggregatorPadGstAggregatorPad — GstPad subclass for pads managed by GstAggregator |
Description
Pads managed by a GstAggregor subclass.
This class used to live in gst-plugins-bad and was moved to core.
Functions
gst_aggregator_pad_pop_buffer ()
GstBuffer *
gst_aggregator_pad_pop_buffer (GstAggregatorPad *pad
);
Steal the ref to the buffer currently queued in pad
.
gst_aggregator_pad_peek_buffer ()
GstBuffer *
gst_aggregator_pad_peek_buffer (GstAggregatorPad *pad
);
gst_aggregator_pad_drop_buffer ()
gboolean
gst_aggregator_pad_drop_buffer (GstAggregatorPad *pad
);
Drop the buffer currently queued in pad
.
Types and Values
struct GstAggregatorPad
struct GstAggregatorPad;
The implementation the GstPad to use with GstAggregator
struct GstAggregatorPadClass
struct GstAggregatorPadClass { GstPadClass parent_class; GstFlowReturn (*flush) (GstAggregatorPad * aggpad, GstAggregator * aggregator); gboolean (*skip_buffer) (GstAggregatorPad * aggpad, GstAggregator * aggregator, GstBuffer * buffer); };
Members
Optional Called when the pad has received a flush stop, this is the place to flush any information specific to the pad, it allows for individual pads to be flushed while others might not be. |
||
Optional
Called before input buffers are queued in the pad, return |