shithub: libvpx

Download patch

ref: 64b469f4f604e8bcf27159e0661d08bcfdac7374
parent: 9cd933ff51ab2ba1817a4f44e9016d321b3c9022
parent: 652beb6ac10f2f550718a33e7987dd1b99192ddc
author: James Zern <jzern@google.com>
date: Fri Jan 10 20:20:39 EST 2020

Merge "trivial: fix spelling errors"

--- a/tools/3D-Reconstruction/MotionEST/Anandan.py
+++ b/tools/3D-Reconstruction/MotionEST/Anandan.py
@@ -122,7 +122,7 @@
           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:
--- a/vp9/encoder/vp9_encoder.c
+++ b/vp9/encoder/vp9_encoder.c
@@ -7096,7 +7096,7 @@
 }
 
 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