• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching defs:P_LEFT

44 #define P_LEFT P[1]
594 P_LEFT[0] = s->current_picture.f.motion_val[0][mot_xy - 1][0];
595 P_LEFT[1] = s->current_picture.f.motion_val[0][mot_xy - 1][1];
597 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift);
601 c->pred_x= pred_x4= P_LEFT[0];
602 c->pred_y= pred_y4= P_LEFT[1];
613 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
614 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
758 P_LEFT[0] = mv_table[xy - 1][0];
759 P_LEFT[1] = mv_table[xy - 1][1];
760 if(P_LEFT[0] > (c->xmax<<1)) P_LEFT[0] = (c->xmax<<1);
762 c->pred_x= P_LEFT[0];
763 c->pred_y= P_LEFT[1];
775 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
776 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1054 P_LEFT[0] = s->current_picture.f.motion_val[0][mot_xy - 1][0];
1055 P_LEFT[1] = s->current_picture.f.motion_val[0][mot_xy - 1][1];
1057 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift);
1068 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1069 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1075 c->pred_x= P_LEFT[0];
1076 c->pred_y= P_LEFT[1];
1079 c->pred_x= P_LEFT[0];
1080 c->pred_y= P_LEFT[1];
1229 P_LEFT[0] = s->p_mv_table[xy + 1][0];
1230 P_LEFT[1] = s->p_mv_table[xy + 1][1];
1232 if(P_LEFT[0] < (c->xmin<<shift)) P_LEFT[0] = (c->xmin<<shift);
1236 c->pred_x= P_LEFT[0];
1237 c->pred_y= P_LEFT[1];
1249 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1250 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1294 P_LEFT[0] = mv_table[mot_xy - 1][0];
1295 P_LEFT[1] = mv_table[mot_xy - 1][1];
1297 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift);
1309 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1310 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1312 c->pred_x= P_LEFT[0];
1313 c->pred_y= P_LEFT[1];
1622 P_LEFT[0] = av_clip(mv_table[mot_xy - 1][0], xmin<<shift, xmax<<shift);
1623 P_LEFT[1] = av_clip(mv_table[mot_xy - 1][1], ymin<<shift, ymax<<shift);
1632 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1633 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);