Searched refs:ref_mv_scale (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | motion_est_template.c | 862 int ref_mv_scale, int flags, int size, int h) in epzs_motion_search_internal() argument 906 CHECK_CLIPPED_MV((last_mv[ref_mv_xy][0]*ref_mv_scale + (1<<15))>>16, in epzs_motion_search_internal() 907 (last_mv[ref_mv_xy][1]*ref_mv_scale + (1<<15))>>16) in epzs_motion_search_internal() 923 CHECK_CLIPPED_MV((last_mv[ref_mv_xy][0]*ref_mv_scale + (1<<15))>>16, in epzs_motion_search_internal() 924 (last_mv[ref_mv_xy][1]*ref_mv_scale + (1<<15))>>16) in epzs_motion_search_internal() 931 CHECK_CLIPPED_MV((last_mv[ref_mv_xy-1][0]*ref_mv_scale + (1<<15))>>16, in epzs_motion_search_internal() 932 (last_mv[ref_mv_xy-1][1]*ref_mv_scale + (1<<15))>>16) in epzs_motion_search_internal() 934 CHECK_CLIPPED_MV((last_mv[ref_mv_xy-ref_mv_stride][0]*ref_mv_scale + (1<<15))>>16, in epzs_motion_search_internal() 935 (last_mv[ref_mv_xy-ref_mv_stride][1]*ref_mv_scale + (1<<15))>>16) in epzs_motion_search_internal() 937 CHECK_CLIPPED_MV((last_mv[ref_mv_xy+1][0]*ref_mv_scale + (1<<15))>>16, in epzs_motion_search_internal() [all …]
|
D | motion_est.h | 121 const int16_t (*last_mv)[2], int ref_mv_scale,
|