# HG changeset patch
# User Aruna_Matheswaran <aruna@multicorewareinc>
# Date 1562836382 -19800
#      Thu Jul 11 14:43:02 2019 +0530
# Node ID 678215784c3b9ef08f9299fd427aa4ea1f9ee526
# Parent  4f6dde51a5db4f9229bddb60db176f16ac98f505
cli: fix incorrect CLI help of --[no-]aq-motion

diff -r 4f6dde51a5db -r 678215784c3b source/x265cli.h
--- a/source/x265cli.h  Fri Jul 05 10:47:15 2019 +0530
+++ b/source/x265cli.h  Thu Jul 11 14:43:02 2019 +0530
@@ -553,7 +553,7 @@
     H0("   --[no-]hevc-aq                Mode for HEVC Adaptive Quantization. 
Default %s\n", OPT(param->rc.hevcAq));
     H0("   --aq-strength <float>         Reduces blocking and blurring in flat 
and textured areas (0 to 3.0). Default %.2f\n", param->rc.aqStrength);
     H0("   --qp-adaptation-range <float> Delta QP range by QP adaptation based 
on a psycho-visual model (1.0 to 6.0). Default %.2f\n", 
param->rc.qpAdaptationRange);
-    H0("   --[no-]aq-motion              Adaptive Quantization based on the 
relative motion of each CU w.r.t., frame. Default %s\n", 
OPT(param->bOptCUDeltaQP));
+    H0("   --[no-]aq-motion              Block level QP adaption based on the 
relative motion between the block and the frame. Default %s\n", 
OPT(param->bAQMotion));
     H0("   --qg-size <int>               Specifies the size of the 
quantization group (64, 32, 16, 8). Default %d\n", param->rc.qgSize);
     H0("   --[no-]cutree                 Enable cutree for Adaptive 
Quantization. Default %s\n", OPT(param->rc.cuTree));
     H0("   --[no-]rc-grain               Enable ratecontrol mode to handle 
grains specifically. turned on with tune grain. Default %s\n", 
OPT(param->rc.bEnableGrain));
# HG changeset patch
# User Aruna_Matheswaran <aruna@multicorewareinc>
# Date 1562836382 -19800
#      Thu Jul 11 14:43:02 2019 +0530
# Node ID 678215784c3b9ef08f9299fd427aa4ea1f9ee526
# Parent  4f6dde51a5db4f9229bddb60db176f16ac98f505
cli: fix incorrect CLI help of --[no-]aq-motion

diff -r 4f6dde51a5db -r 678215784c3b source/x265cli.h
--- a/source/x265cli.h	Fri Jul 05 10:47:15 2019 +0530
+++ b/source/x265cli.h	Thu Jul 11 14:43:02 2019 +0530
@@ -553,7 +553,7 @@
     H0("   --[no-]hevc-aq                Mode for HEVC Adaptive Quantization. Default %s\n", OPT(param->rc.hevcAq));
     H0("   --aq-strength <float>         Reduces blocking and blurring in flat and textured areas (0 to 3.0). Default %.2f\n", param->rc.aqStrength);
     H0("   --qp-adaptation-range <float> Delta QP range by QP adaptation based on a psycho-visual model (1.0 to 6.0). Default %.2f\n", param->rc.qpAdaptationRange);
-    H0("   --[no-]aq-motion              Adaptive Quantization based on the relative motion of each CU w.r.t., frame. Default %s\n", OPT(param->bOptCUDeltaQP));
+    H0("   --[no-]aq-motion              Block level QP adaption based on the relative motion between the block and the frame. Default %s\n", OPT(param->bAQMotion));
     H0("   --qg-size <int>               Specifies the size of the quantization group (64, 32, 16, 8). Default %d\n", param->rc.qgSize);
     H0("   --[no-]cutree                 Enable cutree for Adaptive Quantization. Default %s\n", OPT(param->rc.cuTree));
     H0("   --[no-]rc-grain               Enable ratecontrol mode to handle grains specifically. turned on with tune grain. Default %s\n", OPT(param->rc.bEnableGrain));
_______________________________________________
x265-devel mailing list
[email protected]
https://mailman.videolan.org/listinfo/x265-devel

Reply via email to