summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2019-03-20 21:31:12 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-03-20 21:31:12 +0000
commit4161a55f7fba3d157226cff119fcbe401159fba1 (patch)
tree41f9417b2d32dd1ccafd10ee4f8a5253d97bdf6c /vp9
parent3b6b98e2017dc165e23012de29fc0123ab9ba459 (diff)
parent585b5dd81782f9ca72998482688ac1e0215bc458 (diff)
downloadlibvpx-4161a55f7fba3d157226cff119fcbe401159fba1.tar
libvpx-4161a55f7fba3d157226cff119fcbe401159fba1.tar.gz
libvpx-4161a55f7fba3d157226cff119fcbe401159fba1.tar.bz2
libvpx-4161a55f7fba3d157226cff119fcbe401159fba1.zip
Merge "Drop Wiener variance diff scale from 8 to 4"
Diffstat (limited to 'vp9')
-rw-r--r--vp9/encoder/vp9_segmentation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_segmentation.c b/vp9/encoder/vp9_segmentation.c
index 846ee3bb9..a163297e6 100644
--- a/vp9/encoder/vp9_segmentation.c
+++ b/vp9/encoder/vp9_segmentation.c
@@ -67,7 +67,7 @@ void vp9_perceptual_aq_mode_setup(struct VP9_COMP *cpi,
const int base_qindex = cm->base_qindex;
const double base_qstep = vp9_convert_qindex_to_q(base_qindex, cm->bit_depth);
const double mid_ctr = cpi->kmeans_ctr_ls[seg_counts / 2];
- const double var_diff_scale = 8.0;
+ const double var_diff_scale = 4.0;
int i;
assert(seg_counts <= MAX_SEGMENTS);