summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vp8/vp8_cx_iface.c4
-rw-r--r--vpx/vpx_encoder.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/vp8/vp8_cx_iface.c b/vp8/vp8_cx_iface.c
index 6e12e3898..8d3044f6a 100644
--- a/vp8/vp8_cx_iface.c
+++ b/vp8/vp8_cx_iface.c
@@ -152,8 +152,8 @@ static vpx_codec_err_t validate_config(vpx_codec_alg_priv_t *ctx,
RANGE_CHECK_HI(cfg, g_lag_in_frames, 25);
#endif
RANGE_CHECK(cfg, rc_end_usage, VPX_VBR, VPX_Q);
- RANGE_CHECK_HI(cfg, rc_undershoot_pct, 1000);
- RANGE_CHECK_HI(cfg, rc_overshoot_pct, 1000);
+ RANGE_CHECK_HI(cfg, rc_undershoot_pct, 100);
+ RANGE_CHECK_HI(cfg, rc_overshoot_pct, 100);
RANGE_CHECK_HI(cfg, rc_2pass_vbr_bias_pct, 100);
RANGE_CHECK(cfg, kf_mode, VPX_KF_DISABLED, VPX_KF_AUTO);
diff --git a/vpx/vpx_encoder.h b/vpx/vpx_encoder.h
index d62d9ee7e..c4589bea1 100644
--- a/vpx/vpx_encoder.h
+++ b/vpx/vpx_encoder.h
@@ -498,7 +498,7 @@ typedef struct vpx_codec_enc_cfg {
* undershoot level (current rate vs target) beyond which more aggressive
* corrective measures are taken.
* *
- * Valid values in the range VP8:0-1000 VP9: 0-100.
+ * Valid values in the range VP8:0-100 VP9: 0-100.
*/
unsigned int rc_undershoot_pct;
@@ -513,7 +513,7 @@ typedef struct vpx_codec_enc_cfg {
* overshoot level (current rate vs target) beyond which more aggressive
* corrective measures are taken.
*
- * Valid values in the range VP8:0-1000 VP9: 0-100.
+ * Valid values in the range VP8:0-100 VP9: 0-100.
*/
unsigned int rc_overshoot_pct;