Home
last modified time | relevance | path

Searched refs:mvs (Results 1 – 25 of 92) sorted by relevance

1234

/external/libvpx/vp8/common/
Ddebugmodes.c19 FILE *mvs = fopen("mvs.stt", "a"); in vp8_print_modes_and_motion_vectors() local
23 fprintf(mvs, "Mb Modes for Frame %d\n", frame); in vp8_print_modes_and_motion_vectors()
27 fprintf(mvs, "%2d ", mi[mb_index].mbmi.mode); in vp8_print_modes_and_motion_vectors()
32 fprintf(mvs, "\n"); in vp8_print_modes_and_motion_vectors()
36 fprintf(mvs, "\n"); in vp8_print_modes_and_motion_vectors()
39 fprintf(mvs, "Mb mv ref for Frame %d\n", frame); in vp8_print_modes_and_motion_vectors()
43 fprintf(mvs, "%2d ", mi[mb_index].mbmi.ref_frame); in vp8_print_modes_and_motion_vectors()
48 fprintf(mvs, "\n"); in vp8_print_modes_and_motion_vectors()
52 fprintf(mvs, "\n"); in vp8_print_modes_and_motion_vectors()
56 fprintf(mvs, "UV Modes for Frame %d\n", frame); in vp8_print_modes_and_motion_vectors()
[all …]
/external/libvpx/vp9/common/
Dvp9_debugmodes.c49 FILE *mvs = fopen(file, "a"); in vp9_print_modes_and_motion_vectors() local
54 print_mi_data(cm, mvs, "Partitions:", offsetof(MODE_INFO, sb_type)); in vp9_print_modes_and_motion_vectors()
55 print_mi_data(cm, mvs, "Modes:", offsetof(MODE_INFO, mode)); in vp9_print_modes_and_motion_vectors()
56 print_mi_data(cm, mvs, "Ref frame:", offsetof(MODE_INFO, ref_frame[0])); in vp9_print_modes_and_motion_vectors()
57 print_mi_data(cm, mvs, "Transform:", offsetof(MODE_INFO, tx_size)); in vp9_print_modes_and_motion_vectors()
58 print_mi_data(cm, mvs, "UV Modes:", offsetof(MODE_INFO, uv_mode)); in vp9_print_modes_and_motion_vectors()
61 log_frame_info(cm, "Skips:", mvs); in vp9_print_modes_and_motion_vectors()
63 fprintf(mvs, "S "); in vp9_print_modes_and_motion_vectors()
65 fprintf(mvs, "%2d ", mi[0]->skip); in vp9_print_modes_and_motion_vectors()
68 fprintf(mvs, "\n"); in vp9_print_modes_and_motion_vectors()
[all …]
Dvp9_alloccommon.c85 vpx_free(pool->frame_bufs[i].mvs); in vp9_free_ref_frame_buffers()
86 pool->frame_bufs[i].mvs = NULL; in vp9_free_ref_frame_buffers()
/external/libaom/av1/common/
Ddebugmodes.c50 FILE *mvs = fopen(file, "a"); in av1_print_modes_and_motion_vectors() local
55 print_mi_data(cm, mvs, "Partitions:", offsetof(MB_MODE_INFO, bsize)); in av1_print_modes_and_motion_vectors()
56 print_mi_data(cm, mvs, "Modes:", offsetof(MB_MODE_INFO, mode)); in av1_print_modes_and_motion_vectors()
57 print_mi_data(cm, mvs, "Ref frame:", offsetof(MB_MODE_INFO, ref_frame[0])); in av1_print_modes_and_motion_vectors()
58 print_mi_data(cm, mvs, "Transform:", offsetof(MB_MODE_INFO, tx_size)); in av1_print_modes_and_motion_vectors()
59 print_mi_data(cm, mvs, "UV Modes:", offsetof(MB_MODE_INFO, uv_mode)); in av1_print_modes_and_motion_vectors()
62 log_frame_info(cm, "Skips:", mvs); in av1_print_modes_and_motion_vectors()
64 fprintf(mvs, "S "); in av1_print_modes_and_motion_vectors()
66 fprintf(mvs, "%2d ", mi[0]->skip_txfm); in av1_print_modes_and_motion_vectors()
69 fprintf(mvs, "\n"); in av1_print_modes_and_motion_vectors()
[all …]
Dav1_common_int.h139 MV_REF *mvs; member
1222 if (buf->mvs == NULL || buf_rows != mi_params->mi_rows || in ensure_mv_buffer()
1224 aom_free(buf->mvs); in ensure_mv_buffer()
1227 CHECK_MEM_ERROR(cm, buf->mvs, in ensure_mv_buffer()
1230 sizeof(*buf->mvs))); in ensure_mv_buffer()
/external/libgav1/src/dsp/arm/
Dmotion_field_projection_neon.cc94 int64_t* const skip_64, int32x4_t mvs[2]) { in GetPosition()
99 mvs[0] = vld1q_s32(mv_int + 0); in GetPosition()
100 mvs[1] = vld1q_s32(mv_int + 4); in GetPosition()
102 const int16x8_t mv0 = vreinterpretq_s16_s32(mvs[0]); in GetPosition()
103 const int16x8_t mv1 = vreinterpretq_s16_s32(mvs[1]); in GetPosition()
220 int32x4_t mvs[2]; in MotionFieldProjectionKernel_NEON() local
224 &position_x8, &skip_64, mvs); in MotionFieldProjectionKernel_NEON()
234 Store<0>(position, r, mvs[0], dst_reference_offset, dst_mv); in MotionFieldProjectionKernel_NEON()
235 Store<1>(position, r, mvs[0], dst_reference_offset, dst_mv); in MotionFieldProjectionKernel_NEON()
236 Store<2>(position, r, mvs[0], dst_reference_offset, dst_mv); in MotionFieldProjectionKernel_NEON()
[all …]
/external/libgav1/src/dsp/x86/
Dmotion_field_projection_sse4.cc90 __m128i* const position_xy, int64_t* const skip_64, __m128i mvs[2]) { in GetPosition()
95 mvs[0] = LoadUnaligned16(mv_int + 0); in GetPosition()
96 mvs[1] = LoadUnaligned16(mv_int + 4); in GetPosition()
100 const __m128i mv0 = _mm_shuffle_epi8(mvs[0], kShuffle); in GetPosition()
101 const __m128i mv1 = _mm_shuffle_epi8(mvs[1], kShuffle); in GetPosition()
221 __m128i r, position_xy, mvs[2]; in MotionFieldProjectionKernel_SSE4_1() local
225 mvs); in MotionFieldProjectionKernel_SSE4_1()
236 Store<0>(position, r, mvs[0], dst_reference_offset, dst_mv); in MotionFieldProjectionKernel_SSE4_1()
237 Store<1>(position, r, mvs[0], dst_reference_offset, dst_mv); in MotionFieldProjectionKernel_SSE4_1()
238 Store<2>(position, r, mvs[0], dst_reference_offset, dst_mv); in MotionFieldProjectionKernel_SSE4_1()
[all …]
Dmotion_vector_search_sse4.cc53 inline __m128i MvProjectionClip(const __m128i mvs[2], in MvProjectionClip()
56 const __m128i s0 = MvProjection(mvs[0], denominators[0], numerator); in MvProjectionClip()
57 const __m128i s1 = MvProjection(mvs[1], denominators[1], numerator); in MvProjectionClip()
73 __m128i mvs[2], denominators[2]; in MvProjectionCompoundClip() local
74 mvs[0] = _mm_unpacklo_epi64(temporal_mv_0, temporal_mv_0); in MvProjectionCompoundClip()
75 mvs[1] = _mm_unpackhi_epi64(temporal_mv_0, temporal_mv_0); in MvProjectionCompoundClip()
82 return MvProjectionClip(mvs, denominators, numerator); in MvProjectionCompoundClip()
102 __m128i mvs[2], denominators[2]; in MvProjectionSingleClip() local
103 mvs[0] = _mm_unpacklo_epi16(temporal_mv, _mm_setzero_si128()); in MvProjectionSingleClip()
104 mvs[1] = _mm_unpackhi_epi16(temporal_mv, _mm_setzero_si128()); in MvProjectionSingleClip()
[all …]
/external/libvpx/tools/3D-Reconstruction/MotionEST/
DSearchSmooth.py39 def getRefLocalDiff(self, mvs): argument
51 ty = np.clip(r * blk_sz + int(mvs[r, c, 0]), 0, self.height - blk_sz)
52 tx = np.clip(c * blk_sz + int(mvs[r, c, 1]), 0, self.width - blk_sz)
78 def smooth(self, uvs, mvs): argument
96 mv = mvs[r, c]
112 mvs = self.search.mf
114 uvs = mvs / self.blk_sz
116 uvs = self.smooth(uvs, mvs)
145 def getRefLocalDiff(self, mvs): argument
157 ty = np.clip(r * blk_sz + int(mvs[r, c, 0]), 0, self.height - blk_sz)
[all …]
DAnandan.py120 mvs = np.zeros((self.num_row, self.num_col, 2))
145 mvs[r, c] = min_mv
146 return mvs, min_ssds
156 def smooth(self, uvs, mvs, min_ssds, l): argument
175 sm_uvs[r, c] = (w * w * mvs[r, c] + self.beta * avg_uv) / (
186 mvs, min_ssds = self.region_match(l, last_mvs, 2**l)
187 uvs = np.zeros(mvs.shape)
189 uvs = self.smooth(uvs, mvs, min_ssds, l)
DExhaust.py232 def smooth(self, uvs, mvs): argument
244 sm_uvs[r, c] = (self.fs[r, c] * mvs[r, c] + self.beta * avg_uv) / (
250 mvs = np.zeros(self.mf.shape)
254 mvs[r, c] = np.array([ref_y - r * self.blk_sz, ref_x - c * self.blk_sz])
258 uvs = self.smooth(uvs, mvs)
/external/libaom/av1/encoder/
Doptical_flow.c407 const int frame_width, LOCALMV *localmvs, MV *mvs) { in filter_mvs() argument
437 filtered_row += mvs[index].row * gaussian_filter[i]; in filter_mvs()
438 filtered_col += mvs[index].col * gaussian_filter[i]; in filter_mvs()
440 mvrows[i] = mvs[index].row; in filter_mvs()
441 mvcols[i] = mvs[index].col; in filter_mvs()
447 MV mv = mvs[center_idx]; in filter_mvs()
467 mvs[i] = mv; in filter_mvs()
479 const int bit_depth, LOCALMV *mvs) { in lucas_kanade() argument
500 LOCALMV mv_old = mvs[mv_idx]; in lucas_kanade()
536 mvs[mv_idx] = mv; in lucas_kanade()
[all …]
Dtune_vmaf.c130 FULLPEL_MV *mvs) { in residual_frame_average_variance() argument
154 if (mvs == NULL) { in residual_frame_average_variance()
156 CHECK_MEM_ERROR(&cpi->common, mvs, in residual_frame_average_variance()
157 (FULLPEL_MV *)aom_calloc(mb_rows * mb_cols, sizeof(*mvs))); in residual_frame_average_variance()
170 FULLPEL_MV *ref_mv = &mvs[mb_col + mb_row * mb_cols]; in residual_frame_average_variance()
968 YV12_BUFFER_CONFIG *const recon_sharpened, FULLPEL_MV *mvs, in find_best_frame_unsharp_amount_loop_neg() argument
983 residual_frame_average_variance(cpi, src_sharpened, ref, mvs); in find_best_frame_unsharp_amount_loop_neg()
1001 FULLPEL_MV *mvs = NULL; in find_best_frame_unsharp_amount_neg() local
1003 residual_frame_average_variance(cpi, src, ref, mvs); in find_best_frame_unsharp_amount_neg()
1039 residual_frame_average_variance(cpi, &src_sharpened, ref, mvs); in find_best_frame_unsharp_amount_neg()
[all …]
Doptical_flow.h69 const OPTFLOW_METHOD method, MV *mvs);
/external/libvpx/tools/3D-Reconstruction/sketch_3D_reconstruction/
DMotionField.pde86 String[] mvs = new String[r_num];
88 mvs[i] = "";
92 mvs[i] += str(mv.x) + "," + str(mv.y);
95 mvs[i] += "-,-";
97 if (j != c_num - 1) mvs[i] += ";";
100 saveStrings(path, mvs);
/external/icu/icu4c/source/config/
Dgmakever.mk11 ifeq ($(MACHTYPE),i370-ibm-mvs)
/external/cronet/third_party/icu/source/config/
Dgmakever.mk11 ifeq ($(MACHTYPE),i370-ibm-mvs)
/external/libvpx/vp9/encoder/
Dvp9_encodemv.c240 const int_mv mvs[2], nmv_context_counts *counts) { in inc_mvs()
245 const MV diff = { mvs[i].as_mv.row - ref->row, in inc_mvs()
246 mvs[i].as_mv.col - ref->col }; in inc_mvs()
/external/cpuinfo/test/dmesg/
Dxperia-sl.log323 <6>[ 2.083739] mvs-cpu-dai mvs-cpu-dai.0: asoc_mvs_cpu_probe: dev name mvs-cpu-dai.0
324 <6>[ 2.083981] mvs-codec-dai mvs-codec-dai.0: asoc_mvs_codec_probe: dev name mvs-codec-dai.0
325 <6>[ 2.084287] msm-mvs-audio msm-mvs-audio.0: msm_pcm_probe: dev name msm-mvs-audio.0
327 <6>[ 2.085270] asoc: mvs-codec-dai <-> mvs-cpu-dai.0 mapping ok
/external/fec/
Dconfig.sub597 mvs)
599 os=-mvs
1245 os=-mvs
1328 -mvs* | -opened*)
/external/libogg/
Dconfig.sub713 mvs)
715 os=-mvs
1482 os=-mvs
1565 -mvs* | -opened*)
/external/libnetfilter_conntrack/
Dconfig.sub776 mvs)
778 os=-mvs
1588 os=-mvs
1671 -mvs* | -opened*)
/external/libnfnetlink/
Dconfig.sub776 mvs)
778 os=-mvs
1588 os=-mvs
1671 -mvs* | -opened*)
/external/libexif/
Dconfig.sub774 mvs)
776 os=-mvs
1579 os=-mvs
1662 -mvs* | -opened*)
/external/ImageMagick/config/
Dconfig.sub1342 | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \
1663 os=mvs
1748 mvs* | opened*)

1234