appsink, appsrc: skip set_callbacks APIs for introspection

https://bugzilla.gnome.org/show_bug.cgi?id=678301
This commit is contained in:
Evan Nemerson 2012-06-29 15:46:46 -07:00 committed by Tim-Philipp Müller
parent 9b3849db1c
commit a6fc7732c1
4 changed files with 4 additions and 4 deletions

View file

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

View file

@ -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.

View file

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

View file

@ -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.