Improve sign consistency.
authorJohann <johann.koenig@duck.com>
Tue, 23 Apr 2013 16:55:03 +0000 (09:55 -0700)
committerJohann <johann.koenig@duck.com>
Tue, 23 Apr 2013 19:42:20 +0000 (12:42 -0700)
commitac980b71cff73a80c2ea020aeed3520731cb37cf
tree31a85a32126f601557e16aefd885e8a5e2468248
parentf71e5246f214353fea1d14a1d10fcc38859db58d
Improve sign consistency.

Fix warning on windows: signed/unsigned mismatch on lines 415, 454

Comparison was between size_t data_sz >= int index_sz on 415 and
unsigned int data_sz >= int index_sz on 454. Both might be changed to
size_t but that would be tracing and replacing all comparisons is
outside the scope of this change.

In the rest of these two functions ensure unsigned values are used
consistently.

Change-Id: I922b399ceca612a92f44b9d1d331c1c6bae9d768
vp9/vp9_dx_iface.c