Lines Matching defs:width
45 int width, height;
53 s->width = avctx->width;
54 /* width needs to be divisible by 4 for this codec to work */
55 if (s->width & 0x3)
85 int rawsize = s->height * FFALIGN(s->width,2) * 2;
95 * (3 * 16) + height * (width * 3 / 4) */
96 if (buf_size == 48 + s->height * (s->width * 3 / 4)) {
102 buf_size, 48 + s->height * (s->width * 3 / 4));
117 int linesize = FFALIGN(s->width,2) * 2;
128 y_ptr += frame->linesize[0] - s->width,
129 u_ptr += frame->linesize[1] - s->width / 4,
130 v_ptr += frame->linesize[2] - s->width / 4) {
149 pixel_groups = s->width / 4 - 1;