aboutsummaryrefslogtreecommitdiff
path: root/source/scale_common.cc
diff options
context:
space:
mode:
authorFrank Barchard <fbarchard@google.com>2016-09-15 15:38:19 -0700
committerFrank Barchard <fbarchard@google.com>2016-09-15 15:38:19 -0700
commit137aa63afe2862a74fc361d0fc07f99e47a82208 (patch)
treeb6401158c8a2d81130a6ad9fc7db5bf44c5ec267 /source/scale_common.cc
parent742be44654f5bccc9ff64a20e9afeb5b77916616 (diff)
downloadlibyuv-137aa63afe2862a74fc361d0fc07f99e47a82208.tar.gz
Fix some comment typos
BUG=None TEST=try bots Review URL: https://codereview.chromium.org/2346633002 .
Diffstat (limited to 'source/scale_common.cc')
-rw-r--r--source/scale_common.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/scale_common.cc b/source/scale_common.cc
index 3507aa4d..e9c4eff9 100644
--- a/source/scale_common.cc
+++ b/source/scale_common.cc
@@ -421,7 +421,7 @@ void ScaleColsUp2_16_C(uint16* dst_ptr, const uint16* src_ptr,
#define BLENDER(a, b, f) (uint8)((int)(a) + \
((((int)((f)) * ((int)(b) - (int)(a))) + 0x8000) >> 16))
#else
-// inteluses 7 bit math with rounding.
+// Intel uses 7 bit math with rounding.
#define BLENDER(a, b, f) (uint8)((int)(a) + \
(((int)((f) >> 9) * ((int)(b) - (int)(a)) + 0x40) >> 7))
#endif