From: Limin Wang <lance.lmw...@gmail.com>

Signed-off-by: Limin Wang <lance.lmw...@gmail.com>
---
 libavfilter/vf_vaguedenoiser.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavfilter/vf_vaguedenoiser.c b/libavfilter/vf_vaguedenoiser.c
index a68f7626e6..75a58c363b 100644
--- a/libavfilter/vf_vaguedenoiser.c
+++ b/libavfilter/vf_vaguedenoiser.c
@@ -335,7 +335,7 @@ static void hard_thresholding(float *block, const int 
width, const int height,
 
     for (y = 0; y < height; y++) {
         for (x = 0; x < width; x++) {
-            if (FFABS(block[x]) <= threshold)
+            if (fabsf(block[x]) <= threshold)
                 block[x] *= frac;
         }
         block += stride;
@@ -359,7 +359,7 @@ static void soft_thresholding(float *block, const int 
width, const int height, c
     for (y = 0; y < height; y++) {
         const int x0 = (y < h) ? w : 0;
         for (x = x0; x < width; x++) {
-            const float temp = FFABS(block[x]);
+            const float temp = fabsf(block[x]);
             if (temp <= threshold)
                 block[x] *= frac;
             else
@@ -380,7 +380,7 @@ static void qian_thresholding(float *block, const int 
width, const int height,
 
     for (y = 0; y < height; y++) {
         for (x = 0; x < width; x++) {
-            const float temp = FFABS(block[x]);
+            const float temp = fabsf(block[x]);
             if (temp <= threshold) {
                 block[x] *= frac;
             } else {
-- 
2.21.0

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to