shithub: libvpx

Download patch

ref: 85108a55b2cf5ea6b61d9a983531068dc5a85473
parent: 2157d613c56095de9ec442376b6386ba9fc0e584
author: angiebird <angiebird@google.com>
date: Thu Nov 21 06:09:52 EST 2019

Correct typo in simple_encode.h

Change-Id: Ifa858acad8b943d1579283fd1c72ff41434c0710

--- a/vp9/simple_encode.h
+++ b/vp9/simple_encode.h
@@ -53,25 +53,25 @@
   std::vector<std::vector<double>> ObserveFirstPassStats();
 
   // Initializes the encoder for actual encoding.
-  // This funtion should be called after ComputeFirstPassStats().
+  // This function should be called after ComputeFirstPassStats().
   void StartEncode();
 
   // Frees the encoder.
-  // This funtion should be called after StartEncode() or EncodeFrame().
+  // This function should be called after StartEncode() or EncodeFrame().
   void EndEncode();
 
   // Encodes a frame
-  // This funtion should be called after StartEncode() and before EndEncode().
+  // This function should be called after StartEncode() and before EndEncode().
   void EncodeFrame(EncodeFrameResult *encode_frame_result);
 
   // Encodes a frame with a specific quantize index.
-  // This funtion should be called after StartEncode() and before EndEncode().
+  // This function should be called after StartEncode() and before EndEncode().
   void EncodeFrameWithQuantizeIndex(EncodeFrameResult *encode_frame_result,
                                     int quantize_index);
 
   // Gets the number of coding frames for the video. The coding frames include
   // show frame and no show frame.
-  // This funtion should be called after ComputeFirstPassStats().
+  // This function should be called after ComputeFirstPassStats().
   int GetCodingFrameNum();
 
  private: