Top | ![]() |
![]() |
![]() |
![]() |
GstFlowReturn | (*GstCollectPadsFunction) () |
GstBuffer * | (*GstCollectPadsClipFunction) () |
void | (*GstCollectDataDestroyNotify) () |
GstCollectPads * | gst_collect_pads_new () |
void | gst_collect_pads_set_function () |
void | gst_collect_pads_set_clip_function () |
GstCollectData * | gst_collect_pads_add_pad () |
GstCollectData * | gst_collect_pads_add_pad_full () |
gboolean | gst_collect_pads_remove_pad () |
gboolean | gst_collect_pads_is_active () |
GstFlowReturn | gst_collect_pads_collect () |
GstFlowReturn | gst_collect_pads_collect_range () |
void | gst_collect_pads_start () |
void | gst_collect_pads_stop () |
void | gst_collect_pads_set_flushing () |
GstBuffer * | gst_collect_pads_peek () |
GstBuffer * | gst_collect_pads_pop () |
guint | gst_collect_pads_available () |
guint | gst_collect_pads_read () |
GstBuffer * | gst_collect_pads_read_buffer () |
GstBuffer * | gst_collect_pads_take_buffer () |
guint | gst_collect_pads_flush () |
Manages a set of pads that operate in collect mode. This means that control is given to the manager of this object when all pads have data.
Collectpads are created with gst_collect_pads_new()
. A callback should then
be installed with gst_collect_pads_set_function()
.
Pads are added to the collection with gst_collect_pads_add_pad()
/
gst_collect_pads_remove_pad()
. The pad
has to be a sinkpad. The chain and event functions of the pad are
overridden. The element_private of the pad is used to store
private information for the collectpads.
For each pad, data is queued in the _chain function or by performing a pull_range.
When data is queued on all pads, the callback function is called.
Data can be dequeued from the pad with the gst_collect_pads_pop()
method.
One can peek at the data with the gst_collect_pads_peek()
function.
These functions will return NULL if the pad received an EOS event. When all
pads return NULL from a gst_collect_pads_peek()
, the element can emit an EOS
event itself.
Data can also be dequeued in byte units using the gst_collect_pads_available()
,
gst_collect_pads_read()
and gst_collect_pads_flush()
calls.
Elements should call gst_collect_pads_start()
and gst_collect_pads_stop()
in
their state change functions to start and stop the processing of the collecpads.
The gst_collect_pads_stop()
call should be called before calling the parent
element state change function in the PAUSED_TO_READY state change to ensure
no pad is blocked and the element can finish streaming.
gst_collect_pads_collect()
and gst_collect_pads_collect_range()
can be used by
elements that start a GstTask to drive the collect_pads. This feature is however
not yet implemented.
Last reviewed on 2006-05-10 (0.10.6)
GstFlowReturn (*GstCollectPadsFunction) (GstCollectPads *pads
,gpointer user_data
);
A function that will be called when all pads have received data.
pads |
the GstCollectPads that triggered the callback |
|
user_data |
user data passed to |
GstBuffer * (*GstCollectPadsClipFunction) (GstCollectPads *pads
,GstCollectData *data
,GstBuffer *buffer
,gpointer user_data
);
A function that will be called when buffer
is received on the pad managed
by data
in the collecpad object pads
.
The function should use the segment of data
and the negotiated media type on
the pad to perform clipping of buffer
.
This function takes ownership of buffer
.
a GstBuffer that contains the clipped data of buffer
or NULL when
the buffer has been clipped completely.
Since 0.10.26
void
(*GstCollectDataDestroyNotify) (GstCollectData *data
);
A function that will be called when the GstCollectData will be freed. It is passed the pointer to the structure and should free any custom memory and resources allocated for it.
Since 0.10.12
GstCollectPads *
gst_collect_pads_new (void
);
Create a new instance of GstCollectPads.
MT safe.
void gst_collect_pads_set_function (GstCollectPads *pads
,GstCollectPadsFunction func
,gpointer user_data
);
Set the callback function and user data that will be called when all the pads added to the collection have buffers queued.
MT safe.
void gst_collect_pads_set_clip_function (GstCollectPads *pads
,GstCollectPadsClipFunction clipfunc
,gpointer user_data
);
Install a clipping function that is called right after a buffer is received
on a pad managed by pads
. See GstCollectPadsClipFunction for more info.
pads |
the collectspads to use |
|
clipfunc |
clip function to install |
|
user_data |
user data to pass to |
[closure] |
Since 0.10.26
GstCollectData * gst_collect_pads_add_pad (GstCollectPads *pads
,GstPad *pad
,guint size
);
Add a pad to the collection of collect pads. The pad has to be
a sinkpad. The refcount of the pad is incremented. Use
gst_collect_pads_remove_pad()
to remove the pad from the collection
again.
This function will override the chain and event functions of the pad along with the element_private data, which is used to store private information for the collectpads.
You specify a size for the returned GstCollectData structure so that you can use it to store additional information.
The pad will be automatically activated in push mode when pads
is
started.
This function calls gst_collect_pads_add_pad_full()
passing a value of NULL
for destroy_notify.
MT safe.
pads |
the collectspads to use |
|
pad |
the pad to add. |
[transfer none] |
size |
the size of the returned GstCollectData structure |
GstCollectData * gst_collect_pads_add_pad_full (GstCollectPads *pads
,GstPad *pad
,guint size
,GstCollectDataDestroyNotify destroy_notify
);
Add a pad to the collection of collect pads. The pad has to be
a sinkpad. The refcount of the pad is incremented. Use
gst_collect_pads_remove_pad()
to remove the pad from the collection
again.
You specify a size for the returned GstCollectData structure so that you can use it to store additional information.
You can also specify a GstCollectDataDestroyNotify that will be called just before the GstCollectData structure is freed. It is passed the pointer to the structure and should free any custom memory and resources allocated for it.
The pad will be automatically activated in push mode when pads
is
started.
MT safe.
pads |
the collectspads to use |
|
pad |
the pad to add. |
[transfer none] |
size |
the size of the returned GstCollectData structure |
|
destroy_notify |
function to be called before the returned GstCollectData structure is freed |
Since 0.10.12
gboolean gst_collect_pads_remove_pad (GstCollectPads *pads
,GstPad *pad
);
Remove a pad from the collection of collect pads. This function will also
free the GstCollectData and all the resources that were allocated with
gst_collect_pads_add_pad()
.
The pad will be deactivated automatically when pads
is stopped.
MT safe.
gboolean gst_collect_pads_is_active (GstCollectPads *pads
,GstPad *pad
);
Check if a pad is active.
This function is currently not implemented.
MT safe.
GstFlowReturn
gst_collect_pads_collect (GstCollectPads *pads
);
Collect data on all pads. This function is usually called from a GstTask function in an element.
This function is currently not implemented.
MT safe.
GstFlowReturn gst_collect_pads_collect_range (GstCollectPads *pads
,guint64 offset
,guint length
);
Collect data with offset
and length
on all pads. This function
is typically called in the getrange function of an element.
This function is currently not implemented.
MT safe.
void
gst_collect_pads_start (GstCollectPads *pads
);
Starts the processing of data in the collect_pads.
MT safe.
void
gst_collect_pads_stop (GstCollectPads *pads
);
Stops the processing of data in the collect_pads. this function will also unblock any blocking operations.
MT safe.
void gst_collect_pads_set_flushing (GstCollectPads *pads
,gboolean flushing
);
Change the flushing state of all the pads in the collection. No pad
is able to accept anymore data when flushing
is TRUE
. Calling this
function with flushing
FALSE
makes pads
accept data again.
MT safe.
Since 0.10.7.
GstBuffer * gst_collect_pads_peek (GstCollectPads *pads
,GstCollectData *data
);
Peek at the buffer currently queued in data
. This function
should be called with the pads
LOCK held, such as in the callback
handler.
MT safe.
GstBuffer * gst_collect_pads_pop (GstCollectPads *pads
,GstCollectData *data
);
Pop the buffer currently queued in data
. This function
should be called with the pads
LOCK held, such as in the callback
handler.
Free-function: gst_buffer_unref
MT safe.
guint
gst_collect_pads_available (GstCollectPads *pads
);
Query how much bytes can be read from each queued buffer. This means that the result of this call is the maximum number of bytes that can be read from each of the pads.
This function should be called with pads
LOCK held, such as
in the callback.
MT safe.
guint gst_collect_pads_read (GstCollectPads *pads
,GstCollectData *data
,guint8 **bytes
,guint size
);
Get a pointer in bytes
where size
bytes can be read from the
given pad data
.
This function should be called with pads
LOCK held, such as
in the callback.
MT safe.
GstBuffer * gst_collect_pads_read_buffer (GstCollectPads *pads
,GstCollectData *data
,guint size
);
Get a buffer of size
bytes from the given pad data
.
This function should be called with pads
LOCK held, such as in the callback.
Free-function: gst_buffer_unref
a GstBuffer. The size of the buffer can be less
that requested. A return of NULL signals that the pad is end-of-stream.
Unref the buffer with gst_buffer_unref()
after use.
MT safe.
[transfer full]
Since 0.10.18
GstBuffer * gst_collect_pads_take_buffer (GstCollectPads *pads
,GstCollectData *data
,guint size
);
Get a buffer of size
bytes from the given pad data
. Flushes the amount
of read bytes.
This function should be called with pads
LOCK held, such as in the callback.
Free-function: gst_buffer_unref
MT safe.
a GstBuffer. The size of the buffer can be less that requested. A return of NULL signals that the pad is end-of-stream. Unref the buffer after use.
[transfer full]
Since 0.10.18
guint gst_collect_pads_flush (GstCollectPads *pads
,GstCollectData *data
,guint size
);
Flush size
bytes from the pad data
.
This function should be called with pads
LOCK held, such as
in the callback.
MT safe.
struct GstCollectData { /* with LOCK of @collect */ GstCollectPads *collect; GstPad *pad; GstBuffer *buffer; guint pos; GstSegment segment; };
Structure used by the collect_pads.
GstCollectPads * |
owner GstCollectPads |
|
GstPad * |
GstPad managed by this data |
|
GstBuffer * |
currently queued buffer. |
|
position in the buffer |
||
GstSegment |
last segment received. |
struct GstCollectPads { GSList *data; /* list of CollectData items */ };
Collectpads object.
Note that data
is only reliable for iterating the list of GstCollectData
when inside the GstCollectPadsFunction callback.