OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mb_to_bottom_edge
(Results
1 - 9
of
9
) sorted by null
/external/libvpx/vp8/common/
findnearmv.h
51
else if (mv->row > xd->
mb_to_bottom_edge
+ RIGHT_BOTTOM_MARGIN)
52
mv->row = xd->
mb_to_bottom_edge
+ RIGHT_BOTTOM_MARGIN;
blockd.h
272
int
mb_to_bottom_edge
;
member in struct:__anon7669
/external/libvpx/vp8/decoder/
decodemv.c
295
int
mb_to_bottom_edge
;
local
298
mb_to_bottom_edge
= pbi->mb.
mb_to_bottom_edge
;
300
mb_to_bottom_edge
+= RIGHT_BOTTOM_MARGIN;
395
mbmi->need_to_clamp_mvs |= (mv->row >
mb_to_bottom_edge
) ? 1 : 0;
427
mv->row = (mv->row >
mb_to_bottom_edge
) ?
mb_to_bottom_edge
: mv->row;
436
mv->row = (mv->row >
mb_to_bottom_edge
) ?
mb_to_bottom_edge
: mv->row;
456
mbmi->need_to_clamp_mvs |= (mv->row >
mb_to_bottom_edge
) ? 1 : 0
527
int
mb_to_bottom_edge
;
local
[
all
...]
decodframe.c
145
else if (mv->row > xd->
mb_to_bottom_edge
+ (18 << 3))
146
mv->row = xd->
mb_to_bottom_edge
+ (16 << 3);
156
mv->row = (2*mv->row > xd->
mb_to_bottom_edge
+ (18 << 3)) ? (xd->
mb_to_bottom_edge
+ (16 << 3)) >> 1 : mv->row;
344
xd->
mb_to_bottom_edge
= ((pc->mb_rows - 1 - mb_row) * 16) << 3;
threading.c
274
xd->
mb_to_bottom_edge
= ((pc->mb_rows - 1 - mb_row) * 16) << 3;
754
xd->
mb_to_bottom_edge
= ((pc->mb_rows - 1 - mb_row) * 16) << 3;
[
all
...]
/external/libvpx/vp8/encoder/
ethreading.c
134
xd->
mb_to_bottom_edge
= ((cm->mb_rows - 1 - mb_row) * 16) << 3;
370
zd->
mb_to_bottom_edge
= xd->
mb_to_bottom_edge
;
rdopt.c
[
all
...]
bitstream.c
926
xd->
mb_to_bottom_edge
= ((pc->mb_rows - 1 - mb_row) * 16) << 3;
[
all
...]
encodeframe.c
507
xd->
mb_to_bottom_edge
= ((cm->mb_rows - 1 - mb_row) * 16) << 3;
[
all
...]
Completed in 28 milliseconds