From 23eccb3ca75a5e84a22db5ae68d007433c86ecc3 Mon Sep 17 00:00:00 2001 From: Marco Date: Mon, 25 Sep 2017 13:36:25 -0700 Subject: [PATCH] SVC: Add setting for max_intra_rate_pct in sample encoder. Set it as default to 900. Change-Id: Id2d990925dccff1f6762411c66ea95973440c92f --- examples/vp9_spatial_svc_encoder.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/vp9_spatial_svc_encoder.c b/examples/vp9_spatial_svc_encoder.c index 21b70596e..2c9aa67df 100644 --- a/examples/vp9_spatial_svc_encoder.c +++ b/examples/vp9_spatial_svc_encoder.c @@ -709,6 +709,7 @@ int main(int argc, const char **argv) { vpx_codec_control(&codec, VP9E_SET_AQ_MODE, 3); if (svc_ctx.speed >= 5) vpx_codec_control(&codec, VP8E_SET_STATIC_THRESHOLD, 1); + vpx_codec_control(&codec, VP8E_SET_MAX_INTRA_BITRATE_PCT, 900); // Encode frames while (!end_of_stream) { -- 2.49.0