summaryrefslogtreecommitdiffstats
path: root/ext/gdk_pixbuf/pixbufscale.c
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-04-18 18:11:00 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-04-18 18:51:28 +0200
commit0cb5b42d546538b455ac3bbe90b07e3eb67eb820 (patch)
tree24b178742be806e745b7a3891aa0d63920c364b4 /ext/gdk_pixbuf/pixbufscale.c
parentcdb03bdc2b4548909f3f47eec6dfbbb3b5159411 (diff)
Remove trivial unused variables detected by CLang static analyzer.
Diffstat (limited to 'ext/gdk_pixbuf/pixbufscale.c')
-rw-r--r--ext/gdk_pixbuf/pixbufscale.c5
1 files changed, 0 insertions, 5 deletions
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;