mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
ges: Remove unused private structures. We'll re-add on a per-case basis.
This commit is contained in:
parent
12777c8532
commit
fa56e7f0cb
9 changed files with 0 additions and 107 deletions
|
@ -23,16 +23,6 @@
|
|||
G_DEFINE_TYPE (GESSimpleTimelineLayer, ges_simple_timeline_layer,
|
||||
GES_TYPE_TIMELINE_LAYER);
|
||||
|
||||
#define GET_PRIVATE(o) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((o), GES_TYPE_SIMPLE_TIMELINE_LAYER, GESSimpleTimelineLayerPrivate));
|
||||
|
||||
typedef struct _GESSimpleTimelineLayerPrivate GESSimpleTimelineLayerPrivate;
|
||||
|
||||
struct _GESSimpleTimelineLayerPrivate
|
||||
{
|
||||
int dummy;
|
||||
};
|
||||
|
||||
static void
|
||||
ges_simple_timeline_layer_get_property (GObject * object,
|
||||
guint property_id, GValue * value, GParamSpec * pspec)
|
||||
|
@ -70,8 +60,6 @@ ges_simple_timeline_layer_class_init (GESSimpleTimelineLayerClass * klass)
|
|||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
g_type_class_add_private (klass, sizeof (GESSimpleTimelineLayerPrivate));
|
||||
|
||||
object_class->get_property = ges_simple_timeline_layer_get_property;
|
||||
object_class->set_property = ges_simple_timeline_layer_set_property;
|
||||
object_class->dispose = ges_simple_timeline_layer_dispose;
|
||||
|
|
|
@ -30,16 +30,6 @@
|
|||
|
||||
G_DEFINE_TYPE (GESTimelineLayer, ges_timeline_layer, G_TYPE_OBJECT);
|
||||
|
||||
#define GET_PRIVATE(o) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((o), GES_TYPE_TIMELINE_LAYER, GESTimelineLayerPrivate));
|
||||
|
||||
typedef struct _GESTimelineLayerPrivate GESTimelineLayerPrivate;
|
||||
|
||||
struct _GESTimelineLayerPrivate
|
||||
{
|
||||
int dummy;
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
OBJECT_ADDED,
|
||||
|
@ -86,8 +76,6 @@ ges_timeline_layer_class_init (GESTimelineLayerClass * klass)
|
|||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
g_type_class_add_private (klass, sizeof (GESTimelineLayerPrivate));
|
||||
|
||||
object_class->get_property = ges_timeline_layer_get_property;
|
||||
object_class->set_property = ges_timeline_layer_set_property;
|
||||
object_class->dispose = ges_timeline_layer_dispose;
|
||||
|
|
|
@ -32,16 +32,6 @@
|
|||
|
||||
G_DEFINE_TYPE (GESTimelineObject, ges_timeline_object, G_TYPE_OBJECT);
|
||||
|
||||
#define GET_PRIVATE(o) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((o), GES_TYPE_TIMELINE_OBJECT, GESTimelineObjectPrivate));
|
||||
|
||||
typedef struct _GESTimelineObjectPrivate GESTimelineObjectPrivate;
|
||||
|
||||
struct _GESTimelineObjectPrivate
|
||||
{
|
||||
int dummy;
|
||||
};
|
||||
|
||||
static void
|
||||
ges_timeline_object_get_property (GObject * object, guint property_id,
|
||||
GValue * value, GParamSpec * pspec)
|
||||
|
@ -79,8 +69,6 @@ ges_timeline_object_class_init (GESTimelineObjectClass * klass)
|
|||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
g_type_class_add_private (klass, sizeof (GESTimelineObjectPrivate));
|
||||
|
||||
object_class->get_property = ges_timeline_object_get_property;
|
||||
object_class->set_property = ges_timeline_object_set_property;
|
||||
object_class->dispose = ges_timeline_object_dispose;
|
||||
|
|
|
@ -26,16 +26,6 @@
|
|||
|
||||
G_DEFINE_TYPE (GESTimelinePipeline, ges_timeline_pipeline, GST_TYPE_PIPELINE);
|
||||
|
||||
#define GET_PRIVATE(o) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((o), GEST_TYPE_TIMELINE_PIPELINE, GESTimelinePipelinePrivate));
|
||||
|
||||
typedef struct _GESTimelinePipelinePrivate GESTimelinePipelinePrivate;
|
||||
|
||||
struct _GESTimelinePipelinePrivate
|
||||
{
|
||||
int dummy;
|
||||
};
|
||||
|
||||
static void
|
||||
ges_timeline_pipeline_get_property (GObject * object,
|
||||
guint property_id, GValue * value, GParamSpec * pspec)
|
||||
|
@ -73,8 +63,6 @@ ges_timeline_pipeline_class_init (GESTimelinePipelineClass * klass)
|
|||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
g_type_class_add_private (klass, sizeof (GESTimelinePipelinePrivate));
|
||||
|
||||
object_class->get_property = ges_timeline_pipeline_get_property;
|
||||
object_class->set_property = ges_timeline_pipeline_set_property;
|
||||
object_class->dispose = ges_timeline_pipeline_dispose;
|
||||
|
|
|
@ -24,16 +24,6 @@
|
|||
G_DEFINE_TYPE (GESTimelineSource, ges_timeline_source,
|
||||
GES_TYPE_TIMELINE_OBJECT);
|
||||
|
||||
#define GET_PRIVATE(o) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((o), GES_TYPE_TIMELINE_SOURCE, GESTimelineSourcePrivate));
|
||||
|
||||
typedef struct _GESTimelineSourcePrivate GESTimelineSourcePrivate;
|
||||
|
||||
struct _GESTimelineSourcePrivate
|
||||
{
|
||||
int dummy;
|
||||
};
|
||||
|
||||
static void
|
||||
ges_timeline_source_get_property (GObject * object, guint property_id,
|
||||
GValue * value, GParamSpec * pspec)
|
||||
|
@ -71,8 +61,6 @@ ges_timeline_source_class_init (GESTimelineSourceClass * klass)
|
|||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
g_type_class_add_private (klass, sizeof (GESTimelineSourcePrivate));
|
||||
|
||||
object_class->get_property = ges_timeline_source_get_property;
|
||||
object_class->set_property = ges_timeline_source_set_property;
|
||||
object_class->dispose = ges_timeline_source_dispose;
|
||||
|
|
|
@ -23,16 +23,6 @@
|
|||
G_DEFINE_TYPE (GESTimelineTransition, ges_timeline_transition,
|
||||
GES_TYPE_TIMELINE_OBJECT);
|
||||
|
||||
#define GET_PRIVATE(o) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((o), GES_TYPE_TIMELINE_TRANSITION, GESTimelineTransitionPrivate));
|
||||
|
||||
typedef struct _GESTimelineTransitionPrivate GESTimelineTransitionPrivate;
|
||||
|
||||
struct _GESTimelineTransitionPrivate
|
||||
{
|
||||
int dummy;
|
||||
};
|
||||
|
||||
static void
|
||||
ges_timeline_transition_get_property (GObject * object,
|
||||
guint property_id, GValue * value, GParamSpec * pspec)
|
||||
|
@ -70,8 +60,6 @@ ges_timeline_transition_class_init (GESTimelineTransitionClass * klass)
|
|||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
g_type_class_add_private (klass, sizeof (GESTimelineTransitionPrivate));
|
||||
|
||||
object_class->get_property = ges_timeline_transition_get_property;
|
||||
object_class->set_property = ges_timeline_transition_set_property;
|
||||
object_class->dispose = ges_timeline_transition_dispose;
|
||||
|
|
|
@ -36,15 +36,6 @@
|
|||
|
||||
G_DEFINE_TYPE (GESTimeline, ges_timeline, GST_TYPE_BIN);
|
||||
|
||||
#define GET_PRIVATE(o) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((o), GES_TYPE_TIMELINE, GESTimelinePrivate));
|
||||
|
||||
typedef struct _GESTimelinePrivate GESTimelinePrivate;
|
||||
|
||||
struct _GESTimelinePrivate
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
|
@ -94,8 +85,6 @@ ges_timeline_class_init (GESTimelineClass * klass)
|
|||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
g_type_class_add_private (klass, sizeof (GESTimelinePrivate));
|
||||
|
||||
object_class->get_property = ges_timeline_get_property;
|
||||
object_class->set_property = ges_timeline_set_property;
|
||||
object_class->dispose = ges_timeline_dispose;
|
||||
|
|
|
@ -37,9 +37,6 @@ static GQuark _priority_quark;
|
|||
G_DEFINE_TYPE_WITH_CODE (GESTrackObject, ges_track_object, G_TYPE_OBJECT,
|
||||
_do_init);
|
||||
|
||||
#define GET_PRIVATE(o) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((o), GES_TYPE_TRACK_OBJECT, GESTrackObjectPrivate));
|
||||
|
||||
enum
|
||||
{
|
||||
PROP_0,
|
||||
|
@ -49,13 +46,6 @@ enum
|
|||
PROP_PRIORITY,
|
||||
};
|
||||
|
||||
typedef struct _GESTrackObjectPrivate GESTrackObjectPrivate;
|
||||
|
||||
struct _GESTrackObjectPrivate
|
||||
{
|
||||
int dummy;
|
||||
};
|
||||
|
||||
static gboolean
|
||||
ges_track_object_create_gnl_object_func (GESTrackObject * object);
|
||||
|
||||
|
@ -124,8 +114,6 @@ ges_track_object_class_init (GESTrackObjectClass * klass)
|
|||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
g_type_class_add_private (klass, sizeof (GESTrackObjectPrivate));
|
||||
|
||||
object_class->get_property = ges_track_object_get_property;
|
||||
object_class->set_property = ges_track_object_set_property;
|
||||
object_class->dispose = ges_track_object_dispose;
|
||||
|
|
|
@ -31,16 +31,6 @@
|
|||
|
||||
G_DEFINE_TYPE (GESTrack, ges_track, GST_TYPE_BIN);
|
||||
|
||||
#define GET_PRIVATE(o) \
|
||||
(G_TYPE_INSTANCE_GET_PRIVATE ((o), GES_TYPE_TRACK, GESTrackPrivate));
|
||||
|
||||
typedef struct _GESTrackPrivate GESTrackPrivate;
|
||||
|
||||
struct _GESTrackPrivate
|
||||
{
|
||||
int dummy;
|
||||
};
|
||||
|
||||
static void
|
||||
ges_track_get_property (GObject * object, guint property_id,
|
||||
GValue * value, GParamSpec * pspec)
|
||||
|
@ -78,8 +68,6 @@ ges_track_class_init (GESTrackClass * klass)
|
|||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
g_type_class_add_private (klass, sizeof (GESTrackPrivate));
|
||||
|
||||
object_class->get_property = ges_track_get_property;
|
||||
object_class->set_property = ges_track_set_property;
|
||||
object_class->dispose = ges_track_dispose;
|
||||
|
|
Loading…
Reference in a new issue