Lines Matching defs:height
45 int width, height;
57 s->height = avctx->height;
85 int rawsize = s->height * FFALIGN(s->width,2) * 2;
93 * followed by (height) lines each with 3 bytes to represent groups
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));
118 y_plane += frame->linesize[0] * s->height;
125 /* iterate through each line in the height */
127 y_ptr < (s->height * frame->linesize[0]);