summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-02-05 19:33:39 -0800
committerJames Zern <jzern@google.com>2014-02-05 19:33:39 -0800
commit7474aebf8cfc931e6ad9b3a7443730c26224bda3 (patch)
tree089097ff80b012480e01ccf359552b84e7f44d98 /examples
parentcebda1b65cf821b3dd7bbdd3a93c8e2bfe9b499b (diff)
downloadlibvpx-7474aebf8cfc931e6ad9b3a7443730c26224bda3.tar
libvpx-7474aebf8cfc931e6ad9b3a7443730c26224bda3.tar.gz
libvpx-7474aebf8cfc931e6ad9b3a7443730c26224bda3.tar.bz2
libvpx-7474aebf8cfc931e6ad9b3a7443730c26224bda3.zip
vp8_set_maps.c: silence some type warnings
Change-Id: I371863fc68f4984a223a684f9e89b25e9991e1e7
Diffstat (limited to 'examples')
-rw-r--r--examples/vp8_set_maps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/vp8_set_maps.c b/examples/vp8_set_maps.c
index 242788fd4..4c0e8a0ba 100644
--- a/examples/vp8_set_maps.c
+++ b/examples/vp8_set_maps.c
@@ -201,7 +201,7 @@ int main(int argc, char **argv) {
if(frame_cnt + 1 == 22) {
vpx_roi_map_t roi;
- int i;
+ unsigned int i;
roi.rows = cfg.g_h/16;
roi.cols = cfg.g_w/16;
@@ -232,7 +232,7 @@ int main(int argc, char **argv) {
free(roi.roi_map);
} else if(frame_cnt + 1 == 33) {
vpx_active_map_t active;
- int i;
+ unsigned int i;
active.rows = cfg.g_h/16;
active.cols = cfg.g_w/16;