Version 3.5 New feature Real-time VBV for ABR (Average BitRate) encodes in –pass 2 using --vbv-live-multi-pass: Improves VBV compliance with no significant impact on coding efficiency. Enhancements to existing features Improved hist-based scene cut algorithm: Reduces false positives by leveraging motion and scene transition info. Support for RADL pictures at IDR scene cuts: Improves coding efficiency with no significant impact on performance. Bidirectional scene cut aware Frame Quantizer Selection: Saves bits than forward masking with no noticeable perceptual quality difference. API changes Additions to x265_param structure to support the newly added features and encoder enhancements. New x265_param options --min-vbv-fullness and --max-vbv-fullness to control min and max VBV fullness. Bug fixes Incorrect VBV lookahead in --analysis-load + --scale-factor. Encoder hang when VBV is used with slices. QP spikes in the row-level VBV rate-control when WPP enabled. Encoder crash in --abr-ladder.
15 lines
381 B
C++
15 lines
381 B
C++
$NetBSD: patch-common_version.cpp,v 1.1 2021/04/10 08:36:03 adam Exp $
|
|
|
|
Recognise NetBSD.
|
|
|
|
--- common/version.cpp.orig 2021-04-10 08:24:32.907512619 +0000
|
|
+++ common/version.cpp
|
|
@@ -61,6 +61,8 @@
|
|
#define ONOS "[Windows]"
|
|
#elif __linux
|
|
#define ONOS "[Linux]"
|
|
+#elif __NetBSD__
|
|
+#define ONOS "[NetBSD]"
|
|
#elif __OpenBSD__
|
|
#define ONOS "[OpenBSD]"
|
|
#elif __CYGWIN__
|