Searched refs:p_mv_table (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | motion_est.c | 503 s->p_mv_table[xy][0] = mx; in set_p_mv_tables() 504 s->p_mv_table[xy][1] = my; in set_p_mv_tables() 638 … dmin4 = epzs_motion_search2(s, &mx4, &my4, P, block, block, s->p_mv_table, (1<<16)>>shift, 1); in h263_mv4_search() 960 dmin = ff_epzs_motion_search(s, &mx, &my, P, 0, 0, s->p_mv_table, (1<<16)>>shift, 0, 16); in ff_estimate_p_frame_motion() 1081 P_LEFT[0] = s->p_mv_table[xy + 1][0]; in ff_pre_estimate_p_frame_motion() 1082 P_LEFT[1] = s->p_mv_table[xy + 1][1]; in ff_pre_estimate_p_frame_motion() 1093 P_TOP[0] = s->p_mv_table[xy + s->mb_stride ][0]; in ff_pre_estimate_p_frame_motion() 1094 P_TOP[1] = s->p_mv_table[xy + s->mb_stride ][1]; in ff_pre_estimate_p_frame_motion() 1095 P_TOPRIGHT[0] = s->p_mv_table[xy + s->mb_stride - 1][0]; in ff_pre_estimate_p_frame_motion() 1096 P_TOPRIGHT[1] = s->p_mv_table[xy + s->mb_stride - 1][1]; in ff_pre_estimate_p_frame_motion() [all …]
|
D | mpegvideo.h | 228 int16_t (*p_mv_table)[2]; ///< MV table (1MV per MB) P-frame encoding member
|
D | svq1enc.c | 322 s->m.p_mv_table = s->motion_val16[plane] + in svq1_encode_plane() 353 ff_fix_long_mvs(&s->m, NULL, 0, s->m.p_mv_table, s->m.f_code, in svq1_encode_plane()
|
D | mpegvideo_enc.c | 2979 s->mv[0][0][0] = s->p_mv_table[xy][0]; in encode_thread() 2980 s->mv[0][0][1] = s->p_mv_table[xy][1]; in encode_thread() 3247 motion_x= s->mv[0][0][0] = s->p_mv_table[xy][0]; in encode_thread() 3248 motion_y= s->mv[0][0][1] = s->p_mv_table[xy][1]; in encode_thread() 3355 s->p_mv_table[xy][0]=0; in encode_thread() 3356 s->p_mv_table[xy][1]=0; in encode_thread() 3583 s->f_code= ff_get_best_fcode(s, s->p_mv_table, CANDIDATE_MB_TYPE_INTER); in encode_picture() 3593 …ff_fix_long_mvs(s, NULL, 0, s->p_mv_table, s->f_code, CANDIDATE_MB_TYPE_INTER, !!s->intra_penalty); in encode_picture()
|
D | mpegvideo.c | 573 s->p_mv_table = s->p_mv_table_base + s->mb_stride + 1; in ff_mpv_init_context_frame() 698 s->p_mv_table = NULL; in clear_context() 838 s->p_mv_table = NULL; in ff_mpv_free_context_frame()
|