[x265] [PATCH 1 of 4] common: improve logging string for lookahead configuration - conveys more info

Steve Borho steve at borho.org
Fri Sep 20 03:18:40 CEST 2013


# HG changeset patch
# User Steve Borho <steve at borho.org>
# Date 1379638315 18000
#      Thu Sep 19 19:51:55 2013 -0500
# Node ID 233046035a5f678d0cfe79e52215d38502d5cd35
# Parent  5c6c9c095cb8d1e0754a7a895e10d5174b7df4e2
common: improve logging string for lookahead configuration - conveys more info

diff -r 5c6c9c095cb8 -r 233046035a5f source/common/common.cpp
--- a/source/common/common.cpp	Thu Sep 19 19:31:25 2013 -0500
+++ b/source/common/common.cpp	Thu Sep 19 19:51:55 2013 -0500
@@ -392,7 +392,7 @@
     {
         x265_log(param, X265_LOG_INFO, "RDpenalty                    : %d\n", param->rdPenalty);
     }
-    x265_log(param, X265_LOG_INFO, "Lookahead len / -b / bAdapt  : %d / %d / %d\n", param->lookaheadDepth, param->bframes, param->bFrameAdaptive);
+    x265_log(param, X265_LOG_INFO, "Lookahead / bframes / badapt : %d / %d / %d\n", param->lookaheadDepth, param->bframes, param->bFrameAdaptive);
     x265_log(param, X265_LOG_INFO, "tools: ");
 #define TOOLOPT(FLAG, STR) if (FLAG) fprintf(stderr, "%s ", STR)
     TOOLOPT(param->bEnableRectInter, "rect");


More information about the x265-devel mailing list