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
3fa7c9ea
Commit
3fa7c9ea
authored
Feb 19, 2014
by
James Zern
Committed by
Gerrit Code Review
Feb 19, 2014
Browse files
Merge "vp8_set_maps.c: Silence signed/unsigned mismatch MSVC warnings."
parents
e55e02a7
560119c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
examples/vp8_set_maps.c
View file @
3fa7c9ea
...
...
@@ -62,7 +62,7 @@ void usage_exit() {
static
void
set_roi_map
(
const
vpx_codec_enc_cfg_t
*
cfg
,
vpx_codec_ctx_t
*
codec
)
{
int
i
;
unsigned
int
i
;
vpx_roi_map_t
roi
=
{
0
};
roi
.
rows
=
cfg
->
g_h
/
16
;
...
...
@@ -95,7 +95,7 @@ static void set_roi_map(const vpx_codec_enc_cfg_t *cfg,
static
void
set_active_map
(
const
vpx_codec_enc_cfg_t
*
cfg
,
vpx_codec_ctx_t
*
codec
)
{
int
i
;
unsigned
int
i
;
vpx_active_map_t
map
=
{
0
};
map
.
rows
=
cfg
->
g_h
/
16
;
...
...
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