Lines Matching refs:top
133 int left, top, width, height, bits_per_pixel, code_size, flags, pw;
144 top = bytestream2_get_le16u(&s->gb);
152 ff_dlog(s->avctx, "image x=%d y=%d w=%d h=%d\n", left, top, width, height);
195 if (top >= s->screen_height) {
196 av_log(s->avctx, AV_LOG_ERROR, "Invalid top position: %d.\n", top);
207 if (top + height > s->screen_height) {
210 top + height - s->screen_height);
211 height = s->screen_height - top;
225 s->gce_l = left; s->gce_t = top;
239 frame->linesize[0] / sizeof(uint32_t), left, top, pw, height);
257 ptr1 = (uint32_t *)frame->data[0] + top * linesize + left;