Lines Matching defs:width
47 int width,height;
75 uint8_t *dst, int width, int height)
77 uint8_t *dst_end = dst + width*height;
223 (s->avctx->height / 4) * (s->avctx->width / 4))
228 for (x = 0; x < s->avctx->width / 4; x++) {
237 if (mx < 0 || mx + 4 > s->avctx->width ||
287 s->width = AV_RL16(&buf[0]);
289 if (s->avctx->width != s->width || s->avctx->height != s->height) {
292 if ((ret = ff_set_dimensions(s->avctx, s->width, s->height)) < 0)
318 !(s->frame_buffer = av_mallocz(s->width * s->height)))
321 if (unpack(buf, buf_end, s->frame_buffer, s->avctx->width, s->avctx->height) < 0) {
327 s->frame_buffer + y * s->width,
328 s->width);