Skip to content
GitLab
Menu
Projects
Groups
Snippets
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
1dcb7075
Commit
1dcb7075
authored
May 12, 2017
by
Sebastien Alaiwan
Committed by
Frédéric BARBIER
May 12, 2017
Browse files
Fix HBD compilation of intrabc
Change-Id: Ie5718de1eb70fd753c2bfd7df9581aa92e13984c
parent
64ed2ce7
Changes
2
Hide whitespace changes
Inline
Side-by-side
av1/encoder/encoder.c
View file @
1dcb7075
...
...
@@ -3946,9 +3946,9 @@ static void set_frame_size(AV1_COMP *cpi) {
}
#if CONFIG_INTRABC
#if CONFIG_HIGHBITDEPTH
av1_setup_scale_factors_for_frame
(
&
xd
->
sf_identity
,
cm
->
width
,
cm
->
height
,
cm
->
width
,
cm
->
height
,
(
buf
->
flags
&
YV12_FLAG_HIGHBITDEPTH
)
?
1
:
0
);
av1_setup_scale_factors_for_frame
(
&
xd
->
sf_identity
,
cm
->
width
,
cm
->
height
,
cm
->
width
,
cm
->
height
,
cm
->
use_highbitdepth
);
#else
av1_setup_scale_factors_for_frame
(
&
xd
->
sf_identity
,
cm
->
width
,
cm
->
height
,
cm
->
width
,
cm
->
height
);
...
...
configure
View file @
1dcb7075
...
...
@@ -510,7 +510,6 @@ post_process_cmdline() {
soft_enable palette_throughput
# Workaround features currently incompatible with highbitdepth
enabled intrabc
&&
disable_feature highbitdepth
enabled pvq
&&
disable_feature highbitdepth
enabled daala_dist
&&
disable_feature highbitdepth
enabled tx64x64
&&
disable_feature highbitdepth
...
...
Write
Preview
Supports
Markdown
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