Home | History | Annotate | Download | only in libhwcomposer

Lines Matching refs:crop_h

1033     int crop_h = crop.bottom - crop.top;
1072 crop_t += (int)round((double)crop_h * topCutRatio);
1074 crop_b -= (int)round((double)crop_h * bottomCutRatio);
1449 uint32_t crop_h = (crop.bottom - crop.top);
1452 ovutils::normalizeCrop((uint32_t&)crop.top, crop_h);
1454 if ((mdpFlags & ovutils::OV_MDP_DEINTERLACE) && (crop_h % 4))
1455 crop_h = ovutils::aligndown(crop_h, 4);
1457 crop.bottom = crop.top + crop_h;
1459 Dim rotCrop(crop.left, crop.top, crop_w, crop_h);
1478 int crop_h = crop.bottom - crop.top;
1479 Dim dcrop(crop.left, crop.top, crop_w, crop_h);