diff options
author | freddii <[email protected]> | 2021-01-22 22:03:39 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2021-02-25 18:46:31 +0100 |
commit | 1fbc0da51f35d3778bfd6329331442c07255ed55 (patch) | |
tree | 7e9d8fd1821883e62e4eaf8080e1ce655fbd7fab /libhb/hb.c | |
parent | 861fb711b167b03ec878f511f1ac9f297d55cbbd (diff) |
fixed typos
Diffstat (limited to 'libhb/hb.c')
-rw-r--r-- | libhb/hb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/hb.c b/libhb/hb.c index 02668cb10..c85934b5b 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -893,7 +893,7 @@ int hb_detect_comb( hb_buffer_t * buf, int color_equal, int color_diff, int thre // compare results /* The final cc score for a plane is the percentage of combed pixels it contains. - Because sensitivity goes down to hundreths of a percent, multiply by 1000 + Because sensitivity goes down to hundredths of a percent, multiply by 1000 so it will be easy to compare against the threshold value which is an integer. */ cc[k] = (int)( ( cc_1 + cc_2 ) * 1000.0 / ( width * height ) ); } |