]> granicus.if.org Git - libvpx/commitdiff
Correct typo in simple_encode.h
authorangiebird <angiebird@google.com>
Thu, 21 Nov 2019 19:09:52 +0000 (11:09 -0800)
committerangiebird <angiebird@google.com>
Mon, 25 Nov 2019 18:37:25 +0000 (10:37 -0800)
Change-Id: Ifa858acad8b943d1579283fd1c72ff41434c0710

vp9/simple_encode.h

index 5c1bd20ada75b16df5fd92d7186366f101297b8f..6033d938fa597da5edae913adf043db12bec3f60 100644 (file)
@@ -53,25 +53,25 @@ class SimpleEncode {
   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: