Searched refs:MV (Results 1 - 25 of 135) sorted by relevance

123456

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dmv.h24 } MV; typedef in typeref:struct:__anon13058
29 MV as_mv;
/external/libvpx/libvpx/vp8/common/
H A Dmv.h24 } MV; typedef in typeref:struct:__anon24849
29 MV as_mv;
/external/llvm/unittests/ADT/
H A DMapVectorTest.cpp17 MapVector<int, int> MV; local
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[
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_mcomp.h36 MV mv;
49 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv);
50 int vp9_mv_bit_cost(const MV *mv, const MV *ref,
53 // Utility to compute variance + MV rate cost for a given MV
55 const MV *best_mv, const MV *center_mv,
59 const MV *best_mv, const MV *center_m
[all...]
H A Dvp9_encodemv.h25 void vp9_encode_mv(VP9_COMP *cpi, vp9_writer* w, const MV* mv, const MV* ref,
H A Dvp9_mcomp.c27 const MV *mv) {
31 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv) {
42 // Get intersection of UMV window and valid MV window to reduce # of checks
66 static INLINE int mv_cost(const MV *mv,
72 int vp9_mv_bit_cost(const MV *mv, const MV *ref,
74 const MV diff = { mv->row - ref->row,
79 static int mv_err_cost(const MV *mv, const MV *ref,
83 const MV dif
[all...]
H A Dvp9_mbgraph.c23 const MV *ref_mv,
24 MV *dst_mv,
36 MV ref_full;
81 static int do_16x16_motion_search(VP9_COMP *cpi, const MV *ref_mv,
86 MV tmp_mv;
88 // Try zero MV first
89 // FIXME should really use something like near/nearest MV and/or MV prediction
106 MV zero_ref_mv = {0, 0}, tmp_mv;
124 // Try zero MV firs
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_mcomp.h35 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv);
36 int vp9_mv_bit_cost(const MV *mv, const MV *ref,
39 // Utility to compute variance + MV rate cost for a given MV
41 const MV *best_mv, const MV *center_mv,
45 const MV *best_mv, const MV *center_mv,
57 MV *mvp_ful
[all...]
H A Dvp9_encodemv.h25 void vp9_encode_mv(VP9_COMP *cpi, vp9_writer* w, const MV* mv, const MV* ref,
H A Dvp9_mcomp.c27 const MV *mv) {
31 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv) {
42 // Get intersection of UMV window and valid MV window to reduce # of checks
68 static INLINE int mv_cost(const MV *mv,
74 int vp9_mv_bit_cost(const MV *mv, const MV *ref,
76 const MV diff = { mv->row - ref->row,
81 static int mv_err_cost(const MV *mv, const MV *ref,
85 const MV dif
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_mv.h25 } MV; typedef in typeref:struct:mv
29 MV as_mv;
37 static INLINE int is_zero_mv(const MV *mv) {
41 static INLINE int is_equal_mv(const MV *a, const MV *b) {
45 static INLINE void clamp_mv(MV *mv, int min_col, int max_col,
H A Dvp9_entropymv.h27 int vp9_use_mv_hp(const MV *ref);
98 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) {
126 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
H A Dvp9_reconinter.h35 const MV *mv_q3,
45 const MV *mv_q3,
/external/libvpx/libvpx/vp9/common/
H A Dvp9_mv.h25 } MV; typedef in typeref:struct:mv
29 MV as_mv;
37 static INLINE void clamp_mv(MV *mv, int min_col, int max_col,
H A Dvp9_entropymv.h27 int vp9_use_mv_hp(const MV *ref);
98 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) {
126 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
H A Dvp9_mvref_common.h25 static INLINE void clamp_mv2(MV *mv, const MACROBLOCKD *xd) {
H A Dvp9_scale.h37 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf);
H A Dvp9_reconinter.c81 const MV *src_mv,
88 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2,
104 static MV mi_mv_pred_q4(const MODE_INFO *mi, int idx) {
105 MV res = { round_mv_comp_q4(mi->bmi[0].as_mv[idx].as_mv.row +
117 MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_mv,
119 // If the MV points so far into the UMV border that no visible pixels
120 // are used for reconstruction, the subpel part of the MV can be
121 // discarded and the MV limited to 16 pixels with equivalent results.
126 MV clamped_m
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dencodemv.h22 void vp8_encode_motion_vector(vp8_writer *, const MV *, const MV_CONTEXT *);
/external/libvpx/libvpx/vp8/encoder/
H A Dencodemv.h22 void vp8_encode_motion_vector(vp8_writer *, const MV *, const MV_CONTEXT *);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Dec_types.h50 MV mv;
/external/libvpx/libvpx/vp8/decoder/
H A Dec_types.h50 MV mv;
/external/elfutils/0.153/src/
H A Dmake-debug-archive.in21 MV=/bin/mv
130 $sudo $MV -f "$new_archive" "$archive"
/external/e2fsprogs/lib/
H A DMakefile.bsd-lib26 $(MV) pic/$(BSD_LIB) .
H A DMakefile.darwin-lib28 $(Q) $(MV) pic/$(BSD_LIB) .

Completed in 289 milliseconds

123456