Commit 6c57b0d6 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_vaguedenoiser: remove excessive code from soft thresholding

parent d09c3567
...@@ -352,18 +352,10 @@ static void soft_thresholding(float *block, const int width, const int height, c ...@@ -352,18 +352,10 @@ static void soft_thresholding(float *block, const int width, const int height, c
{ {
const float frac = 1.f - percent * 0.01f; const float frac = 1.f - percent * 0.01f;
const float shift = threshold * 0.01f * percent; const float shift = threshold * 0.01f * percent;
int w = width; int y, x;
int h = height;
int y, x, l;
for (l = 0; l < nsteps; l++) {
w = (w + 1) >> 1;
h = (h + 1) >> 1;
}
for (y = 0; y < height; y++) { for (y = 0; y < height; y++) {
const int x0 = (y < h) ? w : 0; for (x = 0; x < width; x++) {
for (x = x0; x < width; x++) {
const float temp = FFABS(block[x]); const float temp = FFABS(block[x]);
if (temp <= threshold) if (temp <= threshold)
block[x] *= frac; block[x] *= frac;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment