summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2011-03-08 14:46:22 +0000
committerPaul Wilkins <paulwilkins@google.com>2011-03-08 14:46:22 +0000
commitde87c420ef8b516cfb0983e08dc92696069b7967 (patch)
tree14dacfa07833f2c8517497ffa50ef3b9a074b828
parent0eccee4378d89c3578b283829f7a90b8c4967de6 (diff)
downloadlibvpx-de87c420ef8b516cfb0983e08dc92696069b7967.tar
libvpx-de87c420ef8b516cfb0983e08dc92696069b7967.tar.gz
libvpx-de87c420ef8b516cfb0983e08dc92696069b7967.tar.bz2
libvpx-de87c420ef8b516cfb0983e08dc92696069b7967.zip
Corrected minor typos.
Change-Id: Icc9f12bd1e1bdaf51256dc8a90d08aa9be89ef34
-rw-r--r--vp8/encoder/firstpass.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp8/encoder/firstpass.c b/vp8/encoder/firstpass.c
index ef0399326..b5470f8f6 100644
--- a/vp8/encoder/firstpass.c
+++ b/vp8/encoder/firstpass.c
@@ -1396,7 +1396,7 @@ double get_prediction_decay_rate(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame)
return prediction_decay_rate;
}
-// Funtion to test for a condition where a complex transition is followe
+// Function to test for a condition where a complex transition is followed
// by a static section. For example in slide shows where there is a fade
// between slides. This is to help with more optimal kf and gf positioning.
BOOL detect_transition_to_still(
@@ -1409,7 +1409,7 @@ BOOL detect_transition_to_still(
BOOL trans_to_still = FALSE;
// Break clause to detect very still sections after motion
- // For example a staic image after a fade or other transition
+ // For example a static image after a fade or other transition
// instead of a clean scene cut.
if ( (frame_interval > MIN_GF_INTERVAL) &&
(loop_decay_rate >= 0.999) &&