Lines Matching defs:height
63 return V4L2_TYPE_IS_MULTIPLANAR(fmt->type) ? fmt->fmt.pix_mp.height : fmt->fmt.pix.height;
89 fmt1->fmt.pix_mp.height != fmt2->fmt.pix_mp.height
92 fmt1->fmt.pix.height != fmt2->fmt.pix.height;
111 static inline int v4l2_get_framesize_compressed(V4L2Context* ctx, int width, int height)
118 return ((width * height * 3 / 2) / 2) + 128;
121 size = FFALIGN(height, 32) * FFALIGN(width, 32) * 3 / 2 / 2;
134 ctx->format.fmt.pix_mp.height = ctx->height;
141 v4l2_get_framesize_compressed(ctx, ctx->width, ctx->height);
144 ctx->format.fmt.pix.height = ctx->height;
151 v4l2_get_framesize_compressed(ctx, ctx->width, ctx->height);
204 s->capture.height = v4l2_get_height(&cap_fmt);
215 ret = ff_set_dimensions(s->avctx, s->capture.width, s->capture.height);
217 av_log(logger(ctx), AV_LOG_WARNING, "update avcodec height and width\n");