summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-05-06 16:49:43 +0200
committerSebastian Dröge <sebastian@centricular.com>2018-05-06 16:49:57 +0200
commitcd499132830f4315f4ec6f09e1c45fd1678696cd (patch)
tree834d23fb34b2cc9a42aa26f7d1e8dea8b91699e5 /gst-libs
parent67a495c3247c5480af117bdd7ffe3ebaabb5284d (diff)
downloadgstreamer-plugins-bad-cd499132830f4315f4ec6f09e1c45fd1678696cd.tar.gz
videoaggregator: Some more documentation fixes
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/video/gstvideoaggregator.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/gst-libs/gst/video/gstvideoaggregator.h b/gst-libs/gst/video/gstvideoaggregator.h
index 6f6fccad3..6b53ce41c 100644
--- a/gst-libs/gst/video/gstvideoaggregator.h
+++ b/gst-libs/gst/video/gstvideoaggregator.h
@@ -81,8 +81,7 @@ struct _GstVideoAggregatorPad
*
* @update_conversion_info: Called when either the input or output formats
* have changed.
- * @prepare_frame: Prepare the frame from the pad buffer (if any)
- * and sets it to @aggregated_frame
+ * @prepare_frame: Prepare the frame from the pad buffer and sets it to prepared_frame
* @clean_frame: clean the frame previously prepared in prepare_frame
*/
struct _GstVideoAggregatorPadClass
@@ -211,8 +210,8 @@ struct _GstVideoAggregator
* the src pad caps before usage. Return %NULL to indicate failure.
* @aggregate_frames: Lets subclasses aggregate frames that are ready. Subclasses
* should iterate the GstElement.sinkpads and use the already
- * mapped #GstVideoFrame from GstVideoAggregatorPad.aggregated_frame
- * or directly use the #GstBuffer from GstVideoAggregatorPad.buffer
+ * mapped #GstVideoFrame from gst_video_aggregator_pad_get_prepared_frame()
+ * 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
* aggregation should land in @outbuffer.
* @create_output_buffer: Optional.