redbtn in the doom9 forums reported an issue in source/common/param.cpp:

po...@multicorewareinc.com schrieb am 11.09.2019 um 19:18:
@@ -1971,6 +1984,7 @@
      BOOL(p->bEnableSAO, "sao");
      BOOL(p->bSaoNonDeblocked, "sao-non-deblock");
      s += sprintf(s, " rd=%d", p->rdLevel);
+    s += sprintf(s, "selective-sao=%d", p->selectiveSAO);
      BOOL(p->bEnableEarlySkip, "early-skip");
      BOOL(p->bEnableRecursionSkip, "rskip");
      BOOL(p->bEnableFastIntra, "fast-intra");

A missing space causes the embedded parameter string to be invalid.

-    s += sprintf(s, "selective-sao=%d", p->selectiveSAO);
+    s += sprintf(s, " selective-sao=%d", p->selectiveSAO);

--

Fun and success!

Mario *LigH* Rohkrämer
maito:cont...@ligh.de
_______________________________________________
x265-devel mailing list
x265-devel@videolan.org
https://mailman.videolan.org/listinfo/x265-devel

Reply via email to