Lines Matching defs:pitch
71 ptrdiff_t pitch;
201 ctx->planes[p].pitch = !p ? luma_pitch : chroma_pitch;
212 memset(ctx->planes[p].buffers[0], 0x40, ctx->planes[p].pitch);
213 memset(ctx->planes[p].buffers[1], 0x40, ctx->planes[p].pitch);
215 /* set buffer pointers = buf_ptr + pitch and thus skip the INTRA prediction line */
216 ctx->planes[p].pixels[0] = ctx->planes[p].buffers[0] + ctx->planes[p].pitch;
217 ctx->planes[p].pixels[1] = ctx->planes[p].buffers[1] + ctx->planes[p].pitch;
218 memset(ctx->planes[p].pixels[0], 0, ctx->planes[p].pitch * ctx->planes[p].height);
219 memset(ctx->planes[p].pixels[1], 0, ctx->planes[p].pitch * ctx->planes[p].height);
239 offset_dst = (cell->ypos << 2) * plane->pitch + (cell->xpos << 2);
256 offset = offset_dst + mv_y * plane->pitch + mv_x;
265 ctx->hdsp.put_pixels_tab[0][0](dst, src, plane->pitch, h);
270 ctx->hdsp.put_pixels_tab[1][0](dst, src, plane->pitch, h);
275 ctx->hdsp.put_pixels_tab[2][0](dst, src, plane->pitch, h);
600 offset = (cell->ypos << 2) * plane->pitch + (cell->xpos << 2);
605 ref_block = block - plane->pitch;
626 offset += mv_y * plane->pitch + mv_x;
673 error = decode_cell_data(ctx, cell, block, ref_block, plane->pitch,
680 error = decode_cell_data(ctx, cell, block, ref_block, plane->pitch,
690 error = decode_cell_data(ctx, cell, block, ref_block, plane->pitch,
1024 * @param[in] dst_pitch pitch for moving to the next y line
1032 ptrdiff_t pitch = plane->pitch;
1046 src += pitch - plane->width;