libvpx: Fix some warnings.

Change-Id: If8be8b9d28a29631f29c46daea8a226ab3580610
This commit is contained in:
Frank Galligan
2013-01-18 09:44:23 -08:00
parent 2396302120
commit 9ca907b53e
3 changed files with 7 additions and 7 deletions

View File

@@ -174,7 +174,7 @@ vp9_lookahead_peek(struct lookahead_ctx *ctx,
int index) {
struct lookahead_entry *buf = NULL;
assert(index < ctx->max_sz);
assert(index < (int)ctx->max_sz);
if (index < (int)ctx->sz) {
index += ctx->read_idx;
if (index >= (int)ctx->max_sz)