• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching defs:P_LEFT

42 #define P_LEFT P[1]
595 P_LEFT[0] = s->current_picture.motion_val[0][mot_xy - 1][0];
596 P_LEFT[1] = s->current_picture.motion_val[0][mot_xy - 1][1];
598 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift);
602 c->pred_x= pred_x4= P_LEFT[0];
603 c->pred_y= pred_y4= P_LEFT[1];
614 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
615 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
768 P_LEFT[0] = mv_table[xy - 1][0];
769 P_LEFT[1] = mv_table[xy - 1][1];
770 if(P_LEFT[0] > (c->xmax<<1)) P_LEFT[0] = (c->xmax<<1);
772 c->pred_x= P_LEFT[0];
773 c->pred_y= P_LEFT[1];
785 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
786 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
927 P_LEFT[0] = s->current_picture.motion_val[0][mot_xy - 1][0];
928 P_LEFT[1] = s->current_picture.motion_val[0][mot_xy - 1][1];
930 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift);
941 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
942 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
948 c->pred_x= P_LEFT[0];
949 c->pred_y= P_LEFT[1];
952 c->pred_x= P_LEFT[0];
953 c->pred_y= P_LEFT[1];
1100 P_LEFT[0] = s->p_mv_table[xy + 1][0];
1101 P_LEFT[1] = s->p_mv_table[xy + 1][1];
1103 if(P_LEFT[0] < (c->xmin<<shift)) P_LEFT[0] = (c->xmin<<shift);
1107 c->pred_x= P_LEFT[0];
1108 c->pred_y= P_LEFT[1];
1120 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1121 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1163 P_LEFT[0] = mv_table[mot_xy - 1][0];
1164 P_LEFT[1] = mv_table[mot_xy - 1][1];
1166 if (P_LEFT[0] > (c->xmax << shift)) P_LEFT[0] = (c->xmax << shift);
1178 P_MEDIAN[0] = mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1179 P_MEDIAN[1] = mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1181 c->pred_x = P_LEFT[0];
1182 c->pred_y = P_LEFT[1];
1488 P_LEFT[0] = av_clip(mv_table[mot_xy - 1][0], xmin<<shift, xmax<<shift);
1489 P_LEFT[1] = av_clip(mv_table[mot_xy - 1][1], ymin<<shift, ymax<<shift);
1498 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1499 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);