From 4cdc83fe5d9365a5e459fa87b22440c346380b9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 23 Oct 2015 18:58:41 +0300 Subject: [PATCH] mxfmux: Remove empty set/get_property() We can add them again if we ever add properties. --- gst/mxf/mxfmux.c | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/gst/mxf/mxfmux.c b/gst/mxf/mxfmux.c index 21c37cf6a6..8c4bf2d579 100644 --- a/gst/mxf/mxfmux.c +++ b/gst/mxf/mxfmux.c @@ -121,10 +121,6 @@ enum G_DEFINE_TYPE (GstMXFMux, gst_mxf_mux, GST_TYPE_AGGREGATOR); static void gst_mxf_mux_finalize (GObject * object); -static void gst_mxf_mux_set_property (GObject * object, - guint prop_id, const GValue * value, GParamSpec * pspec); -static void gst_mxf_mux_get_property (GObject * object, - guint prop_id, GValue * value, GParamSpec * pspec); static GstFlowReturn gst_mxf_mux_aggregate (GstAggregator * aggregator, gboolean timeout); @@ -166,8 +162,6 @@ gst_mxf_mux_class_init (GstMXFMuxClass * klass) gstaggregator_class = (GstAggregatorClass *) klass; gobject_class->finalize = gst_mxf_mux_finalize; - gobject_class->set_property = gst_mxf_mux_set_property; - gobject_class->get_property = gst_mxf_mux_get_property; gstaggregator_class->create_new_pad = GST_DEBUG_FUNCPTR (gst_mxf_mux_create_new_pad); @@ -216,32 +210,6 @@ gst_mxf_mux_finalize (GObject * object) G_OBJECT_CLASS (parent_class)->finalize (object); } -static void -gst_mxf_mux_set_property (GObject * object, - guint prop_id, const GValue * value, GParamSpec * pspec) -{ - //GstMXFMux *mux = GST_MXF_MUX (object); - - switch (prop_id) { - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -gst_mxf_mux_get_property (GObject * object, - guint prop_id, GValue * value, GParamSpec * pspec) -{ - //GstMXFMux *mux = GST_MXF_MUX (object); - - switch (prop_id) { - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - static void gst_mxf_mux_reset (GstMXFMux * mux) {