Searched refs:p_mv_table (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | motion_est.c | 501 s->p_mv_table[xy][0] = mx; in set_p_mv_tables() 502 s->p_mv_table[xy][1] = my; in set_p_mv_tables() 636 … dmin4 = epzs_motion_search2(s, &mx4, &my4, P, block, block, s->p_mv_table, (1<<16)>>shift, 1); in h263_mv4_search() 958 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() 1079 P_LEFT[0] = s->p_mv_table[xy + 1][0]; in ff_pre_estimate_p_frame_motion() 1080 P_LEFT[1] = s->p_mv_table[xy + 1][1]; in ff_pre_estimate_p_frame_motion() 1091 P_TOP[0] = s->p_mv_table[xy + s->mb_stride ][0]; in ff_pre_estimate_p_frame_motion() 1092 P_TOP[1] = s->p_mv_table[xy + s->mb_stride ][1]; in ff_pre_estimate_p_frame_motion() 1093 P_TOPRIGHT[0] = s->p_mv_table[xy + s->mb_stride - 1][0]; in ff_pre_estimate_p_frame_motion() 1094 P_TOPRIGHT[1] = s->p_mv_table[xy + s->mb_stride - 1][1]; in ff_pre_estimate_p_frame_motion() [all …]
|
D | svq1enc.c | 319 s->m.p_mv_table = s->motion_val16[plane] + in svq1_encode_plane() 350 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 | 3183 s->mv[0][0][0] = s->p_mv_table[xy][0]; in encode_thread() 3184 s->mv[0][0][1] = s->p_mv_table[xy][1]; in encode_thread() 3451 motion_x= s->mv[0][0][0] = s->p_mv_table[xy][0]; in encode_thread() 3452 motion_y= s->mv[0][0][1] = s->p_mv_table[xy][1]; in encode_thread() 3559 s->p_mv_table[xy][0]=0; in encode_thread() 3560 s->p_mv_table[xy][1]=0; in encode_thread() 3804 s->f_code= ff_get_best_fcode(s, s->p_mv_table, CANDIDATE_MB_TYPE_INTER); in encode_picture() 3814 …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.h | 248 int16_t (*p_mv_table)[2]; ///< MV table (1MV per MB) P-frame encoding member
|
D | mpegvideo.c | 764 s->p_mv_table = s->p_mv_table_base + s->mb_stride + 1; in init_context_frame() 873 s->p_mv_table = NULL; in clear_context() 1017 s->p_mv_table = NULL; in free_context_frame()
|