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/comb_detect.c | |
parent | 5ce54df39b61c5b104f83d7ce291e67eada56efc (diff) |
Misc. typos
Found via `codespell -q 3 --skip="./gtk/po`
Diffstat (limited to 'libhb/comb_detect.c')
-rw-r--r-- | libhb/comb_detect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/comb_detect.c b/libhb/comb_detect.c index 4051f936c..16eef9f21 100644 --- a/libhb/comb_detect.c +++ b/libhb/comb_detect.c @@ -626,7 +626,7 @@ static void detect_combed_segment( hb_filter_private_t * pv, else if (spatial_metric == 1) { /* This, for comparison, is what IsCombed uses. - It's better, but still noise senstive. */ + It's better, but still noise sensitive. */ int combing = ( cur[up_1] - cur[0] ) * ( cur[down_1] - cur[0] ); @@ -1246,7 +1246,7 @@ static int comb_detect_init( hb_filter_object_t * filter, decomb_prev_thread_args->segment_height[pp]; } - // Make segment hight a multiple of block_height + // Make segment height a multiple of block_height int h = hb_image_height(init->pix_fmt, init->geometry.height, pp) / pv->comb_check_nthreads; h = h / pv->block_height * pv->block_height; if (h == 0) |