[x265-commits] [x265] param: fix typo in d1d5b377294e

Steve Borho steve at borho.org
Fri Jul 11 23:53:52 CEST 2014


details:   http://hg.videolan.org/x265/rev/6e116afd68e7
branches:  
changeset: 7323:6e116afd68e7
user:      Steve Borho <steve at borho.org>
date:      Fri Jul 11 16:53:40 2014 -0500
description:
param: fix typo in d1d5b377294e

diffstat:

 source/common/param.cpp |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r fd87a7e5b1e3 -r 6e116afd68e7 source/common/param.cpp
--- a/source/common/param.cpp	Fri Jul 11 16:50:36 2014 -0500
+++ b/source/common/param.cpp	Fri Jul 11 16:53:40 2014 -0500
@@ -1279,7 +1279,7 @@ char *x265_param2string(x265_param *p)
             s += sprintf(s, " vbv-maxrate=%d vbv-bufsize=%d",
                           p->rc.vbvMaxBitrate, p->rc.vbvBufferSize);
             if (p->rc.rateControlMode == X265_RC_CRF)
-                s += sprintf(s, " crfmax=%.1f", p->rc.rfConstantMax);
+                s += sprintf(s, " crf-max=%.1f", p->rc.rfConstantMax);
         }
     }
     else if (p->rc.rateControlMode == X265_RC_CQP)


More information about the x265-commits mailing list