Skip to content
GitLab
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
bb8eebc0
Commit
bb8eebc0
authored
Feb 09, 2016
by
Yaowu Xu
Committed by
Gerrit Code Review
Feb 09, 2016
Browse files
Merge "Set use_highbitdepth flag to either 1 or 0"
parents
29e21188
5c327cb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encoder.c
View file @
bb8eebc0
...
...
@@ -4141,7 +4141,7 @@ int vp9_receive_raw_frame(VP9_COMP *cpi, unsigned int frame_flags,
const
int
subsampling_x
=
sd
->
subsampling_x
;
const
int
subsampling_y
=
sd
->
subsampling_y
;
#if CONFIG_VP9_HIGHBITDEPTH
const
int
use_highbitdepth
=
sd
->
flags
&
YV12_FLAG_HIGHBITDEPTH
;
const
int
use_highbitdepth
=
(
sd
->
flags
&
YV12_FLAG_HIGHBITDEPTH
)
!=
0
;
check_initial_width
(
cpi
,
use_highbitdepth
,
subsampling_x
,
subsampling_y
);
#else
check_initial_width
(
cpi
,
subsampling_x
,
subsampling_y
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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