mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
Made gst_pad_eos_func a non-static function
Original commit message from CVS: Made gst_pad_eos_func a non-static function
This commit is contained in:
parent
7411cfe17e
commit
45f05bf6ed
2 changed files with 3 additions and 4 deletions
|
@ -52,7 +52,6 @@ static void gst_pad_get_arg (GtkObject *object,GtkArg *arg,guint id);
|
|||
static void gst_pad_real_destroy (GtkObject *object);
|
||||
|
||||
static void gst_pad_push_func (GstPad *pad, GstBuffer *buf);
|
||||
static gboolean gst_pad_eos_func (GstPad *pad);
|
||||
|
||||
static GstObject *pad_parent_class = NULL;
|
||||
static guint gst_pad_signals[LAST_SIGNAL] = { 0 };
|
||||
|
@ -1044,7 +1043,7 @@ gst_padtemplate_load_thyself (xmlNodePtr parent)
|
|||
}
|
||||
|
||||
|
||||
static gboolean
|
||||
gboolean
|
||||
gst_pad_eos_func(GstPad *pad)
|
||||
{
|
||||
GstElement *element;
|
||||
|
|
|
@ -98,13 +98,12 @@ struct _GstPad {
|
|||
GstPadGetFunction getfunc;
|
||||
GstPadGetRegionFunction getregionfunc;
|
||||
GstPadQoSFunction qosfunc;
|
||||
GstPadEOSFunction eosfunc;
|
||||
|
||||
GstPadPushFunction pushfunc;
|
||||
GstPadPullFunction pullfunc;
|
||||
GstPadPullRegionFunction pullregionfunc;
|
||||
|
||||
GstPadEOSFunction eosfunc;
|
||||
|
||||
GstObject *parent;
|
||||
GList *ghostparents;
|
||||
|
||||
|
@ -214,6 +213,7 @@ GstBuffer* gst_pad_pull_region (GstPad *pad, gulong offset, gulong size);
|
|||
#define gst_pad_eos(pad) ((pad)->peer->eosfunc((pad)->peer))
|
||||
gboolean gst_pad_set_eos (GstPad *pad);
|
||||
|
||||
gboolean gst_pad_eos_func (GstPad *pad);
|
||||
void gst_pad_handle_qos (GstPad *pad, glong qos_message);
|
||||
|
||||
xmlNodePtr gst_pad_save_thyself (GstPad *pad, xmlNodePtr parent);
|
||||
|
|
Loading…
Reference in a new issue