mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
metadata: remove empty setter/getter vmethod implementations
This commit is contained in:
parent
da3a8fe0fc
commit
1370d1f3d6
2 changed files with 0 additions and 43 deletions
|
@ -174,10 +174,6 @@ static void
|
||||||
gst_metadata_demux_init (GstMetadataDemux * filter,
|
gst_metadata_demux_init (GstMetadataDemux * filter,
|
||||||
GstMetadataDemuxClass * gclass);
|
GstMetadataDemuxClass * gclass);
|
||||||
|
|
||||||
static void gst_metadata_demux_dispose (GObject * object);
|
|
||||||
|
|
||||||
static void gst_metadata_demux_finalize (GObject * object);
|
|
||||||
|
|
||||||
static void gst_metadata_demux_set_property (GObject * object, guint prop_id,
|
static void gst_metadata_demux_set_property (GObject * object, guint prop_id,
|
||||||
const GValue * value, GParamSpec * pspec);
|
const GValue * value, GParamSpec * pspec);
|
||||||
|
|
||||||
|
@ -282,9 +278,6 @@ gst_metadata_demux_class_init (GstMetadataDemuxClass * klass)
|
||||||
|
|
||||||
metadata_parent_class = g_type_class_peek_parent (klass);
|
metadata_parent_class = g_type_class_peek_parent (klass);
|
||||||
|
|
||||||
gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_metadata_demux_dispose);
|
|
||||||
gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_metadata_demux_finalize);
|
|
||||||
|
|
||||||
gobject_class->set_property = gst_metadata_demux_set_property;
|
gobject_class->set_property = gst_metadata_demux_set_property;
|
||||||
gobject_class->get_property = gst_metadata_demux_get_property;
|
gobject_class->get_property = gst_metadata_demux_get_property;
|
||||||
|
|
||||||
|
@ -349,21 +342,6 @@ gst_metadata_demux_get_property (GObject * object, guint prop_id,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_metadata_demux_dispose (GObject * object)
|
|
||||||
{
|
|
||||||
G_OBJECT_CLASS (metadata_parent_class)->dispose (object);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_metadata_demux_finalize (GObject * object)
|
|
||||||
{
|
|
||||||
G_OBJECT_CLASS (metadata_parent_class)->finalize (object);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* GstBaseMetadata virtual functions implementation
|
* GstBaseMetadata virtual functions implementation
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -154,10 +154,6 @@ static void gst_metadata_mux_class_init (GstMetadataMuxClass * klass);
|
||||||
static void
|
static void
|
||||||
gst_metadata_mux_init (GstMetadataMux * filter, GstMetadataMuxClass * gclass);
|
gst_metadata_mux_init (GstMetadataMux * filter, GstMetadataMuxClass * gclass);
|
||||||
|
|
||||||
static void gst_metadata_mux_dispose (GObject * object);
|
|
||||||
|
|
||||||
static void gst_metadata_mux_finalize (GObject * object);
|
|
||||||
|
|
||||||
static void gst_metadata_mux_set_property (GObject * object, guint prop_id,
|
static void gst_metadata_mux_set_property (GObject * object, guint prop_id,
|
||||||
const GValue * value, GParamSpec * pspec);
|
const GValue * value, GParamSpec * pspec);
|
||||||
|
|
||||||
|
@ -273,9 +269,6 @@ gst_metadata_mux_class_init (GstMetadataMuxClass * klass)
|
||||||
|
|
||||||
metadata_parent_class = g_type_class_peek_parent (klass);
|
metadata_parent_class = g_type_class_peek_parent (klass);
|
||||||
|
|
||||||
gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_metadata_mux_dispose);
|
|
||||||
gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_metadata_mux_finalize);
|
|
||||||
|
|
||||||
gobject_class->set_property = gst_metadata_mux_set_property;
|
gobject_class->set_property = gst_metadata_mux_set_property;
|
||||||
gobject_class->get_property = gst_metadata_mux_get_property;
|
gobject_class->get_property = gst_metadata_mux_get_property;
|
||||||
|
|
||||||
|
@ -379,20 +372,6 @@ gst_metadata_mux_change_state (GstElement * element, GstStateChange transition)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_metadata_mux_dispose (GObject * object)
|
|
||||||
{
|
|
||||||
G_OBJECT_CLASS (metadata_parent_class)->dispose (object);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_metadata_mux_finalize (GObject * object)
|
|
||||||
{
|
|
||||||
G_OBJECT_CLASS (metadata_parent_class)->finalize (object);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* GstBaseMetadata virtual functions implementation
|
* GstBaseMetadata virtual functions implementation
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue