This commit is contained in:
JonDeen 2015-06-09 13:30:36 +02:00
parent 1f5171c1fc
commit f52d166ca5

View File

@ -87,12 +87,10 @@ vips_sRGB2HSV_line( VipsColour *colour, VipsPel *out, VipsPel **in, int width )
q[0] = (unsigned char) (((int)(p[0] - p[1]) / delta) + 171);
}
q[1]= (unsigned char) (int) (delta/c_max);
q[1]= (unsigned char) ((int) delta/c_max);
}
q[2]=(int) (c_max * 256.0);
p += 3;
q += 3;
}