summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_encodeframe.c
diff options
context:
space:
mode:
authorAdrian Grange <agrange@google.com>2013-07-24 07:58:26 -0700
committerAdrian Grange <agrange@google.com>2013-07-24 07:58:26 -0700
commitbc8b0529db9bcacadeaaf7b4faed76da4fae6a58 (patch)
tree9f9f9ff5662f35d5270b9c94ba3f94e6431e6136 /vp9/encoder/vp9_encodeframe.c
parent646edbc1b21773f1b5be0928da00b9b363fa9054 (diff)
downloadlibvpx-bc8b0529db9bcacadeaaf7b4faed76da4fae6a58.tar
libvpx-bc8b0529db9bcacadeaaf7b4faed76da4fae6a58.tar.gz
libvpx-bc8b0529db9bcacadeaaf7b4faed76da4fae6a58.tar.bz2
libvpx-bc8b0529db9bcacadeaaf7b4faed76da4fae6a58.zip
Correct spelling mistakes
Change-Id: Id4138293efeac4503b2e01ce7a6c150a5abeef77
Diffstat (limited to 'vp9/encoder/vp9_encodeframe.c')
-rw-r--r--vp9/encoder/vp9_encodeframe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp9/encoder/vp9_encodeframe.c b/vp9/encoder/vp9_encodeframe.c
index e28f5fb80..0ab062cc6 100644
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -2283,9 +2283,9 @@ void vp9_encode_frame(VP9_COMP *cpi) {
// In the longer term the encoder should be generalized to match the
// decoder such that we allow compound where one of the 3 buffers has a
- // differnt sign bias and that buffer is then the fixed ref. However, this
+ // different sign bias and that buffer is then the fixed ref. However, this
// requires further work in the rd loop. For now the only supported encoder
- // side behaviour is where the ALT ref buffer has oppositie sign bias to
+ // side behaviour is where the ALT ref buffer has opposite sign bias to
// the other two.
if ((cm->ref_frame_sign_bias[ALTREF_FRAME]
== cm->ref_frame_sign_bias[GOLDEN_FRAME])
@@ -2331,7 +2331,7 @@ void vp9_encode_frame(VP9_COMP *cpi) {
/* filter type selection */
// FIXME(rbultje) for some odd reason, we often select smooth_filter
// as default filter for ARF overlay frames. This is a REALLY BAD
- // IDEA so we explicitely disable it here.
+ // IDEA so we explicitly disable it here.
if (frame_type != 3 &&
cpi->rd_filter_threshes[frame_type][1] >
cpi->rd_filter_threshes[frame_type][0] &&