mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 06:16:36 +00:00
mxfmux: Remove empty set/get_property()
We can add them again if we ever add properties.
This commit is contained in:
parent
d6a5e4ff16
commit
4cdc83fe5d
1 changed files with 0 additions and 32 deletions
|
@ -121,10 +121,6 @@ enum
|
||||||
G_DEFINE_TYPE (GstMXFMux, gst_mxf_mux, GST_TYPE_AGGREGATOR);
|
G_DEFINE_TYPE (GstMXFMux, gst_mxf_mux, GST_TYPE_AGGREGATOR);
|
||||||
|
|
||||||
static void gst_mxf_mux_finalize (GObject * object);
|
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,
|
static GstFlowReturn gst_mxf_mux_aggregate (GstAggregator * aggregator,
|
||||||
gboolean timeout);
|
gboolean timeout);
|
||||||
|
@ -166,8 +162,6 @@ gst_mxf_mux_class_init (GstMXFMuxClass * klass)
|
||||||
gstaggregator_class = (GstAggregatorClass *) klass;
|
gstaggregator_class = (GstAggregatorClass *) klass;
|
||||||
|
|
||||||
gobject_class->finalize = gst_mxf_mux_finalize;
|
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 =
|
gstaggregator_class->create_new_pad =
|
||||||
GST_DEBUG_FUNCPTR (gst_mxf_mux_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);
|
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
|
static void
|
||||||
gst_mxf_mux_reset (GstMXFMux * mux)
|
gst_mxf_mux_reset (GstMXFMux * mux)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue