mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
ges: Mark some private symbols static
https://bugzilla.gnome.org/show_bug.cgi?id=639218
This commit is contained in:
parent
6864677dc2
commit
818368ffcf
2 changed files with 12 additions and 12 deletions
|
@ -82,7 +82,7 @@ static GstBinClass *parent_class;
|
|||
|
||||
static guint ges_timeline_signals[LAST_SIGNAL] = { 0 };
|
||||
|
||||
gint custom_find_track (TrackPrivate * tr_priv, GESTrack * track);
|
||||
static gint custom_find_track (TrackPrivate * tr_priv, GESTrack * track);
|
||||
static GstStateChangeReturn
|
||||
ges_timeline_change_state (GstElement * element, GstStateChange transition);
|
||||
static void
|
||||
|
@ -769,7 +769,7 @@ pad_removed_cb (GESTrack * track, GstPad * pad, TrackPrivate * tr_priv)
|
|||
tr_priv->pad = NULL;
|
||||
}
|
||||
|
||||
gint
|
||||
static gint
|
||||
custom_find_track (TrackPrivate * tr_priv, GESTrack * track)
|
||||
{
|
||||
if (tr_priv->track == track)
|
||||
|
|
|
@ -74,19 +74,19 @@ static GParamSpec *properties[PROP_LAST];
|
|||
static GstElement *ges_track_object_create_gnl_object_func (GESTrackObject *
|
||||
object);
|
||||
|
||||
void gnlobject_start_cb (GstElement * gnlobject, GParamSpec * arg
|
||||
static void gnlobject_start_cb (GstElement * gnlobject, GParamSpec * arg
|
||||
G_GNUC_UNUSED, GESTrackObject * obj);
|
||||
|
||||
void gnlobject_media_start_cb (GstElement * gnlobject, GParamSpec * arg
|
||||
static void gnlobject_media_start_cb (GstElement * gnlobject, GParamSpec * arg
|
||||
G_GNUC_UNUSED, GESTrackObject * obj);
|
||||
|
||||
void gnlobject_priority_cb (GstElement * gnlobject, GParamSpec * arg
|
||||
static void gnlobject_priority_cb (GstElement * gnlobject, GParamSpec * arg
|
||||
G_GNUC_UNUSED, GESTrackObject * obj);
|
||||
|
||||
void gnlobject_duration_cb (GstElement * gnlobject, GParamSpec * arg
|
||||
static void gnlobject_duration_cb (GstElement * gnlobject, GParamSpec * arg
|
||||
G_GNUC_UNUSED, GESTrackObject * obj);
|
||||
|
||||
void gnlobject_active_cb (GstElement * gnlobject, GParamSpec * arg
|
||||
static void gnlobject_active_cb (GstElement * gnlobject, GParamSpec * arg
|
||||
G_GNUC_UNUSED, GESTrackObject * obj);
|
||||
|
||||
static inline gboolean
|
||||
|
@ -436,7 +436,7 @@ ges_track_object_set_active (GESTrackObject * object, gboolean active)
|
|||
}
|
||||
|
||||
/* Callbacks from the GNonLin object */
|
||||
void
|
||||
static void
|
||||
gnlobject_start_cb (GstElement * gnlobject, GParamSpec * arg G_GNUC_UNUSED,
|
||||
GESTrackObject * obj)
|
||||
{
|
||||
|
@ -458,7 +458,7 @@ gnlobject_start_cb (GstElement * gnlobject, GParamSpec * arg G_GNUC_UNUSED,
|
|||
}
|
||||
|
||||
/* Callbacks from the GNonLin object */
|
||||
void
|
||||
static void
|
||||
gnlobject_media_start_cb (GstElement * gnlobject,
|
||||
GParamSpec * arg G_GNUC_UNUSED, GESTrackObject * obj)
|
||||
{
|
||||
|
@ -479,7 +479,7 @@ gnlobject_media_start_cb (GstElement * gnlobject,
|
|||
}
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
gnlobject_priority_cb (GstElement * gnlobject, GParamSpec * arg G_GNUC_UNUSED,
|
||||
GESTrackObject * obj)
|
||||
{
|
||||
|
@ -499,7 +499,7 @@ gnlobject_priority_cb (GstElement * gnlobject, GParamSpec * arg G_GNUC_UNUSED,
|
|||
}
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
gnlobject_duration_cb (GstElement * gnlobject, GParamSpec * arg G_GNUC_UNUSED,
|
||||
GESTrackObject * obj)
|
||||
{
|
||||
|
@ -520,7 +520,7 @@ gnlobject_duration_cb (GstElement * gnlobject, GParamSpec * arg G_GNUC_UNUSED,
|
|||
}
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
gnlobject_active_cb (GstElement * gnlobject, GParamSpec * arg G_GNUC_UNUSED,
|
||||
GESTrackObject * obj)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue