Searched refs:b_forw_mv_table (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | motion_est.c | 1155 if(mv_table == s->b_forw_mv_table){ in estimate_motion_b() 1251 int motion_fx= s->b_bidir_forw_mv_table[xy][0]= s->b_forw_mv_table[xy][0]; in bidir_refine() 1252 int motion_fy= s->b_bidir_forw_mv_table[xy][1]= s->b_forw_mv_table[xy][1]; in bidir_refine() 1522 fmin = estimate_motion_b(s, mb_x, mb_y, s->b_forw_mv_table, 0, s->f_code) + in ff_estimate_b_frame_motion() 1528 ff_dlog(s, " %d %d ", s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1]); in ff_estimate_b_frame_motion() 1540 s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1], 0); in ff_estimate_b_frame_motion()
|
D | mpegvideo.h | 249 int16_t (*b_forw_mv_table)[2]; ///< MV table (1MV per MB) forward mode B-frame encoding member
|
D | mpegvideo_enc.c | 3224 s->mv[0][0][0] = s->b_forw_mv_table[xy][0]; in encode_thread() 3225 s->mv[0][0][1] = s->b_forw_mv_table[xy][1]; in encode_thread() 3506 motion_x= s->mv[0][0][0] = s->b_forw_mv_table[xy][0]; in encode_thread() 3507 motion_y= s->mv[0][0][1] = s->b_forw_mv_table[xy][1]; in encode_thread() 3828 a = ff_get_best_fcode(s, s->b_forw_mv_table, CANDIDATE_MB_TYPE_FORWARD); in encode_picture() 3836 … ff_fix_long_mvs(s, NULL, 0, s->b_forw_mv_table, s->f_code, CANDIDATE_MB_TYPE_FORWARD, 1); in encode_picture()
|
D | mpegvideo.c | 765 s->b_forw_mv_table = s->b_forw_mv_table_base + s->mb_stride + 1; in init_context_frame() 874 s->b_forw_mv_table = NULL; in clear_context() 1018 s->b_forw_mv_table = NULL; in free_context_frame()
|