From 0d96487879616dcaddccbaa60619fa43880d343d Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Mon, 8 Jun 2015 19:33:03 +1000 Subject: [PATCH] basetransform: Add Since markers for new vfuncs Add Since: 1.6 markers for the new submit_input_buffer() and generate_output() vfuncs --- libs/gst/base/gstbasetransform.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/gst/base/gstbasetransform.h b/libs/gst/base/gstbasetransform.h index bb42c19293..11906823a9 100644 --- a/libs/gst/base/gstbasetransform.h +++ b/libs/gst/base/gstbasetransform.h @@ -199,7 +199,7 @@ struct _GstBaseTransform { * member variable. If the buffer is dropped due to QoS, it returns * GST_BASE_TRANSFORM_FLOW_DROPPED. If this input buffer is not * contiguous with any previous input buffer, then @is_discont - * is set to #TRUE. + * is set to #TRUE. (Since: 1.6) * @generate_output: Called after each new input buffer is submitted repeatedly * until it either generates an error or fails to generate an output * buffer. The default implementation takes the contents of the @@ -208,7 +208,7 @@ struct _GstBaseTransform { * calls either @transform or @transform_ip. Elements that don't * do 1-to-1 transformations on input to output buffers can either * return GST_BASE_TRANSFORM_FLOW_DROPPED or simply not generate - * an output buffer until they are ready to do so. + * an output buffer until they are ready to do so. (Since: 1.6) * * Subclasses can override any of the available virtual methods or not, as * needed. At minimum either @transform or @transform_ip need to be overridden.