OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mv_max
(Results
1 - 9
of
9
) sorted by null
/external/libvpx/libvpx/vp8/common/
entropymv.h
19
mv_max
= 1023, /* max absolute value of a MV component */
enumerator in enum:__anon22977
20
MVvals = (2 *
mv_max
) + 1, /* # possible values "" */
/external/libvpx/libvpx/vp8/encoder/
encodemv.c
159
while (++i <=
mv_max
);
175
while (++i <=
mv_max
);
257
const int c = events [
mv_max
];
263
/* j: 1 ~
mv_max
(1023) */
269
const int c1 = events [
mv_max
+ j]; /* positive */
270
const int c2 = events [
mv_max
- j]; /* negative */
294
while (++j <=
mv_max
);
pickinter.c
399
x->MVcount[0][
mv_max
+((xd->mode_info_context->mbmi.mv.as_mv.row -
401
x->MVcount[1][
mv_max
+((xd->mode_info_context->mbmi.mv.as_mv.col -
[
all
...]
rdopt.c
[
all
...]
onyx_if.c
[
all
...]
/external/libvpx/libvpx/vp9/common/
vp9_entropymv.h
67
#define
MV_MAX
((1 << MV_MAX_BITS) - 1)
68
#define MV_VALS ((
MV_MAX
<< 1) + 1)
/external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c
307
const int minc = MAX(x->mv_col_min * 8, ref_mv->col -
MV_MAX
);
308
const int maxc = MIN(x->mv_col_max * 8, ref_mv->col +
MV_MAX
);
309
const int minr = MAX(x->mv_row_min * 8, ref_mv->row -
MV_MAX
);
310
const int maxr = MIN(x->mv_row_max * 8, ref_mv->row +
MV_MAX
);
404
const int minc = MAX(x->mv_col_min * 8, ref_mv->col -
MV_MAX
);
405
const int maxc = MIN(x->mv_col_max * 8, ref_mv->col +
MV_MAX
);
406
const int minr = MAX(x->mv_row_min * 8, ref_mv->row -
MV_MAX
);
407
const int maxr = MIN(x->mv_row_max * 8, ref_mv->row +
MV_MAX
);
500
const int minc = MAX(x->mv_col_min * 8, ref_mv->col -
MV_MAX
);
501
const int maxc = MIN(x->mv_col_max * 8, ref_mv->col +
MV_MAX
);
[
all
...]
vp9_encodemv.c
94
for (v = 1; v <=
MV_MAX
; ++v) {
vp9_onyx_if.c
[
all
...]
Completed in 259 milliseconds