From c6eb185331f2ffa2385b30bd9f1bc6f82c10bc1d Mon Sep 17 00:00:00 2001 From: Jingning Han Date: Wed, 20 Mar 2019 11:13:22 -0700 Subject: [PATCH] Enable all the 8 segments by default for perceptual AQ mode Change-Id: I8999ee74216785c22568a09bce7590c9fc6905c1 --- vp9/encoder/vp9_encodeframe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/encoder/vp9_encodeframe.c b/vp9/encoder/vp9_encodeframe.c index 8aa3df0..4d39520 100644 --- a/vp9/encoder/vp9_encodeframe.c +++ b/vp9/encoder/vp9_encodeframe.c @@ -5896,7 +5896,7 @@ static void encode_frame_internal(VP9_COMP *cpi) { if (cm->show_frame) { int mi_row, mi_col; cpi->kmeans_data_size = 0; - cpi->kmeans_ctr_num = 5; + cpi->kmeans_ctr_num = 8; for (mi_row = 0; mi_row < cm->mi_rows; mi_row += MI_BLOCK_SIZE) for (mi_col = 0; mi_col < cm->mi_cols; mi_col += MI_BLOCK_SIZE) -- 2.7.4