Lines Matching refs:pitch
41 ptrdiff_t pitch, back_pitch;
45 /* all bands should have the same pitch */
46 pitch = plane->bands[0].pitch;
60 pitch= 0;
64 b0_2 = b0_ptr[pitch];
70 b1_3 = b1_1 - b1_2*6 + b1_ptr[pitch];
76 b2_5 = b2_ptr[pitch]; // b2[x ,y+1]
85 b3_8 = b3_2 - b3_5*6 + b3_ptr[pitch];
117 b0_2 = b0_ptr[pitch+indx+1];
134 b1_3 = b1_1 - b1_2*6 + b1_ptr[pitch+indx+1];
145 b2_6 = b2_ptr[pitch+indx+1];
165 b3_9 = b3_3 - b3_6*6 + b3_ptr[pitch+indx+1];
182 back_pitch = -pitch;
184 b0_ptr += pitch + 1;
185 b1_ptr += pitch + 1;
186 b2_ptr += pitch + 1;
187 b3_ptr += pitch + 1;
196 ptrdiff_t pitch;
198 /* all bands should have the same pitch */
199 pitch = plane->bands[0].pitch;
230 b0_ptr += pitch;
231 b1_ptr += pitch;
232 b2_ptr += pitch;
233 b3_ptr += pitch;
271 void ff_ivi_inverse_haar_8x8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
321 out += pitch;
326 void ff_ivi_row_haar8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
346 out += pitch;
351 void ff_ivi_col_haar8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
363 out[0 * pitch], out[1 * pitch],
364 out[2 * pitch], out[3 * pitch],
365 out[4 * pitch], out[5 * pitch],
366 out[6 * pitch], out[7 * pitch],
369 out[0 * pitch] = out[1 * pitch] =
370 out[2 * pitch] = out[3 * pitch] =
371 out[4 * pitch] = out[5 * pitch] =
372 out[6 * pitch] = out[7 * pitch] = 0;
380 void ff_ivi_inverse_haar_4x4(const int32_t *in, int16_t *out, ptrdiff_t pitch,
422 out += pitch;
427 void ff_ivi_row_haar4(const int32_t *in, int16_t *out, ptrdiff_t pitch,
444 out += pitch;
449 void ff_ivi_col_haar4(const int32_t *in, int16_t *out, ptrdiff_t pitch,
460 out[0 * pitch], out[1 * pitch],
461 out[2 * pitch], out[3 * pitch],
464 out[0 * pitch] = out[1 * pitch] =
465 out[2 * pitch] = out[3 * pitch] = 0;
473 void ff_ivi_dc_haar_2d(const int32_t *in, int16_t *out, ptrdiff_t pitch,
481 for (y = 0; y < blk_size; out += pitch, y++) {
537 void ff_ivi_inverse_slant_8x8(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
572 out += pitch;
577 void ff_ivi_inverse_slant_4x4(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
612 out += pitch;
617 void ff_ivi_dc_slant_2d(const int32_t *in, int16_t *out, ptrdiff_t pitch, int blk_size)
624 for (y = 0; y < blk_size; out += pitch, y++) {
630 void ff_ivi_row_slant8(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
645 out += pitch;
650 void ff_ivi_dc_row_slant(const int32_t *in, int16_t *out, ptrdiff_t pitch, int blk_size)
660 out += pitch;
662 for (y = 1; y < blk_size; out += pitch, y++) {
668 void ff_ivi_col_slant8(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
673 row2 = pitch << 1;
674 row4 = pitch << 2;
675 row8 = pitch << 3;
681 out[0], out[pitch], out[row2], out[row2 + pitch], out[row4],
682 out[row4 + pitch], out[row4 + row2], out[row8 - pitch],
685 out[0] = out[pitch] = out[row2] = out[row2 + pitch] = out[row4] =
686 out[row4 + pitch] = out[row4 + row2] = out[row8 - pitch] = 0;
695 void ff_ivi_dc_col_slant(const int32_t *in, int16_t *out, ptrdiff_t pitch, int blk_size)
702 for (y = 0; y < blk_size; out += pitch, y++) {
709 void ff_ivi_row_slant4(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
724 out += pitch;
729 void ff_ivi_col_slant4(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
734 row2 = pitch << 1;
740 out[0], out[pitch], out[row2], out[row2 + pitch],
743 out[0] = out[pitch] = out[row2] = out[row2 + pitch] = 0;
752 void ff_ivi_put_pixels_8x8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
757 for (y = 0; y < 8; out += pitch, in += 8, y++)
762 void ff_ivi_put_dc_pixel_8x8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
769 out += pitch;
771 for (y = 1; y < 8; out += pitch, y++)
779 ptrdiff_t pitch, int mc_type) \
786 for (i = 0; i < size; i++, buf += dpitch, ref_buf += pitch) { \
793 for (i = 0; i < size; i++, buf += dpitch, ref_buf += pitch) \
798 wptr = ref_buf + pitch; \
799 for (i = 0; i < size; i++, buf += dpitch, wptr += pitch, ref_buf += pitch) \
804 wptr = ref_buf + pitch; \
805 for (i = 0; i < size; i++, buf += dpitch, wptr += pitch, ref_buf += pitch) \
813 ptrdiff_t pitch, int mc_type) \
815 ivi_mc_ ## size ##x## size ## suffix(buf, pitch, ref_buf, pitch, mc_type); \
822 ptrdiff_t pitch, \
828 ivi_mc_ ## size ##x## size ## _no_delta(tmp, size, ref_buf, pitch, mc_type); \
829 ivi_mc_ ## size ##x## size ## _delta(tmp, size, ref_buf2, pitch, mc_type2); \
830 for (i = 0; i < size; i++, buf += pitch) { \