[x265] [PATCH] fix: help for rskip cli option to avoid make errors

Srikanth Kurapati srikanth.kurapati at multicorewareinc.com
Wed Sep 23 15:50:31 CEST 2020


>From 00a099092918fa9899cbd445129443cfdbfa8860 Mon Sep 17 00:00:00 2001
From: Srikanth Kurapati <srikanth.kurapati at multicorewareinc.com>
Date: Wed, 23 Sep 2020 19:13:53 +0530
Subject: [PATCH] edit: help documentation for recursion skip

---
 source/x265cli.cpp | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/source/x265cli.cpp b/source/x265cli.cpp
index c28dd7f8c..3f66a4bad 100755
--- a/source/x265cli.cpp
+++ b/source/x265cli.cpp
@@ -127,9 +127,8 @@ namespace X265_NS {
         H0("   --[no-]ssim-rd                Enable ssim rate distortion
optimization, 0 to disable. Default %s\n", OPT(param->bSsimRd));
         H0("   --[no-]rd-refine              Enable QP based RD refinement
for rd levels 5 and 6. Default %s\n", OPT(param->bEnableRdRefine));
         H0("   --[no-]early-skip             Enable early SKIP detection.
Default %s\n", OPT(param->bEnableEarlySkip));
-        H0("   --rskip <mode>                Set mode for early exit from
recursion. Mode 1: exit using rdcost & CU homogenity. Mode 2: exit using CU
edge density.\n"
-            "                                 Mode 0: disabled. Default
%d\n", param->recursionSkipMode);
-        H1("   --rskip-edge-threshold        Threshold in terms of
percentage (integer of range [0,100]) for minimum edge density in CUs used
to prun the recursion depth. Applicable only for rskip mode 2. Value is
preset dependent. Default: %.f\n", param->edgeVarThreshold*100.0f);
+        H0("   --rskip <Integer>             Enable recursion skip for
early exit from CTU analysis during inter prediction. 1: exit using RD cost
& CU homogeneity. 2: exit using CU edge density. 0: disabled. Default
%d\n", param->recursionSkipMode);
+        H1("   --rskip-edge-threshold        Threshold in terms of
percentage (an integer of range [0,100]) for minimum edge density in CU's
used to prune the recursion depth. Applicable only to rskip mode 2. Value
is preset dependent. Default: %.f\n", param->edgeVarThreshold*100.0f);
         H1("   --[no-]tskip-fast             Enable fast intra transform
skipping. Default %s\n", OPT(param->bEnableTSkipFast));
         H1("   --[no-]splitrd-skip           Enable skipping split RD
analysis when sum of split CU rdCost larger than one split CU rdCost for
Intra CU. Default %s\n", OPT(param->bEnableSplitRdSkip));
         H1("   --nr-intra <integer>          An integer value in range of
0 to 2000, which denotes strength of noise reduction in intra CUs. Default
0\n");
-- 
2.20.1.windows.1
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.videolan.org/pipermail/x265-devel/attachments/20200923/752b6d3a/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: patch.diff
Type: application/octet-stream
Size: 2509 bytes
Desc: not available
URL: <http://mailman.videolan.org/pipermail/x265-devel/attachments/20200923/752b6d3a/attachment.obj>


More information about the x265-devel mailing list