Lines Matching refs:stride
233 int stride, int comp, int bits)
246 Ra = x ? R(dst, x - stride) : R(last, x);
248 Rc = x ? R(last, x - stride) : last2;
249 Rd = (x >= w - stride) ? R(last, x) : R(last, x + stride);
264 if (x + r * stride > w)
265 r = (w - x) / stride;
268 x += stride;
275 if (x + stride > w)
282 if (x + r * stride > w) {
283 r = (w - x) / stride;
287 x += stride;
348 x += stride;
360 int off = 0, stride = 1, width, shift, ret = 0;
416 stride = (s->nb_components > 1) ? 3 : 1;
417 off = av_clip(s->cur_scan - 1, 0, stride - 1);
418 width = s->width * stride;
423 ret = ls_decode_line(state, s, last, cur, t, width, stride, off, 8);
426 ret = ls_decode_line(state, s, last, cur, t, width, stride, off, 16);
443 stride = (s->nb_components > 1) ? 3 : 1;
445 width = s->width * stride;
448 for (j = 0; j < stride; j++) {
450 Rc[j], width, stride, j, 8);
532 for (x = off; x < w; x += stride)