summaryrefslogtreecommitdiff
path: root/vp9/simple_encode.h
diff options
context:
space:
mode:
authorangiebird <angiebird@google.com>2019-11-21 11:09:52 -0800
committerangiebird <angiebird@google.com>2019-11-25 10:37:25 -0800
commit85108a55b2cf5ea6b61d9a983531068dc5a85473 (patch)
treed1a909d4533e01a2ba0ca80ee3ff2eef0a092ac5 /vp9/simple_encode.h
parent2157d613c56095de9ec442376b6386ba9fc0e584 (diff)
downloadlibvpx-85108a55b2cf5ea6b61d9a983531068dc5a85473.tar
libvpx-85108a55b2cf5ea6b61d9a983531068dc5a85473.tar.gz
libvpx-85108a55b2cf5ea6b61d9a983531068dc5a85473.tar.bz2
libvpx-85108a55b2cf5ea6b61d9a983531068dc5a85473.zip
Correct typo in simple_encode.h
Change-Id: Ifa858acad8b943d1579283fd1c72ff41434c0710
Diffstat (limited to 'vp9/simple_encode.h')
-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: