mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-27 11:32:51 +00:00
gaudi: remove floor variable in solarize
Floor variable has no effect and it isn't worth it to have it adjustable.
This commit is contained in:
parent
2fbbdb5529
commit
1fee98f5dd
1 changed files with 0 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue