Add and remove explicit type conversions

Change-Id: I8b791fda7c64a0363549add99dc9fcae3b29beae
This commit is contained in:
Yaowu Xu 2016-07-22 10:04:06 -07:00
Родитель 3826383ca1
Коммит 44aac61c13
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -120,13 +120,13 @@ void vp10_highbd_iadst16_c(const tran_low_t *input, tran_low_t *output, int bd);
static INLINE uint16_t highbd_clip_pixel_add(uint16_t dest, tran_high_t trans,
int bd) {
trans = HIGHBD_WRAPLOW(trans, bd);
return clip_pixel_highbd(dest + trans, bd);
return clip_pixel_highbd(dest + (int)trans, bd);
}
#endif
static INLINE uint8_t clip_pixel_add(uint8_t dest, tran_high_t trans) {
trans = WRAPLOW(trans);
return clip_pixel(dest + trans);
return clip_pixel(dest + (int)trans);
}
#ifdef __cplusplus
} // extern "C"

Просмотреть файл

@ -37,7 +37,7 @@ static INLINE tran_high_t check_range(tran_high_t input) {
static INLINE tran_high_t dct_const_round_shift(tran_high_t input) {
tran_high_t rv = ROUND_POWER_OF_TWO(input, DCT_CONST_BITS);
return (tran_high_t)rv;
return rv;
}
#if CONFIG_VP9_HIGHBITDEPTH
@ -61,7 +61,7 @@ static INLINE tran_high_t highbd_check_range(tran_high_t input,
static INLINE tran_high_t highbd_dct_const_round_shift(tran_high_t input) {
tran_high_t rv = ROUND_POWER_OF_TWO(input, DCT_CONST_BITS);
return (tran_high_t)rv;
return rv;
}
#endif // CONFIG_VP9_HIGHBITDEPTH