From 1f1ef843b5479ca9b1b2504d3a0b8805680ec690 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 21 Feb 2015 14:51:07 +0100 Subject: avfilter/vf_perspective: Use av_clip_uint8() Signed-off-by: Michael Niedermayer --- libavfilter/vf_perspective.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter') diff --git a/libavfilter/vf_perspective.c b/libavfilter/vf_perspective.c index bebe37f936..2f2032e927 100644 --- a/libavfilter/vf_perspective.c +++ b/libavfilter/vf_perspective.c @@ -320,7 +320,7 @@ static int resample_cubic(AVFilterContext *ctx, void *arg, } sum = (sum + (1<<(COEFF_BITS * 2 - 1))) >> (COEFF_BITS * 2); - sum = av_clip(sum, 0, 255); + sum = av_clip_uint8(sum); dst[x + y * dst_linesize] = sum; } } @@ -395,7 +395,7 @@ static int resample_linear(AVFilterContext *ctx, void *arg, } } - sum = av_clip(sum, 0, 255); + sum = av_clip_uint8(sum); dst[x + y * dst_linesize] = sum; } } -- cgit v1.2.3