From 652beb6ac10f2f550718a33e7987dd1b99192ddc Mon Sep 17 00:00:00 2001 From: Johann Date: Fri, 10 Jan 2020 15:59:30 -0800 Subject: [PATCH] trivial: fix spelling errors Found when updating a downstream client. Change-Id: Ibaa20d883ebfea9410d0252e7a19c7acdb78c907 --- tools/3D-Reconstruction/MotionEST/Anandan.py | 2 +- vp9/encoder/vp9_encoder.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/3D-Reconstruction/MotionEST/Anandan.py b/tools/3D-Reconstruction/MotionEST/Anandan.py index b8a19a38d..b96cd9fd0 100644 --- a/tools/3D-Reconstruction/MotionEST/Anandan.py +++ b/tools/3D-Reconstruction/MotionEST/Anandan.py @@ -122,7 +122,7 @@ class Anandan(MotionEST): for i, j in {(r, c), (r, c + 1), (r + 1, c), (r + 1, c + 1)}: if 0 <= i < last_mvs.shape[0] and 0 <= j < last_mvs.shape[1]: init_mvs.append(last_mvs[i, j]) - #use last matching results as the start postion as current level + #use last matching results as the start position as current level min_ssd = None min_mv = None for init_mv in init_mvs: diff --git a/vp9/encoder/vp9_encoder.c b/vp9/encoder/vp9_encoder.c index cfd82d3e6..88178e43a 100644 --- a/vp9/encoder/vp9_encoder.c +++ b/vp9/encoder/vp9_encoder.c @@ -7096,7 +7096,7 @@ static void setup_tpl_stats(VP9_COMP *cpi) { } static void init_encode_frame_result(ENCODE_FRAME_RESULT *encode_frame_result) { - encode_frame_result->show_idx = -1; // Actual encoding deosn't happen. + encode_frame_result->show_idx = -1; // Actual encoding doesn't happen. } #if !CONFIG_REALTIME_ONLY -- 2.50.1