Replace hard coded values in mv_has_subpel

Change-Id: Id437740c2db1a3a56c1ad29d8b51bb763c044c1d
This commit is contained in:
Jingning Han 2016-05-03 09:08:06 -07:00
Родитель cf3ee22597
Коммит 113f8d8746
1 изменённых файлов: 2 добавлений и 3 удалений

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

@ -11,9 +11,8 @@
#ifndef VP10_COMMON_MV_H_
#define VP10_COMMON_MV_H_
#include "vpx/vpx_integer.h"
#include "vp10/common/common.h"
#include "vpx_dsp/vpx_filter.h"
#ifdef __cplusplus
extern "C" {
@ -58,7 +57,7 @@ static INLINE void clamp_mv(MV *mv, int min_col, int max_col,
}
static INLINE int mv_has_subpel(const MV *mv) {
return (mv->row & 0x0F) || (mv->col & 0x0F);
return (mv->row & SUBPEL_MASK) || (mv->col & SUBPEL_MASK);
}
#ifdef __cplusplus
} // extern "C"