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
3b56d892
Commit
3b56d892
authored
Sep 08, 2014
by
Yaowu Xu
Committed by
Gerrit Code Review
Sep 08, 2014
Browse files
Merge "Fix a visual studio warning"
parents
a61973bf
dbdb87b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpxenc.c
View file @
3b56d892
...
...
@@ -1202,7 +1202,7 @@ static void validate_stream_config(const struct stream_state *stream,
// Check that the codec bit depth is greater than the input bit depth.
if
(
stream
->
config
.
cfg
.
g_input_bit_depth
>
(
int
)
stream
->
config
.
cfg
.
g_bit_depth
)
{
(
unsigned
int
)
stream
->
config
.
cfg
.
g_bit_depth
)
{
fatal
(
"Stream %d: codec bit depth (%d) less than input bit depth (%d)"
,
stream
->
index
,
(
int
)
stream
->
config
.
cfg
.
g_bit_depth
,
stream
->
config
.
cfg
.
g_input_bit_depth
);
...
...
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