From 5a97d750b458fe67af8c163da6acd0488c382091 Mon Sep 17 00:00:00 2001 From: Jingning Han Date: Mon, 29 Apr 2019 11:40:42 -0700 Subject: [PATCH] Add PERCEPTUAL_AQ tag Refactor the percetual AQ mode control. Change-Id: I9c00c32139ec98fd6aebc1d5086e042730f3616f --- vp9/encoder/vp9_encoder.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vp9/encoder/vp9_encoder.h b/vp9/encoder/vp9_encoder.h index 62896472d..dcf318e29 100644 --- a/vp9/encoder/vp9_encoder.h +++ b/vp9/encoder/vp9_encoder.h @@ -120,9 +120,10 @@ typedef enum { CYCLIC_REFRESH_AQ = 3, EQUATOR360_AQ = 4, PSNR_AQ = 5, + PERCEPTUAL_AQ = 6, // AQ based on lookahead temporal // variance (only valid for altref frames) - LOOKAHEAD_AQ = 6, + LOOKAHEAD_AQ = 7, AQ_MODE_COUNT // This should always be the last member of the enum } AQ_MODE; -- 2.40.0