From ea93a3ddb7e8c7e106955acef56f6df72a15587a Mon Sep 17 00:00:00 2001
From: Min Chen <[email protected]>
Date: Tue, 13 Sep 2016 10:59:09 -0500
Subject: [PATCH] [slice] fix help information defaule value mistake


---
 source/x265cli.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/source/x265cli.h b/source/x265cli.h
index 2bd853f..99ac5c9 100644
--- a/source/x265cli.h
+++ b/source/x265cli.h
@@ -302,7 +302,7 @@ static void showHelp(x265_param *param)
     H0("                                 '-' implies no threads on node, '+' 
implies one thread per core on node\n");
     H0("-F/--frame-threads <integer>     Number of concurrently encoded 
frames. 0: auto-determined by core count\n");
     H0("   --[no-]wpp                    Enable Wavefront Parallel Processing. 
Default %s\n", OPT(param->bEnableWavefront));
-    H0("   --[no-]slices <integer>       Enable Multiple Slices feature. 
Default %s\n", OPT(param->maxSlices));
+    H0("   --[no-]slices <integer>       Enable Multiple Slices feature. 
Default %d\n", param->maxSlices);
     H0("   --[no-]pmode                  Parallel mode analysis. Default 
%s\n", OPT(param->bDistributeModeAnalysis));
     H0("   --[no-]pme                    Parallel motion estimation. Default 
%s\n", OPT(param->bDistributeMotionEstimation));
     H0("   --[no-]asm <bool|int|string>  Override CPU detection. Default: 
auto\n");
-- 
1.7.9.msysgit.0

_______________________________________________
x265-devel mailing list
[email protected]
https://mailman.videolan.org/listinfo/x265-devel

Reply via email to