Lines Matching refs:stride
37 int stride;
111 int stride = td->stride;
114 uint8_t *psrc = td->buf + stride * slice_start;
121 psrc += stride;
140 int ret, stride, aligned_input;
144 stride = s->custom_stride > 0 ? s->custom_stride : 0;
146 stride = v210_stride(avctx->width, 48);
147 if (avpkt->size < stride * avctx->height) {
152 stride = small_stride;
160 stride = 0;
164 if (stride == 0 && ((avctx->width & 1) || (int64_t)avctx->width * avctx->height > INT_MAX / 6)) {
169 if (stride > 0 && avpkt->size < (int64_t)stride * avctx->height ||
170 stride == 0 && avpkt->size < v210_stride(avctx->width * avctx->height, 6)) {
177 && avpkt->size - 64 >= stride * avctx->height)
180 aligned_input = !((uintptr_t)psrc & 0x1f) && !(stride & 0x1f);
192 if (stride) {
193 td.stride = stride;
222 {"custom_stride", "Custom V210 stride", offsetof(V210DecContext, custom_stride), AV_OPT_TYPE_INT,