summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco <marpan@chromium.org>2015-09-09 14:51:14 -0700
committerMarco <marpan@chromium.org>2015-09-09 15:34:58 -0700
commit3140e9017525e2967e84debbb77fc231d7a265d6 (patch)
tree1b19736e512f68ad272e2d00248621046cb64d35
parent64677c7e996684b7230afe90d598ec14221db2cd (diff)
downloadlibvpx-3140e9017525e2967e84debbb77fc231d7a265d6.tar
libvpx-3140e9017525e2967e84debbb77fc231d7a265d6.tar.gz
libvpx-3140e9017525e2967e84debbb77fc231d7a265d6.tar.bz2
libvpx-3140e9017525e2967e84debbb77fc231d7a265d6.zip
vp8: Small adjustment to cyclic_refresh max_mbs_perframe.
For 3 temporal layers, reduce somewhat the cyclic_refresh_mode_max_mbs_perframe parameter, from 20% to ~14%. Small increase in PSNR/SSIM metrics. Change-Id: Ia216fa5474048f1ef7fe3db88cd60dfef2a1bf8a
-rw-r--r--vp8/encoder/onyx_if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c
index 30a047744..f1b932632 100644
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -1918,7 +1918,7 @@ struct VP8_COMP* vp8_create_compressor(VP8_CONFIG *oxcf)
* Currently this is tied to error resilliant mode
*/
cpi->cyclic_refresh_mode_enabled = cpi->oxcf.error_resilient_mode;
- cpi->cyclic_refresh_mode_max_mbs_perframe = (cpi->common.mb_rows * cpi->common.mb_cols) / 5;
+ cpi->cyclic_refresh_mode_max_mbs_perframe = (cpi->common.mb_rows * cpi->common.mb_cols) / 7;
if (cpi->oxcf.number_of_layers == 1) {
cpi->cyclic_refresh_mode_max_mbs_perframe =
(cpi->common.mb_rows * cpi->common.mb_cols) / 20;