basesink: Add missing annotations

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1392>
This commit is contained in:
Corentin Noël 2021-11-26 10:13:08 +01:00 committed by GStreamer Marge Bot
parent 7b1958c8de
commit a445ff1607

View file

@ -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);