Searched refs:smooth_mf (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/test/ |
D | non_greedy_mv_test.cc | 125 TEST(non_greedy_mv, smooth_mf) { in TEST() argument 133 MV *smooth_mf = NULL; in TEST() local 149 smooth_mf = (MV *)malloc(rows * cols * sizeof(MV)); in TEST() 151 max_iter, smooth_mf); in TEST() 153 compare_mf(smooth_mf, ground_truth, rows, cols, &sm_mean, &sm_std); in TEST() 154 compare_mf(smooth_mf, estimation, rows, cols, &est_mean, &est_std); in TEST() 163 free(smooth_mf); in TEST()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_non_greedy_mv.h | 101 float alpha, int num_iters, MV *smooth_mf);
|
D | vp9_non_greedy_mv.c | 416 float alpha, int num_iters, MV *smooth_mf) { in vp9_get_smooth_motion_field() argument 450 smooth_mf[idx].row = (int)(input[idx].row * bh); in vp9_get_smooth_motion_field() 451 smooth_mf[idx].col = (int)(input[idx].col * bw); in vp9_get_smooth_motion_field()
|