diff options
author | Scott Graham <scottmg@chromium.org> | 2012-05-08 11:45:35 -0700 |
---|---|---|
committer | John Koleszar <jkoleszar@google.com> | 2012-05-11 12:36:50 -0700 |
commit | 92963df086fc629859e4d51d2b4098ea8691c249 (patch) | |
tree | 4e2484184d7ea4e9e4da9beee3977d88ed7f5514 /vp8/vp8_cx_iface.c | |
parent | 44d35f7b257cc3e737a38eb9537d57c3e0479885 (diff) | |
download | libvpx-92963df086fc629859e4d51d2b4098ea8691c249.tar libvpx-92963df086fc629859e4d51d2b4098ea8691c249.tar.gz libvpx-92963df086fc629859e4d51d2b4098ea8691c249.tar.bz2 libvpx-92963df086fc629859e4d51d2b4098ea8691c249.zip |
fix warnings for building on win32
Change-Id: If6e11ba3d681e831d7d98662c0abdd2ac16b3811
Diffstat (limited to 'vp8/vp8_cx_iface.c')
-rw-r--r-- | vp8/vp8_cx_iface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/vp8_cx_iface.c b/vp8/vp8_cx_iface.c index 920c7632c..8509b9ead 100644 --- a/vp8/vp8_cx_iface.c +++ b/vp8/vp8_cx_iface.c @@ -227,7 +227,7 @@ static vpx_codec_err_t validate_config(vpx_codec_alg_priv_t *ctx, if (cfg->ts_number_layers > 1) { - int i; + unsigned int i; RANGE_CHECK_HI(cfg, ts_periodicity, 16); for (i=1; i<cfg->ts_number_layers; i++) |