Commit 7239254b authored by Gyan Doshi's avatar Gyan Doshi

avfilter/hue: fix range in comment

Found-by: Michael Koch
Signed-off-by: 's avatarGyan Doshi <ffmpeg@gyani.pro>
parent ba698a23
......@@ -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;
/*
......
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