Commit d82eb9d1 authored by Johann's avatar Johann
Browse files

Match unsigned types

Fixes build warning in MSVC:
vp9\vp9_dx_iface.c(420) : warning C4018: '<' : signed/unsigned mismatch
vp9\vp9_dx_iface.c(423) : warning C4018: '<' : signed/unsigned mismatch

Change-Id: Ia238071aee94b2f882c1e74c380adc3df506dfb6
Showing with 1 addition and 1 deletion
...@@ -414,7 +414,7 @@ static void parse_superframe_index(const uint8_t *data, ...@@ -414,7 +414,7 @@ static void parse_superframe_index(const uint8_t *data,
if (data_sz >= index_sz && data[data_sz - index_sz] == marker) { if (data_sz >= index_sz && data[data_sz - index_sz] == marker) {
// found a valid superframe index // found a valid superframe index
int i, j; uint32_t i, j;
const uint8_t *x = data + data_sz - index_sz + 1; const uint8_t *x = data + data_sz - index_sz + 1;
for (i = 0; i < frames; i++) { for (i = 0; i < frames; i++) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment