Lines Matching defs:height
335 f->data[0] = f->data[0] + ( f->height - 1) * f->linesize[0];
336 f->data[1] = f->data[2] + ((f->height >> 1) - 1) * f->linesize[2];
337 f->data[2] = data_1 + ((f->height >> 1) - 1) * f->linesize[1];
351 int width, height;
364 height = bytestream2_get_le16u(&gb);
373 if (!(width == 160 && height == 120) &&
374 !(width == 320 && height == 240)) {
375 av_log(avctx, AV_LOG_ERROR, "invalid width/height!\n");
379 res = ff_set_dimensions(avctx, width, height);
386 ctx->num_vblocks[i] = AV_CEIL_RSHIFT(height, 3 + !!i);
389 } else if (width != ctx->avctx->width || height != ctx->avctx->height) {