Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
434baf87
Commit
434baf87
authored
Dec 28, 2017
by
Yaowu Xu
Browse files
Remove "highbitdepth" from configure/cmake
Change-Id: Ibce950e8ca61b1518e8b9364939972315febb234
parent
ed629f83
Changes
4
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
434baf87
...
...
@@ -92,7 +92,7 @@ Both types of options are set at the time CMake is run. The following example
enables ccache and disables high bit depth:
~~~
$ cmake path/to/aom -DENABLE_CCACHE=1
-DCONFIG_HIGHBITDEPTH=0
$ cmake path/to/aom -DENABLE_CCACHE=1
$ make
~~~
...
...
build/cmake/aom_config_defaults.cmake
View file @
434baf87
...
...
@@ -96,7 +96,6 @@ set(CONFIG_UNIT_TESTS 1 CACHE NUMBER "Enables unit tests.")
set
(
CONFIG_ACCOUNTING 0 CACHE NUMBER
"Enables bit accounting."
)
set
(
CONFIG_ANALYZER 0 CACHE NUMBER
"Enables bit stream analyzer."
)
set
(
CONFIG_COEFFICIENT_RANGE_CHECKING 0 CACHE NUMBER
"Coefficient range check."
)
set
(
CONFIG_HIGHBITDEPTH 1 CACHE NUMBER
"Enables high bit depth support."
)
set
(
CONFIG_INSPECTION 0 CACHE NUMBER
"Enables bitstream inspection."
)
set
(
CONFIG_INTERNAL_STATS 0 CACHE NUMBER
"Codec stats."
)
set
(
CONFIG_LOWBITDEPTH 1 CACHE NUMBER
"Enables low bit depth support."
)
...
...
configure
View file @
434baf87
...
...
@@ -36,7 +36,6 @@ Advanced options:
${
toggle_codec_srcs
}
in/exclude codec library source code
${
toggle_debug_libs
}
in/exclude debug version of libraries
${
toggle_static_msvcrt
}
use static MSVCRT (VS builds only)
${
toggle_highbitdepth
}
enable 16-bit generic pixel pipeline (used by high bitdepth profiles)
${
toggle_lowbitdepth
}
enable 8-bit optimized pixel pipeline
${
toggle_av1
}
AV1 codec support
${
toggle_internal_stats
}
output of encoder internal stats for debug, if supported (encoders)
...
...
@@ -200,7 +199,6 @@ enable_feature dependency_tracking
enable_feature spatial_resampling
enable_feature multithread
enable_feature os_support
enable_feature highbitdepth
enable_feature pic
CODECS
=
"
...
...
@@ -376,7 +374,6 @@ CONFIG_LIST="
symbolrate
coefficient_range_checking
lowbitdepth
highbitdepth
experimental
size_limit
${
EXPERIMENT_LIST
}
...
...
@@ -435,7 +432,6 @@ CMDLINE_SELECT="
mismatch_debug
symbolrate
lowbitdepth
highbitdepth
experimental
adopted_experiments
colorspace_headers
...
...
@@ -545,7 +541,6 @@ post_process_cmdline() {
enabled jnt_comp
&&
enable_feature frame_marker
enabled frame_refs
&&
enable_feature frame_marker
enabled frame_sign_bias
&&
enable_feature frame_marker
enabled txmg
&&
enable_feature highbitdepth
enabled ext_skip
&&
enable_feature frame_marker
enabled loopfilter_level
&&
enable_feature parallel_deblocking
enabled loopfilter_level
&&
enable_feature ext_delta_q
...
...
@@ -556,7 +551,6 @@ post_process_cmdline() {
soft_enable daala_tx_dst32
if
enabled daala_tx
;
then
enable_feature highbitdepth
enable_feature daala_tx4
enable_feature daala_tx8
enable_feature daala_tx16
...
...
tools/build_inspector.sh
View file @
434baf87
...
...
@@ -33,7 +33,6 @@ if [ ! -d ".inspect" ]; then
--disable-docs
\
--disable-unit-tests
\
--enable-inspection
\
--enable-highbitdepth
\
--extra-cflags
=
"-D_POSIX_SOURCE"
cd
..
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment