summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpmp4gpay.c
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2008-01-09 11:11:01 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2008-01-09 11:11:01 +0000
commite7f919986a6834383478991af77982507f023e3d (patch)
tree74ecfff6075aa46612d01f8c8b5e00e1eefce2cc /gst/rtp/gstrtpmp4gpay.c
parenta895112c29c36e8847dc4a5edade43824e36a191 (diff)
gst/rtp/: Remove copy/paste unused code (property setters and getter) found by the coverage suite (yay, saves ~20k on...
Original commit message from CVS: * gst/rtp/gstasteriskh263.c: * gst/rtp/gstrtpL16depay.c: * gst/rtp/gstrtpac3depay.c: * gst/rtp/gstrtpamrpay.c: * gst/rtp/gstrtpdepay.c: * gst/rtp/gstrtpgsmdepay.c: * gst/rtp/gstrtph263depay.c: * gst/rtp/gstrtph263pdepay.c: * gst/rtp/gstrtph263ppay.c: * gst/rtp/gstrtph264depay.c: * gst/rtp/gstrtph264pay.c: * gst/rtp/gstrtpmp2tdepay.c: * gst/rtp/gstrtpmp4adepay.c: * gst/rtp/gstrtpmp4gdepay.c: * gst/rtp/gstrtpmp4gpay.c: * gst/rtp/gstrtpmp4vdepay.c: * gst/rtp/gstrtpmpadepay.c: * gst/rtp/gstrtpmpvdepay.c: * gst/rtp/gstrtpsv3vdepay.c: * gst/rtp/gstrtptheoradepay.c: * gst/rtp/gstrtptheorapay.c: * gst/rtp/gstrtpvorbisdepay.c: * gst/rtp/gstrtpvorbispay.c: Remove copy/paste unused code (property setters and getter) found by the coverage suite (yay, saves ~20k on disk).
Diffstat (limited to 'gst/rtp/gstrtpmp4gpay.c')
-rw-r--r--gst/rtp/gstrtpmp4gpay.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/gst/rtp/gstrtpmp4gpay.c b/gst/rtp/gstrtpmp4gpay.c
index 4e4c8174..2b8b8652 100644
--- a/gst/rtp/gstrtpmp4gpay.c
+++ b/gst/rtp/gstrtpmp4gpay.c
@@ -77,22 +77,12 @@ GST_STATIC_PAD_TEMPLATE ("src",
/* "auxiliarydatasizelength = (string) [0, 64]" */ )
);
-enum
-{
- PROP_0,
-};
-
static void gst_rtp_mp4g_pay_class_init (GstRtpMP4GPayClass * klass);
static void gst_rtp_mp4g_pay_base_init (GstRtpMP4GPayClass * klass);
static void gst_rtp_mp4g_pay_init (GstRtpMP4GPay * rtpmp4gpay);
static void gst_rtp_mp4g_pay_finalize (GObject * object);
-static void gst_rtp_mp4g_pay_set_property (GObject * object, guint prop_id,
- const GValue * value, GParamSpec * pspec);
-static void gst_rtp_mp4g_pay_get_property (GObject * object, guint prop_id,
- GValue * value, GParamSpec * pspec);
-
static gboolean gst_rtp_mp4g_pay_setcaps (GstBaseRTPPayload * payload,
GstCaps * caps);
static GstFlowReturn gst_rtp_mp4g_pay_handle_buffer (GstBaseRTPPayload *
@@ -151,9 +141,6 @@ gst_rtp_mp4g_pay_class_init (GstRtpMP4GPayClass * klass)
parent_class = g_type_class_peek_parent (klass);
- gobject_class->set_property = gst_rtp_mp4g_pay_set_property;
- gobject_class->get_property = gst_rtp_mp4g_pay_get_property;
-
gobject_class->finalize = gst_rtp_mp4g_pay_finalize;
gstbasertppayload_class->set_caps = gst_rtp_mp4g_pay_setcaps;
@@ -550,34 +537,6 @@ gst_rtp_mp4g_pay_handle_buffer (GstBaseRTPPayload * basepayload,
return ret;
}
-static void
-gst_rtp_mp4g_pay_set_property (GObject * object, guint prop_id,
- const GValue * value, GParamSpec * pspec)
-{
- GstRtpMP4GPay *rtpmp4gpay;
-
- rtpmp4gpay = GST_RTP_MP4G_PAY (object);
-
- switch (prop_id) {
- default:
- break;
- }
-}
-
-static void
-gst_rtp_mp4g_pay_get_property (GObject * object, guint prop_id,
- GValue * value, GParamSpec * pspec)
-{
- GstRtpMP4GPay *rtpmp4gpay;
-
- rtpmp4gpay = GST_RTP_MP4G_PAY (object);
-
- switch (prop_id) {
- default:
- break;
- }
-}
-
gboolean
gst_rtp_mp4g_pay_plugin_init (GstPlugin * plugin)
{