commit | 0ba850ea6de23717e18a49819a4af69bd5b190c1 | [log] [tgz] |
---|---|---|
author | Urvang Joshi <urvang@google.com> | Fri May 12 17:05:45 2017 -0700 |
committer | Ralph Giles <rgiles@mozilla.com> | Sun May 14 19:40:39 2017 +0000 |
tree | f1ed9ec3b6a8d0cb5b44ecc273bc76278cfe63ba | |
parent | 52a2c8387031718e8b8810c38555179fac0116ce [diff] [blame] |
Palette_delta_encoding: compile fix. s/uint16/uint16_t/ Issue introduced in https://aomedia-review.googlesource.com/c/11148/ Change-Id: I77cb5865828adef98976863fafa2ecbb907290a5
diff --git a/av1/decoder/decodemv.c b/av1/decoder/decodemv.c index 2604ead..af226fa 100644 --- a/av1/decoder/decodemv.c +++ b/av1/decoder/decodemv.c
@@ -648,8 +648,8 @@ #if CONFIG_PALETTE_DELTA_ENCODING #if CONFIG_HIGHBITDEPTH static int uint16_compare(const void *a, const void *b) { - const uint16 va = *(const uint16 *)a; - const uint16 vb = *(const uint16 *)b; + const uint16_t va = *(const uint16_t *)a; + const uint16_t vb = *(const uint16_t *)b; return va - vb; } #else