Lines Matching defs:width
35 int width, height;
45 if (*x + run >= s->width) {
46 int n = s->width - *x;
79 while (xl == s->width) {
92 run*pixels_per_value >= s->width &&
93 pixels_per_value < (s->width / pixels_per_value * pixels_per_value)
99 av_memcpy_backptr(d+xl, pixels_per_value, s->width - xl);
100 run -= s->width / pixels_per_value;
101 xl = s->width / pixels_per_value * pixels_per_value;
138 s->width = bytestream2_get_le16u(&s->g);
163 if (av_image_check_size(s->width, s->height, 0, avctx) < 0)
165 if (s->width != avctx->width || s->height != avctx->height) {
166 ret = ff_set_dimensions(avctx, s->width, s->height);
260 if (plane < s->nb_planes && x < avctx->width) {
261 int run = (y + 1) * avctx->width - x;
269 memcpy(frame->data[0] + y * frame->linesize[0], s->g.buffer, FFMIN(avctx->width, bytestream2_get_bytes_left(&s->g)));
270 bytestream2_skip(&s->g, avctx->width);