Lines Matching refs:pitch
126 list[n++] = list[i] + (((level & 1) ? pitch : 1) << ((level >> 1) + 1));\
165 ptrdiff_t pitch)
195 memset(&dst[y * (pitch / 4)], 0, width);
211 memset(&dst[y * (pitch / 4)], mean, width);
223 dst += pitch / 4;
232 ptrdiff_t pitch)
285 dst += pitch / 4;
318 ptrdiff_t pitch, int x, int y)
324 src = &previous[x + y * pitch];
329 src += pitch;
330 dst += pitch;
336 ptrdiff_t pitch, svq1_pmv *motion, int x, int y,
369 src = &previous[(x + (mv.x >> 1)) + (y + (mv.y >> 1)) * pitch];
372 hdsp->put_pixels_tab[0][(mv.y & 1) << 1 | (mv.x & 1)](dst, src, pitch, 16);
379 ptrdiff_t pitch, svq1_pmv *motion, int x, int y,
439 src = &previous[(x + (mvx >> 1)) + (y + (mvy >> 1)) * pitch];
442 hdsp->put_pixels_tab[1][((mvy & 1) << 1) | (mvx & 1)](dst, src, pitch, 8);
446 current += 8 * (pitch - 1);
457 ptrdiff_t pitch, svq1_pmv *motion, int x, int y,
479 svq1_skip_block(current, previous, pitch, x, y);
484 pitch, motion, x, y, width, height);
490 result = svq1_decode_block_non_intra(bitbuf, current, pitch);
495 pitch, motion, x, y, width, height);
501 result = svq1_decode_block_non_intra(bitbuf, current, pitch);
505 result = svq1_decode_block_intra(bitbuf, current, pitch);