From a445ff1607e2f3f6c2681863f3407cbdba5d3b9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20No=C3=ABl?= Date: Fri, 26 Nov 2021 10:13:08 +0100 Subject: [PATCH] basesink: Add missing annotations Part-of: --- subprojects/gstreamer/libs/gst/base/gstbasesink.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/subprojects/gstreamer/libs/gst/base/gstbasesink.h b/subprojects/gstreamer/libs/gst/base/gstbasesink.h index 3745fa20ab..e68560c6f5 100644 --- a/subprojects/gstreamer/libs/gst/base/gstbasesink.h +++ b/subprojects/gstreamer/libs/gst/base/gstbasesink.h @@ -166,7 +166,13 @@ struct _GstBaseSinkClass { /* start or stop a pulling thread */ gboolean (*activate_pull)(GstBaseSink *sink, gboolean active); - /* get the start and end times for syncing on this buffer */ + /** + * GstBaseSink::get_times: + * @start: (out): the start #GstClockTime + * @end: (out): the end #GstClockTime + * + * Get the start and end times for syncing on this buffer. + */ void (*get_times) (GstBaseSink *sink, GstBuffer *buffer, GstClockTime *start, GstClockTime *end);