Lines Matching refs:stride
298 int h, int stride, int scale, unsigned dc)
308 src += stride;
309 dst += stride;
316 src += stride;
317 dst += stride;
325 src += stride;
326 dst += stride;
336 src += stride;
337 dst += stride;
346 int log2w, int log2h, int stride)
365 end = start + stride * (f->avctx->height - h + 1) - (1 << log2w);
369 if ((ret = decode_p_block(f, dst, src, log2w, log2h, stride)) < 0)
371 return decode_p_block(f, dst + (stride << log2h),
372 src + (stride << log2h),
373 log2w, log2h, stride);
376 if ((ret = decode_p_block(f, dst , src, log2w, log2h, stride)) < 0)
380 log2w, log2h, stride);
391 dst[stride] = bytestream2_get_le16u(&f->g2);
427 mcdc(dst, src, log2w, h, stride, scale, dc);
562 int stride = f->avctx->width;
564 uint16_t *dst = f->frame_buffer + y * stride + x;
596 dst[stride] = ((y + cb) >> 3) + (((y - cg) & 0xFC) << 3) + (((y + cr) & 0xF8) << 8);
598 dst[1 + stride] = ((y + cb) >> 3) + (((y - cg) & 0xFC) << 3) + (((y + cr) & 0xF8) << 8);
601 dst += 2 * stride - 2 * 8;