From: Jingning Han Date: Mon, 17 Dec 2018 18:30:17 +0000 (-0800) Subject: Add PSNR_AQ mode X-Git-Tag: v1.8.0~61^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1358fdf2cb3ff608fa71ab273e980bef57e61408;p=libvpx Add PSNR_AQ mode Placeholder to support adaptive quantizer for PSNR and SSIM coding quality improvement. Change-Id: Id967c9914bb1d72a6f480ef1ba9d6650914dd658 --- diff --git a/vp9/encoder/vp9_encoder.h b/vp9/encoder/vp9_encoder.h index 5974750cf..c7c45e3a4 100644 --- a/vp9/encoder/vp9_encoder.h +++ b/vp9/encoder/vp9_encoder.h @@ -119,9 +119,10 @@ typedef enum { COMPLEXITY_AQ = 2, CYCLIC_REFRESH_AQ = 3, EQUATOR360_AQ = 4, + PSNR_AQ = 5, // AQ based on lookahead temporal // variance (only valid for altref frames) - LOOKAHEAD_AQ = 5, + LOOKAHEAD_AQ = 6, AQ_MODE_COUNT // This should always be the last member of the enum } AQ_MODE;