summaryrefslogtreecommitdiff
path: root/libavfilter/vf_fftdnoiz.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_fftdnoiz.c')
-rw-r--r--libavfilter/vf_fftdnoiz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_fftdnoiz.c b/libavfilter/vf_fftdnoiz.c
index 05a564e406..7ee7dbc19b 100644
--- a/libavfilter/vf_fftdnoiz.c
+++ b/libavfilter/vf_fftdnoiz.c
@@ -176,7 +176,7 @@ static void export_row16(FFTComplex *src, uint8_t *dstp, int rw, float scale, in
int j;
for (j = 0; j < rw; j++)
- dst[j] = av_clip_uintp2(src[j].re * scale, depth);
+ dst[j] = av_clip_uintp2_c(src[j].re * scale, depth);
}
static int config_input(AVFilterLink *inlink)