From 1fee98f5dddb151717d6e3ebc9c8034ab0ddb9a0 Mon Sep 17 00:00:00 2001 From: Luis de Bethencourt Date: Wed, 22 Apr 2015 14:15:13 +0100 Subject: [PATCH] gaudi: remove floor variable in solarize Floor variable has no effect and it isn't worth it to have it adjustable. --- gst/gaudieffects/gstsolarize.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gst/gaudieffects/gstsolarize.c b/gst/gaudieffects/gstsolarize.c index e73f4af..a45feb2 100644 --- a/gst/gaudieffects/gstsolarize.c +++ b/gst/gaudieffects/gstsolarize.c @@ -303,11 +303,8 @@ transform (guint32 * src, guint32 * dest, gint video_area, gint period = 1, up_length = 1, down_length = 1; gint x, c; gint param; - static const guint floor = 0; static const guint ceiling = 255; - - if (end != start) period = end - start; @@ -335,12 +332,10 @@ transform (guint32 * src, guint32 * dest, gint video_area, if (param < up_length) { color[c] = param * ceiling; color[c] /= up_length; - color[c] += floor; } else { color[c] = down_length - (param - up_length); color[c] *= ceiling; color[c] /= down_length; - color[c] += floor; } } -- 2.7.4