• Home
  • Raw
  • Download

Lines Matching refs:stride

33 void FUNCC(ff_h264_idct_add)(uint8_t *_dst, int16_t *_block, int stride)  in FUNCC()
38 stride >>= sizeof(pixel)-1; in FUNCC()
60 dst[i + 0*stride]= av_clip_pixel(dst[i + 0*stride] + ((int)(z0 + z3) >> 6)); in FUNCC()
61 dst[i + 1*stride]= av_clip_pixel(dst[i + 1*stride] + ((int)(z1 + z2) >> 6)); in FUNCC()
62 dst[i + 2*stride]= av_clip_pixel(dst[i + 2*stride] + ((int)(z1 - z2) >> 6)); in FUNCC()
63 dst[i + 3*stride]= av_clip_pixel(dst[i + 3*stride] + ((int)(z0 - z3) >> 6)); in FUNCC()
69 void FUNCC(ff_h264_idct8_add)(uint8_t *_dst, int16_t *_block, int stride){ in FUNCC()
73 stride >>= sizeof(pixel)-1; in FUNCC()
130 dst[i + 0*stride] = av_clip_pixel( dst[i + 0*stride] + ((int)(b0 + b7) >> 6) ); in FUNCC()
131 dst[i + 1*stride] = av_clip_pixel( dst[i + 1*stride] + ((int)(b2 + b5) >> 6) ); in FUNCC()
132 dst[i + 2*stride] = av_clip_pixel( dst[i + 2*stride] + ((int)(b4 + b3) >> 6) ); in FUNCC()
133 dst[i + 3*stride] = av_clip_pixel( dst[i + 3*stride] + ((int)(b6 + b1) >> 6) ); in FUNCC()
134 dst[i + 4*stride] = av_clip_pixel( dst[i + 4*stride] + ((int)(b6 - b1) >> 6) ); in FUNCC()
135 dst[i + 5*stride] = av_clip_pixel( dst[i + 5*stride] + ((int)(b4 - b3) >> 6) ); in FUNCC()
136 dst[i + 6*stride] = av_clip_pixel( dst[i + 6*stride] + ((int)(b2 - b5) >> 6) ); in FUNCC()
137 dst[i + 7*stride] = av_clip_pixel( dst[i + 7*stride] + ((int)(b0 - b7) >> 6) ); in FUNCC()
144 void FUNCC(ff_h264_idct_dc_add)(uint8_t *_dst, int16_t *_block, int stride){ in FUNCC()
149 stride /= sizeof(pixel); in FUNCC()
155 dst += stride; in FUNCC()
159 void FUNCC(ff_h264_idct8_dc_add)(uint8_t *_dst, int16_t *_block, int stride){ in FUNCC()
165 stride /= sizeof(pixel); in FUNCC()
170 dst += stride; in FUNCC()
174 void FUNCC(ff_h264_idct_add16)(uint8_t *dst, const int *block_offset, int16_t *block, int stride, c… in FUNCC()
179 …lock)[i*16]) FUNCC(ff_h264_idct_dc_add)(dst + block_offset[i], block + i*16*sizeof(pixel), stride); in FUNCC()
180 … FUNCC(ff_h264_idct_add )(dst + block_offset[i], block + i*16*sizeof(pixel), stride); in FUNCC()
185 …t_add16intra)(uint8_t *dst, const int *block_offset, int16_t *block, int stride, const uint8_t nnz… in FUNCC()
188 … FUNCC(ff_h264_idct_add )(dst + block_offset[i], block + i*16*sizeof(pixel), stride); in FUNCC()
189 …lock)[i*16]) FUNCC(ff_h264_idct_dc_add)(dst + block_offset[i], block + i*16*sizeof(pixel), stride); in FUNCC()
193 void FUNCC(ff_h264_idct8_add4)(uint8_t *dst, const int *block_offset, int16_t *block, int stride, c… in FUNCC()
198 …ock)[i*16]) FUNCC(ff_h264_idct8_dc_add)(dst + block_offset[i], block + i*16*sizeof(pixel), stride); in FUNCC()
199 … FUNCC(ff_h264_idct8_add )(dst + block_offset[i], block + i*16*sizeof(pixel), stride); in FUNCC()
204 void FUNCC(ff_h264_idct_add8)(uint8_t **dest, const int *block_offset, int16_t *block, int stride, … in FUNCC()
209 … FUNCC(ff_h264_idct_add )(dest[j-1] + block_offset[i], block + i*16*sizeof(pixel), stride); in FUNCC()
211 … FUNCC(ff_h264_idct_dc_add)(dest[j-1] + block_offset[i], block + i*16*sizeof(pixel), stride); in FUNCC()
216 …t_add8_422)(uint8_t **dest, const int *block_offset, int16_t *block, int stride, const uint8_t nnz… in FUNCC()
222 … FUNCC(ff_h264_idct_add )(dest[j-1] + block_offset[i], block + i*16*sizeof(pixel), stride); in FUNCC()
224 … FUNCC(ff_h264_idct_dc_add)(dest[j-1] + block_offset[i], block + i*16*sizeof(pixel), stride); in FUNCC()
231 … FUNCC(ff_h264_idct_add )(dest[j-1] + block_offset[i+4], block + i*16*sizeof(pixel), stride); in FUNCC()
233 … FUNCC(ff_h264_idct_dc_add)(dest[j-1] + block_offset[i+4], block + i*16*sizeof(pixel), stride); in FUNCC()
243 #define stride 16 in FUNCC() macro
246 static const uint8_t x_offset[4]={0, 2*stride, 8*stride, 10*stride}; in FUNCC()
269 output[stride* 0+offset]= (int)((z0 + z3)*qmul + 128 ) >> 8; in FUNCC()
270 output[stride* 1+offset]= (int)((z1 + z2)*qmul + 128 ) >> 8; in FUNCC()
271 output[stride* 4+offset]= (int)((z1 - z2)*qmul + 128 ) >> 8; in FUNCC()
272 output[stride* 5+offset]= (int)((z0 - z3)*qmul + 128 ) >> 8; in FUNCC()
274 #undef stride in FUNCC()
278 const int stride= 16*2; in FUNCC() local
286 temp[2*i+0] = block[stride*i + xStride*0] + (unsigned)block[stride*i + xStride*1]; in FUNCC()
287 temp[2*i+1] = block[stride*i + xStride*0] - (unsigned)block[stride*i + xStride*1]; in FUNCC()
297 block[stride*0+offset]= (int)((z0 + z3)*qmul + 128) >> 8; in FUNCC()
298 block[stride*1+offset]= (int)((z1 + z2)*qmul + 128) >> 8; in FUNCC()
299 block[stride*2+offset]= (int)((z1 - z2)*qmul + 128) >> 8; in FUNCC()
300 block[stride*3+offset]= (int)((z0 - z3)*qmul + 128) >> 8; in FUNCC()
305 const int stride= 16*2; in FUNCC() local
310 a= block[stride*0 + xStride*0]; in FUNCC()
311 b= block[stride*0 + xStride*1]; in FUNCC()
312 c= block[stride*1 + xStride*0]; in FUNCC()
313 d= block[stride*1 + xStride*1]; in FUNCC()
320 block[stride*0 + xStride*0]= (int)((a+c)*qmul) >> 7; in FUNCC()
321 block[stride*0 + xStride*1]= (int)((e+b)*qmul) >> 7; in FUNCC()
322 block[stride*1 + xStride*0]= (int)((a-c)*qmul) >> 7; in FUNCC()
323 block[stride*1 + xStride*1]= (int)((e-b)*qmul) >> 7; in FUNCC()