[FFmpeg-devel] [PATCH v1] avfilter/vf_vaguedenoiser: use fabsf() instead of FFABS()
lance.lmwang at gmail.com
lance.lmwang at gmail.com
Wed Nov 6 11:01:54 EET 2019
From: Limin Wang <lance.lmwang at gmail.com>
Signed-off-by: Limin Wang <lance.lmwang at 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
More information about the ffmpeg-devel
mailing list