Browse Source

avfilter/hue: fix range in comment

Found-by: Michael Koch
Signed-off-by: Gyan Doshi <ffmpeg@gyani.pro>
tags/n4.3
Gyan Doshi 6 years ago
parent
commit
7239254b1d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_hue.c

+ 1
- 1
libavfilter/vf_hue.c View File

@@ -136,7 +136,7 @@ static inline void create_chrominance_lut(HueContext *h, const int32_t c,
*/
for (i = 0; i < 256; i++) {
for (j = 0; j < 256; j++) {
/* Normalize the components from range [16;140] to [-112;112] */
/* Normalize the components from range [16;240] to [-112;112] */
u = i - 128;
v = j - 128;
/*


Loading…
Cancel
Save