OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mv_col
(Results
1 - 3
of
3
) sorted by null
/external/libvpx/libvpx/vp8/encoder/
denoising.c
193
int
mv_col
;
local
218
mv_col
= x->best_sse_mv.as_mv.col;
222
((unsigned int)(mv_row *mv_row +
mv_col
*
mv_col
)
278
mv_col
= x->best_sse_mv.as_mv.col;
279
motion_magnitude2 = mv_row * mv_row +
mv_col
*
mv_col
;
rdopt.c
480
int
mv_col
= x->e_mbd.mode_info_context->mbmi.mv.as_mv.col;
local
489
if (
mv_col
< 0)
490
mv_col
-= 1;
492
mv_col
+= 1;
495
mv_col
/= 2;
497
offset = (mv_row >> 3) * pre_stride + (
mv_col
>> 3);
501
if ((mv_row |
mv_col
) & 7)
504
mv_col
& 7, mv_row & 7, upred_ptr, uv_stride, &sse2);
506
mv_col
& 7, mv_row & 7, vpred_ptr, uv_stride, &sse1);
[
all
...]
/external/libvpx/libvpx/vp8/common/
reconinter.c
214
int
mv_col
= x->mode_info_context->mbmi.mv.as_mv.col;
local
220
mv_col
+= 1 | (
mv_col
>> (sizeof(int) * CHAR_BIT - 1));
222
mv_col
/= 2;
224
mv_col
&= x->fullpixel_mask;
226
offset = (mv_row >> 3) * pre_stride + (
mv_col
>> 3);
230
if ((mv_row |
mv_col
) & 7)
232
x->subpixel_predict8x8(uptr, pre_stride,
mv_col
& 7, mv_row & 7, upred_ptr, 8);
233
x->subpixel_predict8x8(vptr, pre_stride,
mv_col
& 7, mv_row & 7, vpred_ptr, 8);
322
int
mv_col
= x->mode_info_context->mbmi.mv.as_mv.col
local
[
all
...]
Completed in 83 milliseconds