Lines Matching defs:srcPitch
304 int dstPitch = frame->pitch[!sub], srcPitch;
316 srcPitch = ALIGN((frame->width >> 1), 4);
318 srcPitch = ALIGN(frame->width, 4);
320 src += y * srcPitch + x;
327 if (srcPitch == dstPitch && srcPitch == w)
328 memcpy(dst, src, srcPitch * h);
331 src += srcPitch;
340 src += srcPitch;
350 src += srcPitch;
359 src += srcPitch;