From: Paul Wilkins Date: Mon, 19 Jul 2010 10:32:09 +0000 (+0100) Subject: Parameter limit change. X-Git-Tag: v0.9.2~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=02277b8aa34a007ab211475605926b5942257658;p=libvpx Parameter limit change. Change maximum ARNR filter width to 15. Change-Id: I3b72450ea08e96287445ec18810630ee2292954c --- diff --git a/vp8/vp8_cx_iface.c b/vp8/vp8_cx_iface.c index 666432751..d0c47b35a 100644 --- a/vp8/vp8_cx_iface.c +++ b/vp8/vp8_cx_iface.c @@ -178,7 +178,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(vp8_cfg, Sharpness, 0, 7); - RANGE_CHECK(vp8_cfg, arnr_max_frames, 0, 25); + RANGE_CHECK(vp8_cfg, arnr_max_frames, 0, 15); RANGE_CHECK(vp8_cfg, arnr_strength, 0, 6); RANGE_CHECK(vp8_cfg, arnr_type, 0, 0xffffffff);