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
dbdb87b7
Commit
dbdb87b7
authored
Sep 03, 2014
by
Yaowu Xu
Browse files
Fix a visual studio warning
Change-Id: I7f935e61c8c0ade7893a5212701f07bb346d78cb
parent
3de038f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpxenc.c
View file @
dbdb87b7
...
...
@@ -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
.
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