mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
GESTimelinePipeline: Remove unused code
This commit is contained in:
parent
e795bd056d
commit
2d7962bf93
1 changed files with 0 additions and 27 deletions
|
@ -47,31 +47,7 @@ G_DEFINE_TYPE (GESTimelinePipeline, ges_timeline_pipeline, GST_TYPE_PIPELINE);
|
||||||
|
|
||||||
static GstStateChangeReturn ges_timeline_pipeline_change_state (GstElement *
|
static GstStateChangeReturn ges_timeline_pipeline_change_state (GstElement *
|
||||||
element, GstStateChange transition);
|
element, GstStateChange transition);
|
||||||
static void
|
|
||||||
ges_timeline_pipeline_get_property (GObject * object,
|
|
||||||
guint property_id, GValue * value, GParamSpec * pspec)
|
|
||||||
{
|
|
||||||
switch (property_id) {
|
|
||||||
default:
|
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
ges_timeline_pipeline_set_property (GObject * object, guint property_id,
|
|
||||||
const GValue * value, GParamSpec * pspec)
|
|
||||||
{
|
|
||||||
switch (property_id) {
|
|
||||||
default:
|
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
ges_timeline_pipeline_dispose (GObject * object)
|
|
||||||
{
|
|
||||||
G_OBJECT_CLASS (ges_timeline_pipeline_parent_class)->dispose (object);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
ges_timeline_pipeline_finalize (GObject * object)
|
ges_timeline_pipeline_finalize (GObject * object)
|
||||||
|
@ -92,9 +68,6 @@ ges_timeline_pipeline_class_init (GESTimelinePipelineClass * klass)
|
||||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||||
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
||||||
|
|
||||||
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;
|
|
||||||
object_class->finalize = ges_timeline_pipeline_finalize;
|
object_class->finalize = ges_timeline_pipeline_finalize;
|
||||||
|
|
||||||
element_class->change_state =
|
element_class->change_state =
|
||||||
|
|
Loading…
Reference in a new issue