From: Jingning Han Date: Mon, 29 Apr 2019 18:40:42 +0000 (-0700) Subject: Add PERCEPTUAL_AQ tag X-Git-Tag: v1.8.1~80^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a97d750b458fe67af8c163da6acd0488c382091;p=libvpx Add PERCEPTUAL_AQ tag Refactor the percetual AQ mode control. Change-Id: I9c00c32139ec98fd6aebc1d5086e042730f3616f --- 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;