]> granicus.if.org Git - libvpx/commitdiff
Set min_block_size for aq_mode=3 to 8x8.
authorMarco Paniconi <marpan@google.com>
Wed, 2 Apr 2014 18:03:27 +0000 (11:03 -0700)
committerMarco Paniconi <marpan@google.com>
Wed, 2 Apr 2014 21:09:38 +0000 (14:09 -0700)
For real-time mode under cbr, this increases the gain (5-10%)
for speed 5 (none/little change for 6), on vc-clips.

Change-Id: I9b38beeb3c820de22c43a0ba53a9456168dd24ba

vp9/encoder/vp9_aq_cyclicrefresh.c

index 1d272e1d9033b421685a8cc8393dabed50b88d8b..2e1b4ef5f013c872ef3b48b36b923b53ddba6afe 100644 (file)
@@ -204,7 +204,7 @@ void vp9_cyclic_refresh_setup(VP9_COMP *const cpi) {
     // Some of these parameters may be set via codec-control function later.
     cr->max_sbs_perframe = 10;
     cr->max_qdelta_perc = 50;
-    cr->min_block_size = BLOCK_16X16;
+    cr->min_block_size = BLOCK_8X8;
     cr->time_for_refresh = 1;
     // Set rate threshold to some fraction of target (and scaled by 256).
     cr->thresh_rate_sb = (rc->sb64_target_rate * 256) >> 2;