summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vp9/simple_encode.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/vp9/simple_encode.h b/vp9/simple_encode.h
index 5c1bd20ad..6033d938f 100644
--- a/vp9/simple_encode.h
+++ b/vp9/simple_encode.h
@@ -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: