OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mv_col
(Results
1 - 5
of
5
) 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
;
temporal_filter.c
46
int
mv_col
,
54
yptr = y_mb_ptr + (mv_row >> 3) * stride + (
mv_col
>> 3);
56
if ((mv_row |
mv_col
) & 7)
59
mv_col
& 7, mv_row & 7, &pred[0], 16);
68
mv_col
>>= 1;
70
offset = (mv_row >> 3) * stride + (
mv_col
>> 3);
74
if ((mv_row |
mv_col
) & 7)
77
mv_col
& 7, mv_row & 7, &pred[256], 8);
79
mv_col
& 7, mv_row & 7, &pred[320], 8);
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
...]
/external/libvpx/libvpx/vp9/encoder/
vp9_temporal_filter.c
40
int
mv_col
,
44
MV mv = { mv_row,
mv_col
};
Completed in 32 milliseconds