This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/vf_colorbalance: remove wrong addition
tags/n4.4
Paul B Mahol
4 years ago
parent
4cfcfb3677
commit
cca982ee01
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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)
Write
Preview
Loading…
Cancel
Save