diff options
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 ) ); } |