summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorGyan Doshi <ffmpeg@gyani.pro>2020-03-24 15:04:52 +0530
committerGyan Doshi <ffmpeg@gyani.pro>2020-03-24 15:04:52 +0530
commit7239254b1da28c1a0d8dff8916edefc98b88775e (patch)
treea7448a28fde7a8406c4871122a0dbe07c26a6d9e /libavfilter
parentba698a23c6281b98ab8abf1bb0d7dc23dd1e3b89 (diff)
avfilter/hue: fix range in comment
Found-by: Michael Koch Signed-off-by: Gyan Doshi <ffmpeg@gyani.pro>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_hue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_hue.c b/libavfilter/vf_hue.c
index 026d4b6eec..b75ef21058 100644
--- a/libavfilter/vf_hue.c
+++ b/libavfilter/vf_hue.c
@@ -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;
/*