diff options
Diffstat (limited to 'gst/rtp/gstrtptheoradepay.c')
-rw-r--r-- | gst/rtp/gstrtptheoradepay.c | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/gst/rtp/gstrtptheoradepay.c b/gst/rtp/gstrtptheoradepay.c index a8a642e6..ab364b93 100644 --- a/gst/rtp/gstrtptheoradepay.c +++ b/gst/rtp/gstrtptheoradepay.c @@ -37,18 +37,6 @@ GST_ELEMENT_DETAILS ("RTP packet depayloader", "Extracts Theora video from RTP packets (draft-01 of RFC XXXX)", "Wim Taymans <wim@fluendo.com>"); -/* RtpTheoraDepay signals and args */ -enum -{ - /* FILL ME */ - LAST_SIGNAL -}; - -enum -{ - ARG_0, -}; - static GstStaticPadTemplate gst_rtp_theora_depay_sink_template = GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, @@ -87,10 +75,6 @@ static gboolean gst_rtp_theora_depay_setcaps (GstBaseRTPDepayload * depayload, static GstBuffer *gst_rtp_theora_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf); -static void gst_rtp_theora_depay_set_property (GObject * object, guint prop_id, - const GValue * value, GParamSpec * pspec); -static void gst_rtp_theora_depay_get_property (GObject * object, guint prop_id, - GValue * value, GParamSpec * pspec); static void gst_rtp_theora_depay_finalize (GObject * object); static GstStateChangeReturn gst_rtp_theora_depay_change_state (GstElement * @@ -121,8 +105,6 @@ gst_rtp_theora_depay_class_init (GstRtpTheoraDepayClass * klass) gstelement_class = (GstElementClass *) klass; gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass; - gobject_class->set_property = gst_rtp_theora_depay_set_property; - gobject_class->get_property = gst_rtp_theora_depay_get_property; gobject_class->finalize = gst_rtp_theora_depay_finalize; gstelement_class->change_state = gst_rtp_theora_depay_change_state; @@ -670,36 +652,6 @@ length_short: } } -static void -gst_rtp_theora_depay_set_property (GObject * object, guint prop_id, - const GValue * value, GParamSpec * pspec) -{ - GstRtpTheoraDepay *rtptheoradepay; - - rtptheoradepay = GST_RTP_THEORA_DEPAY (object); - - switch (prop_id) { - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -gst_rtp_theora_depay_get_property (GObject * object, guint prop_id, - GValue * value, GParamSpec * pspec) -{ - GstRtpTheoraDepay *rtptheoradepay; - - rtptheoradepay = GST_RTP_THEORA_DEPAY (object); - - switch (prop_id) { - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - static GstStateChangeReturn gst_rtp_theora_depay_change_state (GstElement * element, GstStateChange transition) |