summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2016-06-13 11:56:42 -0700
committerJohann Koenig <johannkoenig@google.com>2016-06-14 22:54:58 +0000
commit4b8b31838b0a100338cfa78be164232ca3e12f65 (patch)
treed5b7464ccce38c8d2e361174757825d84787fad2
parentc516dd67bc50eecd13dc7fc95b75251cf67c8750 (diff)
downloadlibvpx-4b8b31838b0a100338cfa78be164232ca3e12f65.tar
libvpx-4b8b31838b0a100338cfa78be164232ca3e12f65.tar.gz
libvpx-4b8b31838b0a100338cfa78be164232ca3e12f65.tar.bz2
libvpx-4b8b31838b0a100338cfa78be164232ca3e12f65.zip
Make new_qc signed
Mode is signed Cleans warning in Android build: comparison of integers of different signs: 'int' and 'unsigned int' if (ctx->oxcf.Mode != new_qc) ~~~~~~~~~~~~~~ ^ ~~~~~~ Change-Id: I5cf81c40b103e688a31e1339511f5c9eb27edd38
-rw-r--r--vp8/vp8_cx_iface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/vp8_cx_iface.c b/vp8/vp8_cx_iface.c
index 257d2a0c4..54d45479e 100644
--- a/vp8/vp8_cx_iface.c
+++ b/vp8/vp8_cx_iface.c
@@ -760,7 +760,7 @@ static void pick_quickcompress_mode(vpx_codec_alg_priv_t *ctx,
unsigned long duration,
unsigned long deadline)
{
- unsigned int new_qc;
+ int new_qc;
#if !(CONFIG_REALTIME_ONLY)
/* Use best quality mode if no deadline is given. */