y4mencode: shapewipe: Address unused but set variables

GCC 4.6.x complains about such usage.
This commit is contained in:
Robert Swain 2011-04-15 15:12:44 +02:00 committed by Tim-Philipp Müller
parent 4893678fd1
commit b5c8c7708b
2 changed files with 3 additions and 4 deletions

View 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; \

View 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);