diff options
Diffstat (limited to 'gst/rtp/gstrtpmp4adepay.c')
-rw-r--r-- | gst/rtp/gstrtpmp4adepay.c | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/gst/rtp/gstrtpmp4adepay.c b/gst/rtp/gstrtpmp4adepay.c index e5f24a0a..ab53d8c5 100644 --- a/gst/rtp/gstrtpmp4adepay.c +++ b/gst/rtp/gstrtpmp4adepay.c @@ -37,17 +37,6 @@ GST_ELEMENT_DETAILS ("RTP packet parser", "Nokia Corporation (contact <stefan.kost@nokia.com>), " "Wim Taymans <wim@fluendo.com>"); -/* RtpMP4ADepay signals and args */ -enum -{ - LAST_SIGNAL -}; - -enum -{ - PROP_0, -}; - static GstStaticPadTemplate gst_rtp_mp4a_depay_src_template = GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, @@ -83,11 +72,6 @@ static gboolean gst_rtp_mp4a_depay_setcaps (GstBaseRTPDepayload * depayload, static GstBuffer *gst_rtp_mp4a_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf); -static void gst_rtp_mp4a_depay_set_property (GObject * object, guint prop_id, - const GValue * value, GParamSpec * pspec); -static void gst_rtp_mp4a_depay_get_property (GObject * object, guint prop_id, - GValue * value, GParamSpec * pspec); - static GstStateChangeReturn gst_rtp_mp4a_depay_change_state (GstElement * element, GstStateChange transition); @@ -117,8 +101,6 @@ gst_rtp_mp4a_depay_class_init (GstRtpMP4ADepayClass * klass) gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass; gobject_class->finalize = gst_rtp_mp4a_depay_finalize; - gobject_class->set_property = gst_rtp_mp4a_depay_set_property; - gobject_class->get_property = gst_rtp_mp4a_depay_get_property; gstelement_class->change_state = gst_rtp_mp4a_depay_change_state; @@ -354,36 +336,6 @@ wrong_size: } } -static void -gst_rtp_mp4a_depay_set_property (GObject * object, guint prop_id, - const GValue * value, GParamSpec * pspec) -{ - GstRtpMP4ADepay *rtpmp4adepay; - - rtpmp4adepay = GST_RTP_MP4A_DEPAY (object); - - switch (prop_id) { - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - -static void -gst_rtp_mp4a_depay_get_property (GObject * object, guint prop_id, - GValue * value, GParamSpec * pspec) -{ - GstRtpMP4ADepay *rtpmp4adepay; - - rtpmp4adepay = GST_RTP_MP4A_DEPAY (object); - - switch (prop_id) { - default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); - break; - } -} - static GstStateChangeReturn gst_rtp_mp4a_depay_change_state (GstElement * element, GstStateChange transition) |