gaudieffects: use CLAMP in dodge
No need to have a gate_int () function duplicating the already existing and established CLAMP () function.
This commit is contained in:
parent
cb3d1794f8
commit
4990dc2d1f
@ -93,7 +93,6 @@ enum
|
|||||||
|
|
||||||
/* Initializations */
|
/* Initializations */
|
||||||
|
|
||||||
static gint gate_int (gint value, gint min, gint max);
|
|
||||||
static void transform (guint32 * src, guint32 * dest, gint video_area);
|
static void transform (guint32 * src, guint32 * dest, gint video_area);
|
||||||
|
|
||||||
/* The capabilities of the inputs and outputs. */
|
/* The capabilities of the inputs and outputs. */
|
||||||
@ -256,25 +255,12 @@ gst_dodge_plugin_init (GstPlugin * dodge)
|
|||||||
|
|
||||||
/*** Now the image processing work.... ***/
|
/*** Now the image processing work.... ***/
|
||||||
|
|
||||||
/* Keep the values inbounds. */
|
|
||||||
static gint
|
|
||||||
gate_int (gint value, gint min, gint max)
|
|
||||||
{
|
|
||||||
if (value < min) {
|
|
||||||
return min;
|
|
||||||
} else if (value > max) {
|
|
||||||
return max;
|
|
||||||
} else {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Transform processes each frame. */
|
/* Transform processes each frame. */
|
||||||
static void
|
static void
|
||||||
transform (guint32 * src, guint32 * dest, gint video_area)
|
transform (guint32 * src, guint32 * dest, gint video_area)
|
||||||
{
|
{
|
||||||
guint32 in, red, green, blue;
|
guint32 in;
|
||||||
gint x;
|
gint x, red, green, blue;
|
||||||
|
|
||||||
for (x = 0; x < video_area; x++) {
|
for (x = 0; x < video_area; x++) {
|
||||||
in = *src++;
|
in = *src++;
|
||||||
@ -287,9 +273,9 @@ transform (guint32 * src, guint32 * dest, gint video_area)
|
|||||||
green = (256 * green) / (256 - green);
|
green = (256 * green) / (256 - green);
|
||||||
blue = (256 * blue) / (256 - blue);
|
blue = (256 * blue) / (256 - blue);
|
||||||
|
|
||||||
red = gate_int (red, 0, 255);
|
red = CLAMP (red, 0, 255);
|
||||||
green = gate_int (green, 0, 255);
|
green = CLAMP (green, 0, 255);
|
||||||
blue = gate_int (blue, 0, 255);
|
blue = CLAMP (blue, 0, 255);
|
||||||
|
|
||||||
*dest++ = (red << 16) | (green << 8) | blue;
|
*dest++ = (red << 16) | (green << 8) | blue;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user