diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2020-03-24 15:04:52 +0530 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2020-03-24 15:04:52 +0530 |
commit | 7239254b1da28c1a0d8dff8916edefc98b88775e (patch) | |
tree | a7448a28fde7a8406c4871122a0dbe07c26a6d9e /libavfilter/vf_hue.c | |
parent | ba698a23c6281b98ab8abf1bb0d7dc23dd1e3b89 (diff) | |
download | ffmpeg-7239254b1da28c1a0d8dff8916edefc98b88775e.tar.gz |
avfilter/hue: fix range in comment
Found-by: Michael Koch
Signed-off-by: Gyan Doshi <ffmpeg@gyani.pro>
Diffstat (limited to 'libavfilter/vf_hue.c')
-rw-r--r-- | libavfilter/vf_hue.c | 2 |
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; /* |