<div style="line-height:1.7;color:#000000;font-size:14px;font-family:arial"><div>From ea93a3ddb7e8c7e106955acef56f6df72a15587a Mon Sep 17 00:00:00 2001</div><div>From: Min Chen <min.chen@multicorewareinc.com></div><div>Date: Tue, 13 Sep 2016 10:59:09 -0500</div><div>Subject: [PATCH] [slice] fix help information defaule value mistake</div><div><br></div><div>---</div><div> source/x265cli.h |    2 +-</div><div> 1 files changed, 1 insertions(+), 1 deletions(-)</div><div><br></div><div>diff --git a/source/x265cli.h b/source/x265cli.h</div><div>index 2bd853f..99ac5c9 100644</div><div>--- a/source/x265cli.h</div><div>+++ b/source/x265cli.h</div><div>@@ -302,7 +302,7 @@ static void showHelp(x265_param *param)</div><div>     H0("                                 '-' implies no threads on node, '+' implies one thread per core on node\n");</div><div>     H0("-F/--frame-threads <integer>     Number of concurrently encoded frames. 0: auto-determined by core count\n");</div><div>     H0("   --[no-]wpp                    Enable Wavefront Parallel Processing. Default %s\n", OPT(param->bEnableWavefront));</div><div>-    H0("   --[no-]slices <integer>       Enable Multiple Slices feature. Default %s\n", OPT(param->maxSlices));</div><div>+    H0("   --[no-]slices <integer>       Enable Multiple Slices feature. Default %d\n", param->maxSlices);</div><div>     H0("   --[no-]pmode                  Parallel mode analysis. Default %s\n", OPT(param->bDistributeModeAnalysis));</div><div>     H0("   --[no-]pme                    Parallel motion estimation. Default %s\n", OPT(param->bDistributeMotionEstimation));</div><div>     H0("   --[no-]asm <bool|int|string>  Override CPU detection. Default: auto\n");</div><div>-- </div><div>1.7.9.msysgit.0</div><div><br></div></div>