y4mencode: shapewipe: Address unused but set variables
authorRobert Swain <robert.swain@collabora.co.uk>
Fri, 15 Apr 2011 13:12:44 +0000 (15:12 +0200)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sat, 16 Apr 2011 12:12:50 +0000 (13:12 +0100)
GCC 4.6.x complains about such usage.

gst/shapewipe/gstshapewipe.c
gst/y4m/gsty4mencode.c

index 49e0736..83005a0 100644 (file)
@@ -824,7 +824,7 @@ gst_shape_wipe_blend_##name##_##depth (GstShapeWipe * self, GstBuffer * inbuf, \
   gfloat position = self->mask_position; \
   gfloat low = position - (self->mask_border / 2.0f); \
   gfloat high = position + (self->mask_border / 2.0f); \
-  guint32 low_i, high_i, position_i, round_i; \
+  guint32 low_i, high_i, round_i; \
   gint width = self->width, height = self->height; \
   \
   if (low < 0.0f) { \
@@ -837,7 +837,6 @@ gst_shape_wipe_blend_##name##_##depth (GstShapeWipe * self, GstBuffer * inbuf, \
     high = 1.0f; \
   } \
   \
-  position_i = position * 65536; \
   low_i = low * 65536; \
   high_i = high * 65536; \
   round_i = (high_i - low_i) >> 1; \
index aba6ab7..4adaa5a 100644 (file)
@@ -306,7 +306,7 @@ static void
 gst_y4m_encode_set_property (GObject * object, guint prop_id,
     const GValue * value, GParamSpec * pspec)
 {
-  GstY4mEncode *filter;
+  GstY4mEncode G_GNUC_UNUSED *filter;
 
   g_return_if_fail (GST_IS_Y4M_ENCODE (object));
   filter = GST_Y4M_ENCODE (object);
@@ -321,7 +321,7 @@ static void
 gst_y4m_encode_get_property (GObject * object, guint prop_id, GValue * value,
     GParamSpec * pspec)
 {
-  GstY4mEncode *filter;
+  GstY4mEncode G_GNUC_UNUSED *filter;
 
   g_return_if_fail (GST_IS_Y4M_ENCODE (object));
   filter = GST_Y4M_ENCODE (object);