diff options
author | luz.paz <[email protected]> | 2018-02-07 10:54:59 -0500 |
---|---|---|
committer | Scott <[email protected]> | 2018-02-20 18:10:44 +0000 |
commit | 2d1c8541460c2b63d46eb1a278adacee14a55556 (patch) | |
tree | baf9c409edfb51f1a2b649b1f6e2291ff0524b76 /libhb/hb.c | |
parent | 5ce54df39b61c5b104f83d7ce291e67eada56efc (diff) |
Misc. typos
Found via `codespell -q 3 --skip="./gtk/po`
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 8bd6813be..b973645b0 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -758,7 +758,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 - so it will be easy to compare against the threhold value which is an integer. */ + 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 ) ); } |