From a6fc7732c1cfbe72796d56953268436d73823943 Mon Sep 17 00:00:00 2001 From: Evan Nemerson Date: Fri, 29 Jun 2012 15:46:46 -0700 Subject: [PATCH] appsink, appsrc: skip set_callbacks APIs for introspection https://bugzilla.gnome.org/show_bug.cgi?id=678301 --- gst-libs/gst/app/gstappsink.c | 2 +- gst-libs/gst/app/gstappsink.h | 2 +- gst-libs/gst/app/gstappsrc.c | 2 +- gst-libs/gst/app/gstappsrc.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gst-libs/gst/app/gstappsink.c b/gst-libs/gst/app/gstappsink.c index e60e245f1f..dd8a6ecaa7 100644 --- a/gst-libs/gst/app/gstappsink.c +++ b/gst-libs/gst/app/gstappsink.c @@ -1214,7 +1214,7 @@ not_started: } /** - * gst_app_sink_set_callbacks: + * gst_app_sink_set_callbacks: (skip) * @appsink: a #GstAppSink * @callbacks: the callbacks * @user_data: a user_data argument for the callbacks diff --git a/gst-libs/gst/app/gstappsink.h b/gst-libs/gst/app/gstappsink.h index 452e3686d8..3397a09c64 100644 --- a/gst-libs/gst/app/gstappsink.h +++ b/gst-libs/gst/app/gstappsink.h @@ -43,7 +43,7 @@ typedef struct _GstAppSinkClass GstAppSinkClass; typedef struct _GstAppSinkPrivate GstAppSinkPrivate; /** - * GstAppSinkCallbacks: + * GstAppSinkCallbacks: (skip) * @eos: Called when the end-of-stream has been reached. This callback * is called from the steaming thread. * @new_preroll: Called when a new preroll sample is available. diff --git a/gst-libs/gst/app/gstappsrc.c b/gst-libs/gst/app/gstappsrc.c index e4ee08f71e..d0850f572a 100644 --- a/gst-libs/gst/app/gstappsrc.c +++ b/gst-libs/gst/app/gstappsrc.c @@ -1572,7 +1572,7 @@ flushing: } /** - * gst_app_src_set_callbacks: + * gst_app_src_set_callbacks: (skip) * @appsrc: a #GstAppSrc * @callbacks: the callbacks * @user_data: a user_data argument for the callbacks diff --git a/gst-libs/gst/app/gstappsrc.h b/gst-libs/gst/app/gstappsrc.h index 3cc9447cad..417a56d934 100644 --- a/gst-libs/gst/app/gstappsrc.h +++ b/gst-libs/gst/app/gstappsrc.h @@ -43,7 +43,7 @@ typedef struct _GstAppSrcClass GstAppSrcClass; typedef struct _GstAppSrcPrivate GstAppSrcPrivate; /** - * GstAppSrcCallbacks: + * GstAppSrcCallbacks: (skip) * @need_data: Called when the appsrc needs more data. A buffer or EOS should be * pushed to appsrc from this thread or another thread. @length is just a hint * and when it is set to -1, any number of bytes can be pushed into @appsrc.