Browse Source

avfilter/vf_colorbalance: remove wrong addition

tags/n4.4
Paul B Mahol 4 years ago
parent
commit
cca982ee01
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_colorbalance.c

+ 1
- 1
libavfilter/vf_colorbalance.c View File

@@ -111,7 +111,7 @@ static float get_component(float v, float l,
v += m;
v += h;

return av_clipf(v + 0.5f, 0, 1);
return av_clipf(v, 0, 1);
}

static float hfun(float n, float h, float s, float l)


Loading…
Cancel
Save