Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
5f0c41de
Commit
5f0c41de
authored
Jan 24, 2018
by
Thomas Daede
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CDF_STORAGE_REDUCTION experiment flag.
Change-Id: I8ce208e842b738bb729d5732f0f35366c3549063
parent
4d24a989
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
aom_dsp/prob.h
aom_dsp/prob.h
+4
-1
build/cmake/aom_config_defaults.cmake
build/cmake/aom_config_defaults.cmake
+1
-0
No files found.
aom_dsp/prob.h
View file @
5f0c41de
...
...
@@ -31,8 +31,11 @@ extern "C" {
typedef
uint16_t
aom_cdf_prob
;
#define CDF_SIZE(x) ((x) + 1)
#if CONFIG_CDF_STORAGE_REDUCTION
#define CDF_PROB_BITS 14
#else
#define CDF_PROB_BITS 15
#endif
#define CDF_PROB_TOP (1 << CDF_PROB_BITS)
#define CDF_INIT_TOP 32768
#define CDF_SHIFT (15 - CDF_PROB_BITS)
...
...
build/cmake/aom_config_defaults.cmake
View file @
5f0c41de
...
...
@@ -92,6 +92,7 @@ set(CONFIG_AMVR 0 CACHE NUMBER "AV1 experiment flag.")
set
(
CONFIG_AOM_QM 1 CACHE NUMBER
"AV1 experiment flag."
)
set
(
CONFIG_AOM_QM_EXT 0 CACHE NUMBER
"AV1 experiment flag."
)
set
(
CONFIG_BGSPRITE 0 CACHE NUMBER
"AV1 experiment flag."
)
set
(
CONFIG_CDF_STORAGE_REDUCTION 0 CACHE NUMBER
"AV1 experiment flag."
)
set
(
CONFIG_CFL 1 CACHE NUMBER
"AV1 experiment flag."
)
set
(
CONFIG_CICP 0 CACHE NUMBER
"AV1 experiment flag."
)
set
(
CONFIG_COLORSPACE_HEADERS 0 CACHE NUMBER
"AV1 experiment flag."
)
...
...
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