aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2023-12-06 10:54:21 -0800
committerJames Zern <jzern@google.com>2023-12-07 20:45:55 +0000
commitc64a85d25afe01a3aac14980314836ee22281cb5 (patch)
tree1c8c2b326573ec7ad68d58a866bd430f7334f2ee
parentc3b821fd4a76d2ad3d1582ed9fa1221375b5c242 (diff)
downloadlibvpx-c64a85d25afe01a3aac14980314836ee22281cb5.tar.gz
vp9_frame_scale.c,cosmetics: funnction -> function
Change-Id: I8ecbd52037ff096f5c84c834b193b0a34c55a8b7 (cherry picked from commit 2f258fdee1b2dc276d973cde6bd2f81c63f13155)
-rw-r--r--vp9/encoder/vp9_frame_scale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_frame_scale.c b/vp9/encoder/vp9_frame_scale.c
index 22b3f0557..ba550a1d6 100644
--- a/vp9/encoder/vp9_frame_scale.c
+++ b/vp9/encoder/vp9_frame_scale.c
@@ -100,7 +100,7 @@ void vp9_scale_and_extend_frame_c(const YV12_BUFFER_CONFIG *src,
const int x_step_q4 = 16 * src_w / dst_w;
const int y_step_q4 = 16 * src_h / dst_h;
if (x_step_q4 > 64 || y_step_q4 > 64) {
- // This funnction is only called while cm->bit_depth is VPX_BITS_8.
+ // This function is only called while cm->bit_depth is VPX_BITS_8.
#if CONFIG_VP9_HIGHBITDEPTH
vp9_scale_and_extend_frame_nonnormative(src, dst, (int)VPX_BITS_8);
#else