[x265] [PATCH] cmake: further cleanups for high-bit-depth comment and desc string
Steve Borho
steve at borho.org
Wed Jun 24 17:26:32 CEST 2015
# HG changeset patch
# User Steve Borho <steve at borho.org>
# Date 1435159577 18000
# Wed Jun 24 10:26:17 2015 -0500
# Node ID e16b8c5fa3aca0a799955a5f27404a1b020ea803
# Parent 3a5cd130f9084147168c02f26de102faf59d193b
cmake: further cleanups for high-bit-depth comment and desc string
diff -r 3a5cd130f908 -r e16b8c5fa3ac source/CMakeLists.txt
--- a/source/CMakeLists.txt Mon Jun 22 17:39:54 2015 -0700
+++ b/source/CMakeLists.txt Wed Jun 24 10:26:17 2015 -0500
@@ -275,14 +275,14 @@
mark_as_advanced(EXTRA_LIB EXTRA_LINK_FLAGS)
if(X64)
- # NOTE: We only officially support 16bit-per-pixel compiles of x265
+ # NOTE: We only officially support high-bit-depth compiles of x265
# on 64bit architectures. Main10 plus large resolution plus slow
# preset plus 32bit address space usually means malloc failure. You
# can disable this if(X64) check if you desparately need a 32bit
# build with 10bit/12bit support, but this violates the "shrink wrap
# license" so to speak. If it breaks you get to keep both halves.
- # You will likely need to compile without assembly
- option(HIGH_BIT_DEPTH "Store pixels as 16bit values" OFF)
+ # You will need to disable assembly manually.
+ option(HIGH_BIT_DEPTH "Store pixel samples as 16bit values (Main10)" OFF)
endif(X64)
if(HIGH_BIT_DEPTH)
add_definitions(-DHIGH_BIT_DEPTH=1)
More information about the x265-devel
mailing list