Lines Matching defs:height
101 if (offset >= (t->avctx->height - 7) * t->last_frame->linesize[0] - 7)
110 if (offset >= (t->avctx->height/2 - 7) * t->last_frame->linesize[index] - 7)
257 int width, height;
271 height = bytestream2_get_le16(&gb);
281 if (width < 16 || height < 16) {
286 if (avctx->width != width || avctx->height != height) {
288 if((width * (int64_t)height)/2048*7 > bytestream2_get_bytes_left(&gb))
290 if ((ret = ff_set_dimensions(avctx, width, height)) < 0)
302 memset(s->last_frame->data[0], 0, s->last_frame->height *
304 memset(s->last_frame->data[1], 0x80, s->last_frame->height / 2 *
306 memset(s->last_frame->data[2], 0x80, s->last_frame->height / 2 *
319 for (s->mb_y=0; s->mb_y < (avctx->height+15)/16; s->mb_y++)