From 7af14b37260d4923cdd75c8a19d6a82dad7470c4 Mon Sep 17 00:00:00 2001 From: Ganesh Ajjanagadde Date: Wed, 16 Dec 2015 14:36:53 -0500 Subject: lavfi/vf_colorlevels: replace round by lrint lrint avoids an implicit cast, and is not slower on non-broken libm's. Thus this represents a Pareto improvement. Signed-off-by: Ganesh Ajjanagadde --- libavfilter/vf_colorlevels.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'libavfilter/vf_colorlevels.c') diff --git a/libavfilter/vf_colorlevels.c b/libavfilter/vf_colorlevels.c index cb3314b8ac..dedbe30d19 100644 --- a/libavfilter/vf_colorlevels.c +++ b/libavfilter/vf_colorlevels.c @@ -132,10 +132,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) const uint8_t offset = s->rgba_map[i]; const uint8_t *srcrow = in->data[0]; uint8_t *dstrow = out->data[0]; - int imin = round(r->in_min * UINT8_MAX); - int imax = round(r->in_max * UINT8_MAX); - int omin = round(r->out_min * UINT8_MAX); - int omax = round(r->out_max * UINT8_MAX); + int imin = lrint(r->in_min * UINT8_MAX); + int imax = lrint(r->in_max * UINT8_MAX); + int omin = lrint(r->out_min * UINT8_MAX); + int omax = lrint(r->out_max * UINT8_MAX); double coeff; if (imin < 0) { @@ -179,10 +179,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) const uint8_t offset = s->rgba_map[i]; const uint8_t *srcrow = in->data[0]; uint8_t *dstrow = out->data[0]; - int imin = round(r->in_min * UINT16_MAX); - int imax = round(r->in_max * UINT16_MAX); - int omin = round(r->out_min * UINT16_MAX); - int omax = round(r->out_max * UINT16_MAX); + int imin = lrint(r->in_min * UINT16_MAX); + int imax = lrint(r->in_max * UINT16_MAX); + int omin = lrint(r->out_min * UINT16_MAX); + int omax = lrint(r->out_max * UINT16_MAX); double coeff; if (imin < 0) { -- cgit v1.2.3