Searched refs:P_LEFT (Results 1 - 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | motion_est.c | 40 #define P_LEFT P[1] macro 601 P_LEFT[0] = s->current_picture.motion_val[0][mot_xy - 1][0]; in h263_mv4_search() 602 P_LEFT[1] = s->current_picture.motion_val[0][mot_xy - 1][1]; in h263_mv4_search() 604 if (P_LEFT[0] > c->xmax * (1 << shift)) P_LEFT[0] = c->xmax * (1 << shift); in h263_mv4_search() 608 c->pred_x= pred_x4= P_LEFT[0]; in h263_mv4_search() 609 c->pred_y= pred_y4= P_LEFT[1]; in h263_mv4_search() 620 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); in h263_mv4_search() 621 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); in h263_mv4_search() 777 P_LEFT[ in interlaced_search() [all...] |
H A D | motion_est_template.c | 905 CHECK_MV(P_LEFT[0]>>shift, P_LEFT[1]>>shift) in epzs_motion_search_internal() 910 && ( P_LEFT[0] |P_LEFT[1] in epzs_motion_search_internal() 925 CHECK_MV(P_LEFT[0] >>shift, P_LEFT[1] >>shift) in epzs_motion_search_internal() 1020 CHECK_MV(P_LEFT[0]>>shift, P_LEFT[1]>>shift) in epzs_motion_search2() 1028 CHECK_MV(P_LEFT[0]>>shift, P_LEFT[ in epzs_motion_search2() [all...] |
H A D | snowenc.c | 213 #define P_LEFT P[1] macro 273 P_LEFT[0]= left->mx; in encode_q_branch() 274 P_LEFT[1]= left->my; in encode_q_branch() 310 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift); in encode_q_branch() 311 if(P_LEFT[1] > (c->ymax<<shift)) P_LEFT[1] = (c->ymax<<shift); in encode_q_branch() 318 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); in encode_q_branch() 319 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); in encode_q_branch() 322 c->pred_x= P_LEFT[ in encode_q_branch() [all...] |
Completed in 7 milliseconds