Home | History | Annotate | Download | only in src

Lines Matching refs:org_pitch

436     int org_pitch = encvid->currInput->pitch;
441 cost = cost_i16(orgY, org_pitch, encvid->pred_i16[AVC_I16_Vertical], *min_cost);
455 cost = cost_i16(orgY, org_pitch, encvid->pred_i16[AVC_I16_Horizontal], *min_cost);
466 cost = cost_i16(orgY, org_pitch, encvid->pred_i16[AVC_I16_DC], *min_cost);
478 cost = cost_i16(orgY, org_pitch, encvid->pred_i16[AVC_I16_Plane], *min_cost);
492 int cost_i16(uint8 *org, int org_pitch, uint8 *pred, int min_cost)
501 org_pitch -= 16;
527 org += org_pitch;
632 int org_pitch = currInput->pitch;
647 org8 = currInput->YCbCr[0] + y * org_pitch + x;
685 org4 += ((org_pitch << 2) - 4);
697 org8 += ((org_pitch << 3) - 8);
730 int org_pitch = encvid->currInput->pitch;
1200 cost_i4(org, org_pitch, pred, &cost);
1289 void cost_i4(uint8 *org, int org_pitch, uint8 *pred, uint16 *cost)
1314 org += org_pitch;
1388 int org_pitch;
1676 org_pitch = (currInput->pitch) >> 1;
1677 offset = x_pos + y_pos * org_pitch;
1683 cost = SATDChroma(orgCb, orgCr, org_pitch, encvid->pred_ic[AVC_IC_DC], mincost);
1692 cost = SATDChroma(orgCb, orgCr, org_pitch, encvid->pred_ic[AVC_IC_Horizontal], mincost);
1702 cost = SATDChroma(orgCb, orgCr, org_pitch, encvid->pred_ic[AVC_IC_Vertical], mincost);
1712 cost = SATDChroma(orgCb, orgCr, org_pitch, encvid->pred_ic[AVC_IC_Plane], mincost);
1725 int SATDChroma(uint8 *orgCb, uint8 *orgCr, int org_pitch, uint8 *pred, int min_cost)
1734 org_pitch -= 8;
1759 orgCb += org_pitch;
1781 orgCr += org_pitch;