OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:need_to_clamp_mvs
(Results
1 - 4
of
4
) sorted by null
/external/libvpx/vp8/decoder/
decodemv.c
302
mbmi->
need_to_clamp_mvs
= 0;
392
mbmi->
need_to_clamp_mvs
|= (mv->col < mb_to_left_edge) ? 1 : 0;
393
mbmi->
need_to_clamp_mvs
|= (mv->col > mb_to_right_edge) ? 1 : 0;
394
mbmi->
need_to_clamp_mvs
|= (mv->row < mb_to_top_edge) ? 1 : 0;
395
mbmi->
need_to_clamp_mvs
|= (mv->row > mb_to_bottom_edge) ? 1 : 0;
453
mbmi->
need_to_clamp_mvs
= (mv->col < mb_to_left_edge) ? 1 : 0;
454
mbmi->
need_to_clamp_mvs
|= (mv->col > mb_to_right_edge) ? 1 : 0;
455
mbmi->
need_to_clamp_mvs
|= (mv->row < mb_to_top_edge) ? 1 : 0;
456
mbmi->
need_to_clamp_mvs
|= (mv->row > mb_to_bottom_edge) ? 1 : 0;
decodframe.c
181
int i, do_clamp = xd->mode_info_context->mbmi.
need_to_clamp_mvs
;
threading.c
93
int i, do_clamp = xd->mode_info_context->mbmi.
need_to_clamp_mvs
;
[
all
...]
/external/libvpx/vp8/common/
blockd.h
173
unsigned char
need_to_clamp_mvs
;
member in struct:__anon7403
Completed in 254 milliseconds