mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
aggregator: documentaion fixes
Fix typos and remove params docs, where the param was moved.
This commit is contained in:
parent
ab4dd3f577
commit
caafb59af5
2 changed files with 4 additions and 5 deletions
|
@ -32,7 +32,7 @@
|
||||||
* * Base class for mixers and muxers. Subclasses should at least implement
|
* * Base class for mixers and muxers. Subclasses should at least implement
|
||||||
* the #GstAggregatorClass.aggregate() virtual method.
|
* the #GstAggregatorClass.aggregate() virtual method.
|
||||||
*
|
*
|
||||||
* * When data is queued on all pads, tha aggregate vmethod is called.
|
* * When data is queued on all pads, the aggregate vmethod is called.
|
||||||
*
|
*
|
||||||
* * One can peek at the data on any given GstAggregatorPad with the
|
* * One can peek at the data on any given GstAggregatorPad with the
|
||||||
* gst_aggregator_pad_get_buffer () method, and take ownership of it
|
* gst_aggregator_pad_get_buffer () method, and take ownership of it
|
||||||
|
|
|
@ -60,7 +60,6 @@ typedef struct _GstAggregatorPadPrivate GstAggregatorPadPrivate;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstAggregatorPad:
|
* GstAggregatorPad:
|
||||||
* @buffer: currently queued buffer.
|
|
||||||
* @segment: last segment received.
|
* @segment: last segment received.
|
||||||
*
|
*
|
||||||
* The implementation the GstPad to use with #GstAggregator
|
* The implementation the GstPad to use with #GstAggregator
|
||||||
|
@ -157,7 +156,7 @@ struct _GstAggregator
|
||||||
* The type of the pads that should be created when
|
* The type of the pads that should be created when
|
||||||
* GstElement.request_new_pad is called.
|
* GstElement.request_new_pad is called.
|
||||||
* @flush: Optional.
|
* @flush: Optional.
|
||||||
* Called after a succesful flushing seek, once all the flush
|
* Called after a successful flushing seek, once all the flush
|
||||||
* stops have been received. Flush pad-specific data in
|
* stops have been received. Flush pad-specific data in
|
||||||
* #GstAggregatorPad->flush.
|
* #GstAggregatorPad->flush.
|
||||||
* @clip: Optional.
|
* @clip: Optional.
|
||||||
|
@ -165,7 +164,7 @@ struct _GstAggregator
|
||||||
* clipping it and translating it to the current segment falls
|
* clipping it and translating it to the current segment falls
|
||||||
* on the subclass. The function should use the segment of data
|
* on the subclass. The function should use the segment of data
|
||||||
* and the negotiated media type on the pad to perform
|
* and the negotiated media type on the pad to perform
|
||||||
* clipping of inbuffer. This function takes ownership of
|
* clipping of input buffer. This function takes ownership of
|
||||||
* buf and should output a buffer or return NULL in
|
* buf and should output a buffer or return NULL in
|
||||||
* if the buffer should be dropped.
|
* if the buffer should be dropped.
|
||||||
* @sink_event: Optional.
|
* @sink_event: Optional.
|
||||||
|
@ -228,7 +227,7 @@ struct _GstAggregator
|
||||||
*
|
*
|
||||||
* It will also take care of event ordering (stream-start, segment, eos).
|
* It will also take care of event ordering (stream-start, segment, eos).
|
||||||
*
|
*
|
||||||
* Basically, a basic implementation will override @aggregate, and call
|
* Basically, a simple implementation will override @aggregate, and call
|
||||||
* _finish_buffer from inside that function.
|
* _finish_buffer from inside that function.
|
||||||
*/
|
*/
|
||||||
struct _GstAggregatorClass {
|
struct _GstAggregatorClass {
|
||||||
|
|
Loading…
Reference in a new issue