Lines Matching refs:linesize
101 ptr += picture->linesize[0] << 1;
113 ptr += picture->linesize[0] << 1;
125 ptr1 += picture->linesize[1] << 1;
137 ptr2 += picture->linesize[2] << 1;
143 static av_noinline void interp_lines(uint8_t *ptr, int linesize,
152 uint8_t *dst = ptr + linesize;
153 const uint8_t *src2 = dst + linesize;
160 ptr += linesize << 1;
164 dst = ptr + linesize;
172 static av_noinline void interp_pixels(uint8_t *ptr, int linesize,
176 const uint8_t *src = ptr + (y >> 1) * linesize;
177 uint8_t *dst = ptr + y * linesize;
271 data = frame->data[idx] + (y >> !!idx) * frame->linesize[idx];
348 ptr += p->linesize[0];
351 ptr += p->linesize[0];
354 ptr1 += p->linesize[1];
357 ptr2 += p->linesize[2];
367 interp_lines(ptr1, p->linesize[1], img_info[2].width, img_info[2].height);
368 interp_lines(ptr2, p->linesize[2], img_info[2].width, img_info[2].height);
371 interp_pixels(ptr1, p->linesize[1], img_info[3].width, img_info[3].height);
372 interp_lines (ptr1, p->linesize[1], img_info[3].width, img_info[3].height);
373 interp_pixels(ptr2, p->linesize[2], img_info[3].width, img_info[3].height);
374 interp_lines (ptr2, p->linesize[2], img_info[3].width, img_info[3].height);
377 interp_lines(ptr, p->linesize[0], img_info[3].width, img_info[3].height);
389 interp_pixels(ptr, p->linesize[0], img_info[4].width, img_info[4].height);
390 interp_lines (ptr, p->linesize[0], img_info[4].width, img_info[4].height);
412 ptr1 += p->linesize[1];
413 ptr2 += p->linesize[2];