Lines Matching defs:height
91 uint32_t *p_end = p + (picture->linesize[0] / sizeof(uint32_t)) * picture->height;
133 int left, top, width, height, bits_per_pixel, code_size, flags, pw;
146 height = bytestream2_get_le16u(&s->gb);
152 ff_dlog(s->avctx, "image x=%d y=%d w=%d h=%d\n", left, top, width, height);
191 if (!height || height > s->screen_height) {
192 av_log(s->avctx, AV_LOG_WARNING, "Invalid image height: %d, truncating.\n", height);
193 height = s->screen_height;
207 if (top + height > s->screen_height) {
210 top + height - s->screen_height);
211 height = s->screen_height - top;
226 s->gce_w = pw; s->gce_h = height;
234 av_fast_malloc(&s->stored_img, &s->stored_img_size, frame->linesize[0] * frame->height);
239 frame->linesize[0] / sizeof(uint32_t), left, top, pw, height);
261 for (y = 0; y < height; y++) {
293 while (y1 >= height) {