From 0cb5b42d546538b455ac3bbe90b07e3eb67eb820 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Sat, 18 Apr 2009 18:11:00 +0200 Subject: Remove trivial unused variables detected by CLang static analyzer. --- ext/gdk_pixbuf/gstgdkpixbuf.c | 8 -------- ext/gdk_pixbuf/pixbufscale.c | 5 ----- 2 files changed, 13 deletions(-) (limited to 'ext/gdk_pixbuf') diff --git a/ext/gdk_pixbuf/gstgdkpixbuf.c b/ext/gdk_pixbuf/gstgdkpixbuf.c index d35c2cb5..65605fff 100644 --- a/ext/gdk_pixbuf/gstgdkpixbuf.c +++ b/ext/gdk_pixbuf/gstgdkpixbuf.c @@ -420,10 +420,6 @@ static void gst_gdk_pixbuf_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec) { - GstGdkPixbuf *filter; - - filter = GST_GDK_PIXBUF (object); - switch (prop_id) { case ARG_SILENT: /* filter->silent = g_value_get_boolean (value); */ @@ -438,10 +434,6 @@ static void gst_gdk_pixbuf_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec) { - GstGdkPixbuf *filter; - - filter = GST_GDK_PIXBUF (object); - switch (prop_id) { case ARG_SILENT: /* g_value_set_boolean (value, filter->silent); */ diff --git a/ext/gdk_pixbuf/pixbufscale.c b/ext/gdk_pixbuf/pixbufscale.c index b240528d..bf0882c0 100644 --- a/ext/gdk_pixbuf/pixbufscale.c +++ b/ext/gdk_pixbuf/pixbufscale.c @@ -237,11 +237,9 @@ static GstCaps * gst_pixbufscale_transform_caps (GstBaseTransform * trans, GstPadDirection direction, GstCaps * caps) { - GstPixbufScale *pixbufscale; GstCaps *ret; int i; - pixbufscale = GST_PIXBUFSCALE (trans); ret = gst_caps_copy (caps); for (i = 0; i < gst_caps_get_size (ret); i++) { @@ -303,13 +301,10 @@ static gboolean gst_pixbufscale_get_unit_size (GstBaseTransform * trans, GstCaps * caps, guint * size) { - GstPixbufScale *pixbufscale; gint width, height; g_assert (size); - pixbufscale = GST_PIXBUFSCALE (trans); - if (!parse_caps (caps, &width, &height)) return FALSE; -- cgit