summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2020-12-31 17:25:40 +0100
committerTim-Philipp Müller <tim@centricular.com>2020-12-31 18:35:44 +0000
commita85b149f1029f5d04d3c4d3c3b59d22147a3990b (patch)
tree937fceb551bdb1161634940b7497e85bb6298aa9
parent8149de131c3d25775f13fb543e892bc4d8f65503 (diff)
downloadgstreamer-plugins-base-a85b149f1029f5d04d3c4d3c3b59d22147a3990b.tar.gz
appsrc: fix signal documentation
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/993>
-rw-r--r--gst-libs/gst/app/gstappsrc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gst-libs/gst/app/gstappsrc.c b/gst-libs/gst/app/gstappsrc.c
index f5bf2376f..a6f531d38 100644
--- a/gst-libs/gst/app/gstappsrc.c
+++ b/gst-libs/gst/app/gstappsrc.c
@@ -468,7 +468,7 @@ gst_app_src_class_init (GstAppSrcClass * klass)
G_PARAM_STATIC_STRINGS));
/**
- * GstAppSrc:need-data:
+ * GstAppSrc::need-data:
* @appsrc: the appsrc element that emitted the signal
* @length: the amount of bytes needed.
*
@@ -487,7 +487,7 @@ gst_app_src_class_init (GstAppSrcClass * klass)
NULL, NULL, NULL, G_TYPE_NONE, 1, G_TYPE_UINT);
/**
- * GstAppSrc:enough-data:
+ * GstAppSrc::enough-data:
* @appsrc: the appsrc element that emitted the signal
*
* Signal that the source has enough data. It is recommended that the
@@ -500,7 +500,7 @@ gst_app_src_class_init (GstAppSrcClass * klass)
NULL, NULL, NULL, G_TYPE_NONE, 0, G_TYPE_NONE);
/**
- * GstAppSrc:seek-data:
+ * GstAppSrc::seek-data:
* @appsrc: the appsrc element that emitted the signal
* @offset: the offset to seek to
*
@@ -516,7 +516,7 @@ gst_app_src_class_init (GstAppSrcClass * klass)
NULL, NULL, NULL, G_TYPE_BOOLEAN, 1, G_TYPE_UINT64);
/**
- * GstAppSrc:push-buffer:
+ * GstAppSrc::push-buffer:
* @appsrc: the appsrc
* @buffer: a buffer to push
*
@@ -534,7 +534,7 @@ gst_app_src_class_init (GstAppSrcClass * klass)
GST_TYPE_FLOW_RETURN, 1, GST_TYPE_BUFFER);
/**
- * GstAppSrc:push-buffer-list:
+ * GstAppSrc::push-buffer-list:
* @appsrc: the appsrc
* @buffer_list: a buffer list to push
*
@@ -555,7 +555,7 @@ gst_app_src_class_init (GstAppSrcClass * klass)
GST_TYPE_FLOW_RETURN, 1, GST_TYPE_BUFFER_LIST);
/**
- * GstAppSrc:push-sample:
+ * GstAppSrc::push-sample:
* @appsrc: the appsrc
* @sample: a sample from which extract buffer to push
*
@@ -581,7 +581,7 @@ gst_app_src_class_init (GstAppSrcClass * klass)
/**
- * GstAppSrc:end-of-stream:
+ * GstAppSrc::end-of-stream:
* @appsrc: the appsrc
*
* Notify @appsrc that no more buffer are available.