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/internal.h | |
parent | 5ce54df39b61c5b104f83d7ce291e67eada56efc (diff) |
Misc. typos
Found via `codespell -q 3 --skip="./gtk/po`
Diffstat (limited to 'libhb/internal.h')
-rw-r--r-- | libhb/internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index ca34ad05c..cc3bf7f19 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -210,7 +210,7 @@ static inline int hb_image_width(int pix_fmt, int width, int plane) if (desc != NULL && (plane == 1 || plane == 2)) { - // The wacky arithmatic assures rounding up. + // The wacky arithmetic assures rounding up. width = -((-width) >> desc->log2_chroma_w); } @@ -237,7 +237,7 @@ static inline int hb_image_height(int pix_fmt, int height, int plane) if (desc != NULL && (plane == 1 || plane == 2)) { - // The wacky arithmatic assures rounding up. + // The wacky arithmetic assures rounding up. height = -((-height) >> desc->log2_chroma_h); } |