HomeSort by relevance Sort by last modified time
    Searched refs:MV (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/libvpx/libvpx/vp8/common/
mv.h 20 } MV;
25 MV as_mv;
  /external/llvm/unittests/ADT/
MapVectorTest.cpp 17 MapVector<int, int> MV;
20 R = MV.insert(std::make_pair(1, 2));
21 ASSERT_EQ(R.first, MV.begin());
26 R = MV.insert(std::make_pair(1, 3));
27 ASSERT_EQ(R.first, MV.begin());
32 R = MV.insert(std::make_pair(4, 5));
33 ASSERT_NE(R.first, MV.end());
38 EXPECT_EQ(MV.size(), 2u);
39 EXPECT_EQ(MV[1], 2);
40 EXPECT_EQ(MV[4], 5)
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_mv.h 21 } MV;
25 MV as_mv;
33 static void clamp_mv(MV *mv, int min_col, int max_col,
35 mv->col = clamp(mv->col, min_col, max_col);
36 mv->row = clamp(mv->row, min_row, max_row);
vp9_mvref_common.c 29 // adding 9 for each intra block, 3 for each zero mv and 1 for each new
74 static const MV mv_ref_blocks[BLOCK_SIZES][MVREF_NEIGHBOURS] = {
113 static void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) {
114 clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER,
120 // This function returns either the appropriate sub block or block's mv
127 : candidate->mbmi.mv[which_mv];
131 // Performs mv sign inversion if indicated by the reference frame combination.
135 int_mv mv = mbmi->mv[ref] local
    [all...]
vp9_entropymv.h 25 int vp9_use_mv_hp(const MV *ref);
102 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) {
103 if (mv->row == 0) {
104 return mv->col == 0 ? MV_JOINT_ZERO : MV_JOINT_HNZVZ;
106 return mv->col == 0 ? MV_JOINT_HZVNZ : MV_JOINT_HNZVNZ;
130 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
vp9_reconinter.c 45 const MV32 *mv,
50 const int subpel_x = mv->col & SUBPEL_MASK;
51 const int subpel_y = mv->row & SUBPEL_MASK;
53 src += (mv->row >> SUBPEL_BITS) * src_stride + (mv->col >> SUBPEL_BITS);
63 const MV *src_mv,
69 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2,
72 const MV32 mv = sfc->scale_mv(&mv_q4, scale); local
74 inter_predictor(src, src_stride, dst, dst_stride, &mv, scale,
82 static MV mi_mv_pred_q4(const MODE_INFO *mi, int idx)
152 const MV mv = mi->mbmi.sb_type < BLOCK_8X8 local
    [all...]
vp9_scale.h 31 MV32 (*scale_mv)(const MV *mv, const struct scale_factors *scale);
vp9_findnearmv.h 29 // TODO(jingning): this mv clamping function should be block size dependent.
30 static void clamp_mv2(MV *mv, const MACROBLOCKD *xd) {
31 clamp_mv(mv, xd->mb_to_left_edge - LEFT_TOP_MARGIN,
vp9_scale.c 28 static MV32 scaled_mv(const MV *mv, const struct scale_factors *scale) {
30 scaled_y(mv->row, scale->sfc) + scale->y_offset_q4,
31 scaled_x(mv->col, scale->sfc) + scale->x_offset_q4
36 static MV32 unscaled_mv(const MV *mv, const struct scale_factors *scale) {
38 mv->row,
39 mv->col
vp9_findnearmv.c 14 static void lower_mv_precision(MV *mv, int allow_hp) {
15 const int use_hp = allow_hp && vp9_use_mv_hp(mv);
17 if (mv->row & 1)
18 mv->row += (mv->row > 0 ? -1 : 1);
19 if (mv->col & 1)
20 mv->col += (mv->col > 0 ? -1 : 1);
  /external/libvpx/libvpx/vp8/encoder/
encodemv.h 18 void vp8_encode_motion_vector(vp8_writer *, const MV *, const MV_CONTEXT *);
block.h 27 MV mv; member in struct:__anon23952
59 int_mv mv; member in struct:__anon23953::__anon23954
135 unsigned int MVcount [2] [MVvals]; /* (row,col) MV cts this frame */
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.h 21 // Max full pel mv specified in 1 pel units
30 void vp9_clamp_mv_min_max(MACROBLOCK *x, MV *mv);
31 int vp9_mv_bit_cost(const MV *mv, const MV *ref,
47 MV *ref_mv,
53 const MV *center_mv,
54 MV *best_mv);
56 MV *ref_mv
    [all...]
vp9_encodemv.h 19 void vp9_encode_mv(VP9_COMP *cpi, vp9_writer* w, const MV* mv, const MV* ref,
vp9_mcomp.c 27 void vp9_clamp_mv_min_max(MACROBLOCK *x, MV *mv) {
28 const int col_min = (mv->col >> 3) - MAX_FULL_PEL_VAL + (mv->col & 7 ? 1 : 0);
29 const int row_min = (mv->row >> 3) - MAX_FULL_PEL_VAL + (mv->row & 7 ? 1 : 0);
30 const int col_max = (mv->col >> 3) + MAX_FULL_PEL_VAL;
31 const int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL;
33 // Get intersection of UMV window and valid MV window to reduce # of checks
62 static INLINE int mv_cost(const MV *mv
    [all...]
vp9_encodemv.c 29 const int d = offset >> 3; // int mv data
30 const int fr = (offset >> 1) & 3; // fractional mv data
31 const int hp = offset & 1; // high precision mv data
99 d = (o >> 3); /* int mv data */
100 f = (o >> 1) & 3; /* fractional pel mv data */
101 e = (o & 1); /* high precision mv data */
266 const MV* mv, const MV* ref,
268 const MV diff = {mv->row - ref->row
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
ec_types.h 46 MV mv; member in struct:__anon23948
  /external/elfutils/src/
make-debug-archive.in 21 MV=/bin/mv
130 $sudo $MV -f "$new_archive" "$archive"
  /external/e2fsprogs/lib/
Makefile.bsd-lib 26 $(MV) pic/$(BSD_LIB) .
Makefile.darwin-lib 28 $(Q) $(MV) pic/$(BSD_LIB) .
Makefile.solaris-lib 29 $(Q) $(MV) elfshared/$(ELF_LIB) .
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_FindMVpred_s.s 66 M_ALLOC4 MV, 4
76 M_ADR CandMV, MV
154 ;// out the candidate MV if neccesary
168 ;// Store the candidate MV's into the pDstMVPredME,
178 ; Find the median of the 3 candidate MV's
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_FindMVpred_s.s 66 M_ALLOC4 MV, 4
76 M_ADR CandMV, MV
154 ;// out the candidate MV if neccesary
168 ;// Store the candidate MV's into the pDstMVPredME,
178 ; Find the median of the 3 candidate MV's
  /hardware/ti/omap4xxx/domx/make/
start.mk 82 MV = mv $(1) $(2)
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 107 if (Optional<loc::MemRegionVal> MV = elementV.getAs<loc::MemRegionVal>())
109 dyn_cast<TypedValueRegion>(MV->getRegion())) {

Completed in 495 milliseconds

1 2 3 4