Fix a visual studio warning
Change-Id: I7f935e61c8c0ade7893a5212701f07bb346d78cb
This commit is contained in:
parent
3de038f396
commit
dbdb87b72f
2
vpxenc.c
2
vpxenc.c
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user