summaryrefslogtreecommitdiffstats
path: root/gst/qtdemux
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-04-18 17:52:00 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-04-18 18:51:27 +0200
commitcdb03bdc2b4548909f3f47eec6dfbbb3b5159411 (patch)
tree9558cc9ae99748c9754a47a60ef6ebee4fccd0ee /gst/qtdemux
parent4a9e80720acc41d8f335220f36d0c7ab11f03f25 (diff)
Remove blank {set|get}_property/change_state/finalize methods.
Diffstat (limited to 'gst/qtdemux')
-rw-r--r--gst/qtdemux/gstrtpxqtdepay.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/gst/qtdemux/gstrtpxqtdepay.c b/gst/qtdemux/gstrtpxqtdepay.c
index 4cd9257f..26e294ad 100644
--- a/gst/qtdemux/gstrtpxqtdepay.c
+++ b/gst/qtdemux/gstrtpxqtdepay.c
@@ -108,11 +108,6 @@ static gboolean gst_rtp_xqt_depay_setcaps (GstBaseRTPDepayload * depayload,
static GstBuffer *gst_rtp_xqt_depay_process (GstBaseRTPDepayload * depayload,
GstBuffer * buf);
-static void gst_rtp_xqt_depay_set_property (GObject * object, guint prop_id,
- const GValue * value, GParamSpec * pspec);
-static void gst_rtp_xqt_depay_get_property (GObject * object, guint prop_id,
- GValue * value, GParamSpec * pspec);
-
static GstStateChangeReturn gst_rtp_xqt_depay_change_state (GstElement *
element, GstStateChange transition);
@@ -144,9 +139,6 @@ gst_rtp_xqt_depay_class_init (GstRtpXQTDepayClass * klass)
gobject_class->finalize = gst_rtp_xqt_depay_finalize;
- gobject_class->set_property = gst_rtp_xqt_depay_set_property;
- gobject_class->get_property = gst_rtp_xqt_depay_get_property;
-
gstelement_class->change_state = gst_rtp_xqt_depay_change_state;
gstbasertpdepayload_class->set_caps = gst_rtp_xqt_depay_setcaps;
@@ -676,36 +668,6 @@ unknown_format:
}
}
-static void
-gst_rtp_xqt_depay_set_property (GObject * object, guint prop_id,
- const GValue * value, GParamSpec * pspec)
-{
- GstRtpXQTDepay *rtpxqtdepay;
-
- rtpxqtdepay = GST_RTP_XQT_DEPAY (object);
-
- switch (prop_id) {
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
- break;
- }
-}
-
-static void
-gst_rtp_xqt_depay_get_property (GObject * object, guint prop_id, GValue * value,
- GParamSpec * pspec)
-{
- GstRtpXQTDepay *rtpxqtdepay;
-
- rtpxqtdepay = GST_RTP_XQT_DEPAY (object);
-
- switch (prop_id) {
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
- break;
- }
-}
-
static GstStateChangeReturn
gst_rtp_xqt_depay_change_state (GstElement * element, GstStateChange transition)
{