From: James Zern Date: Wed, 6 Dec 2023 18:54:21 +0000 (-0800) Subject: vp9_frame_scale.c,cosmetics: funnction -> function X-Git-Tag: accepted/tizen/7.0/unified/20240521.012539~1^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c64a85d25afe01a3aac14980314836ee22281cb5;p=platform%2Fupstream%2Flibvpx.git vp9_frame_scale.c,cosmetics: funnction -> function Change-Id: I8ecbd52037ff096f5c84c834b193b0a34c55a8b7 (cherry picked from commit 2f258fdee1b2dc276d973cde6bd2f81c63f13155) --- 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