From bb10f8d8029026fed0292e01ac7cd56f9d472f0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Thu, 14 Oct 2021 09:29:08 +0300 Subject: [PATCH] avfilter/vf_fftfilt: Use av_clip_uint8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The refactoring in 844890b1bc86316a38bc9e1dbf8ba0dd254307e3 caused fate-source to point out that this could be av_clip_uintp2 (or rather av_clip_uint8). Signed-off-by: Martin Storsjö --- libavfilter/vf_fftfilt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_fftfilt.c b/libavfilter/vf_fftfilt.c index 30c0b2fc86..28845a5013 100644 --- a/libavfilter/vf_fftfilt.c +++ b/libavfilter/vf_fftfilt.c @@ -191,7 +191,7 @@ static int irdft_horizontal8(AVFilterContext *ctx, void *arg, int jobnr, int nb_ uint8_t *dst = out->data[plane] + i * out->linesize[plane]; for (int j = 0; j < w; j++) - dst[j] = av_clip(lrintf(src[j] * scale), 0, 255); + dst[j] = av_clip_uint8(lrintf(src[j] * scale)); } }