Am Mi., 6. Nov. 2019 um 12:04 Uhr schrieb Limin Wang <lance.lmw...@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.lmw...@gmail.com>: > > > > > > 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 { > > > > 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 _______________________________________________ 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".