diff mbox

[FFmpeg-devel,v1] avfilter/vf_vaguedenoiser: use fabsf() instead of FFABS()

Message ID 20191106090154.21754-1-lance.lmwang@gmail.com
State New
Headers show

Commit Message

Lance Wang Nov. 6, 2019, 9:01 a.m. UTC
From: Limin Wang <lance.lmwang@gmail.com>

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

Comments

Carl Eugen Hoyos Nov. 6, 2019, 10:11 a.m. UTC | #1
Am Mi., 6. Nov. 2019 um 10:31 Uhr schrieb <lance.lmwang@gmail.com>:
>
> From: Limin Wang <lance.lmwang@gmail.com>
>
> Signed-off-by: Limin Wang <lance.lmwang@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 {

Please add a sentence to the commit message that explains why this
change is a good idea.

Carl Eugen
Lance Wang Nov. 6, 2019, 11:04 a.m. UTC | #2
On Wed, Nov 06, 2019 at 11:11:08AM +0100, Carl Eugen Hoyos wrote:
> Am Mi., 6. Nov. 2019 um 10:31 Uhr schrieb <lance.lmwang@gmail.com>:
> >
> > From: Limin Wang <lance.lmwang@gmail.com>
> >
> > Signed-off-by: Limin Wang <lance.lmwang@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 {
> 
> Please add a sentence to the commit message that explains why this
> change is a good idea.

block is float type, so I think it's better to use fabsf, isn't right?

> 
> Carl Eugen
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
> 
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
Paul B Mahol Nov. 6, 2019, 6:05 p.m. UTC | #3
Pointless change.

On 11/6/19, Limin Wang <lance.lmwang@gmail.com> wrote:
> On Wed, Nov 06, 2019 at 11:11:08AM +0100, Carl Eugen Hoyos wrote:
>> Am Mi., 6. Nov. 2019 um 10:31 Uhr schrieb <lance.lmwang@gmail.com>:
>> >
>> > From: Limin Wang <lance.lmwang@gmail.com>
>> >
>> > Signed-off-by: Limin Wang <lance.lmwang@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 {
>>
>> Please add a sentence to the commit message that explains why this
>> change is a good idea.
>
> block is float type, so I think it's better to use fabsf, isn't right?
>
>>
>> Carl Eugen
>> _______________________________________________
>> ffmpeg-devel mailing list
>> ffmpeg-devel@ffmpeg.org
>> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>>
>> To unsubscribe, visit link above, or email
>> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
Carl Eugen Hoyos Nov. 6, 2019, 7:10 p.m. UTC | #4
Am Mi., 6. Nov. 2019 um 12:04 Uhr schrieb Limin Wang <lance.lmwang@gmail.com>:
>
> On Wed, Nov 06, 2019 at 11:11:08AM +0100, Carl Eugen Hoyos wrote:
> > Am Mi., 6. Nov. 2019 um 10:31 Uhr schrieb <lance.lmwang@gmail.com>:
> > >
> > > From: Limin Wang <lance.lmwang@gmail.com>
> > >
> > > Signed-off-by: Limin Wang <lance.lmwang@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 {
> >
> > Please add a sentence to the commit message that explains why this
> > change is a good idea.
>
> block is float type, so I think it's better to use fabsf, isn't right?

Looking at the definition of FFABS(), I don't think this is correct.

Carl Eugen
Lance Wang Nov. 8, 2019, 2:09 a.m. UTC | #5
On Wed, Nov 06, 2019 at 08:10:53PM +0100, Carl Eugen Hoyos wrote:
> Am Mi., 6. Nov. 2019 um 12:04 Uhr schrieb Limin Wang <lance.lmwang@gmail.com>:
> >
> > On Wed, Nov 06, 2019 at 11:11:08AM +0100, Carl Eugen Hoyos wrote:
> > > Am Mi., 6. Nov. 2019 um 10:31 Uhr schrieb <lance.lmwang@gmail.com>:
> > > >
> > > > From: Limin Wang <lance.lmwang@gmail.com>
> > > >
> > > > Signed-off-by: Limin Wang <lance.lmwang@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 {
> > >
> > > Please add a sentence to the commit message that explains why this
> > > change is a good idea.
> >
> > block is float type, so I think it's better to use fabsf, isn't right?
> 
> Looking at the definition of FFABS(), I don't think this is correct.

Below is one old commit log to describe about it. What's the result for the discussion?


commit 8507b98c10d948653375400e2b0a3d4389f74be4
Author: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Date:   Mon Oct 12 01:30:22 2015 -0400

    avfilter,swresample,swscale: use fabs, fabsf instead of FFABS

    It is well known that fabs and fabsf are at least as fast and sometimes
    faster than the FFABS macro, at least on the gcc+glibc combination.
    For instance, see the reference:
    http://patchwork.sourceware.org/patch/6735/.
    This was a patch to glibc in order to remove their usages of a macro.

    The reason essentially boils down to fabs using the __builtin_fabs of
    the compiler, while FFABS needs to infer to not use a branch and to
    simply change the sign bit. Usually the inference works, but sometimes
    it does not. This may be easily checked by looking at the asm.

    This also has the added benefit of reducing macro usage, which has
    problems with side-effects.

    Note that avcodec is not handled here, as it is huge and
    most things there are integer arithmetic anyway.

    Tested with FATE.

    Reviewed-by: Clément Bœsch <u@pkh.me>
    Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>



> 
> Carl Eugen
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
> 
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
Jun Zhao Nov. 8, 2019, 2:26 a.m. UTC | #6
On Fri, Nov 8, 2019 at 10:09 AM Limin Wang <lance.lmwang@gmail.com> wrote:
>
> On Wed, Nov 06, 2019 at 08:10:53PM +0100, Carl Eugen Hoyos wrote:
> > Am Mi., 6. Nov. 2019 um 12:04 Uhr schrieb Limin Wang <lance.lmwang@gmail.com>:
> > >
> > > On Wed, Nov 06, 2019 at 11:11:08AM +0100, Carl Eugen Hoyos wrote:
> > > > Am Mi., 6. Nov. 2019 um 10:31 Uhr schrieb <lance.lmwang@gmail.com>:
> > > > >
> > > > > From: Limin Wang <lance.lmwang@gmail.com>
> > > > >
> > > > > Signed-off-by: Limin Wang <lance.lmwang@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 {
> > > >
> > > > Please add a sentence to the commit message that explains why this
> > > > change is a good idea.
> > >
> > > block is float type, so I think it's better to use fabsf, isn't right?
> >
> > Looking at the definition of FFABS(), I don't think this is correct.
>
> Below is one old commit log to describe about it. What's the result for the discussion?
>
>
> commit 8507b98c10d948653375400e2b0a3d4389f74be4
> Author: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
> Date:   Mon Oct 12 01:30:22 2015 -0400
>
>     avfilter,swresample,swscale: use fabs, fabsf instead of FFABS
>
>     It is well known that fabs and fabsf are at least as fast and sometimes
>     faster than the FFABS macro, at least on the gcc+glibc combination.
>     For instance, see the reference:
>     http://patchwork.sourceware.org/patch/6735/.
>     This was a patch to glibc in order to remove their usages of a macro.
>
>     The reason essentially boils down to fabs using the __builtin_fabs of
>     the compiler, while FFABS needs to infer to not use a branch and to
>     simply change the sign bit. Usually the inference works, but sometimes
>     it does not. This may be easily checked by looking at the asm.
>
>     This also has the added benefit of reducing macro usage, which has
>     problems with side-effects.
>
>     Note that avcodec is not handled here, as it is huge and
>     most things there are integer arithmetic anyway.
>
>     Tested with FATE.
>
>     Reviewed-by: Clément Bœsch <u@pkh.me>
>     Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
>
>
>
> >

Is it has some performance data after change FFABS to fabsf in this filter?   As
my personal opinion,  if FFABS is not a performance bottleneck in this filter,
keep the old way may be better.

Swresample, swscale are the other thing, they are basic components for
another part
in FFmpeg, so I think we can use the fabsf for potential performance income.
diff mbox

Patch

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 {