summaryrefslogtreecommitdiff
path: root/examples/vp9cx_set_ref.c
diff options
context:
space:
mode:
authorYunqing Wang <yunqingwang@google.com>2016-07-07 08:43:57 -0700
committerYunqing Wang <yunqingwang@google.com>2016-07-07 08:43:57 -0700
commit9ef37860cd689269e44a01da79c667a3dbf6f2a4 (patch)
treef8a79b376393854588008530884e96fb049c7626 /examples/vp9cx_set_ref.c
parentfba5c354adf95bb7af3e2262b332ff1c85cd3829 (diff)
downloadlibvpx-9ef37860cd689269e44a01da79c667a3dbf6f2a4.tar
libvpx-9ef37860cd689269e44a01da79c667a3dbf6f2a4.tar.gz
libvpx-9ef37860cd689269e44a01da79c667a3dbf6f2a4.tar.bz2
libvpx-9ef37860cd689269e44a01da79c667a3dbf6f2a4.zip
Fix Visual Studio build warning
Fixed signed/unsigned mismatch warning. Change-Id: I1634d0634de752f4b8baa8059e8f3e2891fa53b6
Diffstat (limited to 'examples/vp9cx_set_ref.c')
-rw-r--r--examples/vp9cx_set_ref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/vp9cx_set_ref.c b/examples/vp9cx_set_ref.c
index acf79dbca..196936a53 100644
--- a/examples/vp9cx_set_ref.c
+++ b/examples/vp9cx_set_ref.c
@@ -306,7 +306,7 @@ int main(int argc, char **argv) {
unsigned int frame_out = 0;
// The frame number to set reference frame on
- int update_frame_num = 0;
+ unsigned int update_frame_num = 0;
int mismatch_seen = 0;
const int fps = 30;