flowcombiner: Fix version for ref and unref functions
authorfengalin <fengalin@free.fr>
Tue, 10 Oct 2017 13:53:38 +0000 (15:53 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Tue, 10 Oct 2017 15:39:26 +0000 (18:39 +0300)
The functions were introduced in version 1.12.1, GstFlowCombiner was
introduced in 1.4.

https://bugzilla.gnome.org/show_bug.cgi?id=788778

libs/gst/base/gstflowcombiner.c

index 09639b9..b8ade06 100644 (file)
@@ -118,6 +118,16 @@ gst_flow_combiner_free (GstFlowCombiner * combiner)
   gst_flow_combiner_unref (combiner);
 }
 
+/**
+ * gst_flow_combiner_ref:
+ * @combiner: the #GstFlowCombiner to add a reference to.
+ *
+ * Increments the reference count on the #GstFlowCombiner.
+ *
+ * Returns: the #GstFlowCombiner.
+ *
+ * Since: 1.12.1
+ */
 GstFlowCombiner *
 gst_flow_combiner_ref (GstFlowCombiner * combiner)
 {
@@ -128,6 +138,14 @@ gst_flow_combiner_ref (GstFlowCombiner * combiner)
   return combiner;
 }
 
+/**
+ * gst_flow_combiner_unref:
+ * @combiner: the #GstFlowCombiner to unreference.
+ *
+ * Decrements the reference count on the #GstFlowCombiner.
+ *
+ * Since: 1.12.1
+ */
 void
 gst_flow_combiner_unref (GstFlowCombiner * combiner)
 {