[FFmpeg-cvslog] avfilter/vf_fftfilt: Use av_clip_uint8

Martin Storsjö git at videolan.org
Thu Oct 14 14:05:59 EEST 2021


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Thu Oct 14 09:29:08 2021 +0300| [bb10f8d8029026fed0292e01ac7cd56f9d472f0f] | committer: Martin Storsjö

avfilter/vf_fftfilt: Use av_clip_uint8

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ö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bb10f8d8029026fed0292e01ac7cd56f9d472f0f
---

 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));
         }
     }
 



More information about the ffmpeg-cvslog mailing list