Remove unused but set variables
authorDebarshi Ray <rishi@gnu.org>
Tue, 14 Jun 2011 20:25:31 +0000 (01:55 +0530)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Tue, 14 Jun 2011 21:40:13 +0000 (22:40 +0100)
This is needed to satisfy the new -Wunused-but-set-variable added in
GCC 4.6: http://gcc.gnu.org/gcc-4.6/changes.html

gst-libs/gst/rtp/gstbasertpdepayload.c
gst-libs/gst/rtp/gstrtpbuffer.c
gst/tcp/gsttcpclientsink.c

index ab33940..397e5c1 100644 (file)
@@ -750,10 +750,6 @@ static void
 gst_base_rtp_depayload_set_property (GObject * object, guint prop_id,
     const GValue * value, GParamSpec * pspec)
 {
-  GstBaseRTPDepayload *filter;
-
-  filter = GST_BASE_RTP_DEPAYLOAD (object);
-
   switch (prop_id) {
     default:
       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
@@ -765,10 +761,6 @@ static void
 gst_base_rtp_depayload_get_property (GObject * object, guint prop_id,
     GValue * value, GParamSpec * pspec)
 {
-  GstBaseRTPDepayload *filter;
-
-  filter = GST_BASE_RTP_DEPAYLOAD (object);
-
   switch (prop_id) {
     default:
       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
index 9e541a2..f160cd5 100644 (file)
@@ -471,10 +471,8 @@ gst_rtp_buffer_unmap (GstRTPBuffer * rtp)
 void
 gst_rtp_buffer_set_packet_len (GstRTPBuffer * rtp, guint len)
 {
-  guint oldlen;
   guint8 *data;
 
-  oldlen = rtp->size;
   data = rtp->data;
 
   if (rtp->maxsize <= len) {
index de827ab..a8dc756 100644 (file)
@@ -149,10 +149,6 @@ gst_tcp_client_sink_finalize (GObject * gobject)
 static gboolean
 gst_tcp_client_sink_setcaps (GstBaseSink * bsink, GstCaps * caps)
 {
-  GstTCPClientSink *sink;
-
-  sink = GST_TCP_CLIENT_SINK (bsink);
-
   return TRUE;
 }