OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SUBPEL_MASK
(Results
1 - 4
of
4
) sorted by null
/external/libvpx/libvpx/vp9/common/
vp9_filter.h
20
#define
SUBPEL_MASK
((1 << SUBPEL_BITS) - 1)
vp9_scale.c
46
scale->x_offset_q4 = scaled_x(col << SUBPEL_BITS, scale->sfc) &
SUBPEL_MASK
;
47
scale->y_offset_q4 = scaled_y(row << SUBPEL_BITS, scale->sfc) &
SUBPEL_MASK
;
vp9_convolve.c
47
(x_q4 &
SUBPEL_MASK
) * taps;
88
(x_q4 &
SUBPEL_MASK
) * taps;
130
(y_q4 &
SUBPEL_MASK
) * taps;
172
(y_q4 &
SUBPEL_MASK
) * taps;
vp9_reconinter.c
50
const int subpel_x = mv->col &
SUBPEL_MASK
;
51
const int subpel_y = mv->row &
SUBPEL_MASK
;
Completed in 30 milliseconds