vp9_frame_scale.c,cosmetics: funnction -> function
authorJames Zern <jzern@google.com>
Wed, 6 Dec 2023 18:54:21 +0000 (10:54 -0800)
committerJames Zern <jzern@google.com>
Thu, 7 Dec 2023 20:45:55 +0000 (20:45 +0000)
Change-Id: I8ecbd52037ff096f5c84c834b193b0a34c55a8b7
(cherry picked from commit 2f258fdee1b2dc276d973cde6bd2f81c63f13155)

vp9/encoder/vp9_frame_scale.c

index 22b3f05..ba550a1 100644 (file)
@@ -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