videoaggregator: Some more documentation fixes

This commit is contained in:
Sebastian Dröge 2018-05-06 16:49:43 +02:00
parent 67a495c324
commit cd49913283

View file

@ -81,8 +81,7 @@ struct _GstVideoAggregatorPad
* *
* @update_conversion_info: Called when either the input or output formats * @update_conversion_info: Called when either the input or output formats
* have changed. * have changed.
* @prepare_frame: Prepare the frame from the pad buffer (if any) * @prepare_frame: Prepare the frame from the pad buffer and sets it to prepared_frame
* and sets it to @aggregated_frame
* @clean_frame: clean the frame previously prepared in prepare_frame * @clean_frame: clean the frame previously prepared in prepare_frame
*/ */
struct _GstVideoAggregatorPadClass struct _GstVideoAggregatorPadClass
@ -211,8 +210,8 @@ struct _GstVideoAggregator
* the src pad caps before usage. Return %NULL to indicate failure. * the src pad caps before usage. Return %NULL to indicate failure.
* @aggregate_frames: Lets subclasses aggregate frames that are ready. Subclasses * @aggregate_frames: Lets subclasses aggregate frames that are ready. Subclasses
* should iterate the GstElement.sinkpads and use the already * should iterate the GstElement.sinkpads and use the already
* mapped #GstVideoFrame from GstVideoAggregatorPad.aggregated_frame * mapped #GstVideoFrame from gst_video_aggregator_pad_get_prepared_frame()
* or directly use the #GstBuffer from GstVideoAggregatorPad.buffer * or directly use the #GstBuffer from gst_video_aggregator_pad_get_current_buffer()
* if it needs to map the buffer in a special way. The result of the * if it needs to map the buffer in a special way. The result of the
* aggregation should land in @outbuffer. * aggregation should land in @outbuffer.
* @create_output_buffer: Optional. * @create_output_buffer: Optional.