[FFmpeg-cvslog] lavfi/vf_colorlevels: replace round by lrint
Ganesh Ajjanagadde
git at videolan.org
Mon Dec 21 17:31:46 CET 2015
ffmpeg | branch: master | Ganesh Ajjanagadde <gajjanagadde at gmail.com> | Wed Dec 16 14:36:53 2015 -0500| [7af14b37260d4923cdd75c8a19d6a82dad7470c4] | committer: Ganesh Ajjanagadde
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 <gajjanagadde at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7af14b37260d4923cdd75c8a19d6a82dad7470c4
---
libavfilter/vf_colorlevels.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/libavfilter/vf_colorlevels.c b/libavfilter/vf_colorlevels.c
index cb3314b..dedbe30 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) {
More information about the ffmpeg-cvslog
mailing list