1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avfilter/vf_colorbalance: remove wrong addition

This commit is contained in:
Paul B Mahol
2020-06-29 14:50:06 +02:00
parent 4cfcfb3677
commit cca982ee01

View File

@@ -111,7 +111,7 @@ static float get_component(float v, float l,
v += m; v += m;
v += h; 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) static float hfun(float n, float h, float s, float l)