Fix two msvc build issues

Change-Id: Iece22223773dd6d0f87f8f59827705acd2ebe2a4
This commit is contained in:
Yaowu Xu 2015-12-10 12:41:27 -08:00
parent 221ed5e47b
commit 6786280807
2 changed files with 2 additions and 2 deletions

View File

@ -262,7 +262,7 @@ static void vp10_init_intra_predictors_internal(void) {
}
#if CONFIG_MISC_FIXES
static inline void memset16(uint16_t *dst, int val, int n) {
static INLINE void memset16(uint16_t *dst, int val, int n) {
while (n--)
*dst++ = val;
}

View File

@ -1473,7 +1473,7 @@ void vp10_pack_bitstream(VP10_COMP *const cpi, uint8_t *dest, size_t *size) {
assert(n_log2_tiles > 0);
vpx_wb_write_literal(&saved_wb, mag, 2);
if (mag < 3)
data_sz = remux_tiles(data, data_sz, 1 << n_log2_tiles, mag);
data_sz = (int)remux_tiles(data, data_sz, 1 << n_log2_tiles, mag);
} else {
assert(n_log2_tiles == 0);
}