Lines Matching refs:stride
267 int width, int stride, int line)
276 L = buf[width - stride - 1];
281 TL = l->avctx->pix_fmt == AV_PIX_FMT_YUV420P ? buf[-stride] : L;
284 TL = buf[width - (2 * stride) - 1];
287 add_lag_median_prediction(buf, buf - stride, buf,
293 int width, int stride, int line,
311 L = buf[width - stride - 1];
312 TL = buf[HEAD - stride - 1];
318 L = mid_pred(L & 0xFF, buf[i - stride], (L + buf[i - stride] - TL) & 0xFF) + buf[i];
319 TL = buf[i - stride];
323 TL = buf[width - (2 * stride) - 1];
324 L = buf[width - stride - 1];
325 l->llviddsp.add_median_pred(buf, buf - stride, buf, width, &L, &TL);
330 uint8_t *dst, int width, int stride,
433 int width, int height, int stride,
468 ff_lag_rac_init(&rac, &gb, length - stride);
472 read += lag_decode_line(l, &rac, dst + (i * stride), width,
473 stride, esc_count);
487 int res = lag_decode_zero_run_line(l, dst + (i * stride), src,
498 memcpy(dst + (i * stride), src, width);
505 memset(dst + i * stride, src[1], width);
518 lag_pred_line(l, dst, width, stride, i);
519 dst += stride;
523 lag_pred_line_yuy2(l, dst, width, stride, i,
525 dst += stride;