From c64a85d25afe01a3aac14980314836ee22281cb5 Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 6 Dec 2023 10:54:21 -0800 Subject: [PATCH] vp9_frame_scale.c,cosmetics: funnction -> function Change-Id: I8ecbd52037ff096f5c84c834b193b0a34c55a8b7 (cherry picked from commit 2f258fdee1b2dc276d973cde6bd2f81c63f13155) --- vp9/encoder/vp9_frame_scale.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/encoder/vp9_frame_scale.c b/vp9/encoder/vp9_frame_scale.c index 22b3f05..ba550a1 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 -- 2.7.4