mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
aggregator: documentaion fixes
Fix typos and remove params docs, where the param was moved.
This commit is contained in:
parent
820cf44f7d
commit
41a032470e
2 changed files with 4 additions and 5 deletions
|
@ -32,7 +32,7 @@
|
|||
* * Base class for mixers and muxers. Subclasses should at least implement
|
||||
* 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
|
||||
* gst_aggregator_pad_get_buffer () method, and take ownership of it
|
||||
|
|
|
@ -60,7 +60,6 @@ typedef struct _GstAggregatorPadPrivate GstAggregatorPadPrivate;
|
|||
|
||||
/**
|
||||
* GstAggregatorPad:
|
||||
* @buffer: currently queued buffer.
|
||||
* @segment: last segment received.
|
||||
*
|
||||
* The implementation the GstPad to use with #GstAggregator
|
||||
|
@ -157,7 +156,7 @@ struct _GstAggregator
|
|||
* The type of the pads that should be created when
|
||||
* GstElement.request_new_pad is called.
|
||||
* @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
|
||||
* #GstAggregatorPad->flush.
|
||||
* @clip: Optional.
|
||||
|
@ -165,7 +164,7 @@ struct _GstAggregator
|
|||
* clipping it and translating it to the current segment falls
|
||||
* on the subclass. The function should use the segment of data
|
||||
* 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
|
||||
* if the buffer should be dropped.
|
||||
* @sink_event: Optional.
|
||||
|
@ -228,7 +227,7 @@ struct _GstAggregator
|
|||
*
|
||||
* 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.
|
||||
*/
|
||||
struct _GstAggregatorClass {
|
||||
|
|
Loading…
Reference in a new issue