Lines Matching defs:plane
34 void ff_ivi_recompose53(const IVIPlaneDesc *plane, uint8_t *dst,
46 pitch = plane->bands[0].pitch;
52 b0_ptr = plane->bands[0].buf;
53 b1_ptr = plane->bands[1].buf;
54 b2_ptr = plane->bands[2].buf;
55 b3_ptr = plane->bands[3].buf;
57 for (y = 0; y < plane->height; y += 2) {
59 if (y+2 >= plane->height)
89 for (x = 0, indx = 0; x < plane->width; x+=2, indx++) {
90 if (x+2 >= plane->width) {
191 void ff_ivi_recompose_haar(const IVIPlaneDesc *plane, uint8_t *dst,
199 pitch = plane->bands[0].pitch;
202 b0_ptr = plane->bands[0].buf;
203 b1_ptr = plane->bands[1].buf;
204 b2_ptr = plane->bands[2].buf;
205 b3_ptr = plane->bands[3].buf;
207 for (y = 0; y < plane->height; y += 2) {
208 for (x = 0, indx = 0; x < plane->width; x += 2, indx++) {