summaryrefslogtreecommitdiff
path: root/vp8
diff options
context:
space:
mode:
authorFrank Galligan <fgalligan@google.com>2010-10-04 21:12:22 -0400
committerJohn Koleszar <jkoleszar@google.com>2010-10-19 20:18:13 -0700
commit15542721eed9f434b4d9c670d4184c566705bfb7 (patch)
treeee94df18da6b9f1afa11c16c503231b5e5f7190b /vp8
parentf143a8119129411522a3c153b0bff6514c3a165d (diff)
downloadlibvpx-15542721eed9f434b4d9c670d4184c566705bfb7.tar
libvpx-15542721eed9f434b4d9c670d4184c566705bfb7.tar.gz
libvpx-15542721eed9f434b4d9c670d4184c566705bfb7.tar.bz2
libvpx-15542721eed9f434b4d9c670d4184c566705bfb7.zip
Update arnr strength range form 1-6 to 0-6.
Change-Id: I8eb49c56f7509f0a8074d440e8345b9e3344b85b
Diffstat (limited to 'vp8')
-rw-r--r--vp8/vp8_cx_iface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/vp8_cx_iface.c b/vp8/vp8_cx_iface.c
index a6cb27b93..499bc503a 100644
--- a/vp8/vp8_cx_iface.c
+++ b/vp8/vp8_cx_iface.c
@@ -184,7 +184,7 @@ static vpx_codec_err_t validate_config(vpx_codec_alg_priv_t *ctx,
RANGE_CHECK(vp8_cfg, token_partitions, VP8_ONE_TOKENPARTITION, VP8_EIGHT_TOKENPARTITION);
RANGE_CHECK_HI(vp8_cfg, Sharpness, 7);
RANGE_CHECK(vp8_cfg, arnr_max_frames, 0, 15);
- RANGE_CHECK(vp8_cfg, arnr_strength, 1, 6);
+ RANGE_CHECK_HI(vp8_cfg, arnr_strength, 6);
RANGE_CHECK(vp8_cfg, arnr_type, 1, 3);
if (cfg->g_pass == VPX_RC_LAST_PASS)