Lines Matching defs:height
183 c->height = 288;
386 static AVFrame *alloc_picture(enum AVPixelFormat pix_fmt, int width, int height)
397 picture->height = height;
427 ost->frame = alloc_picture(c->pix_fmt, c->width, c->height);
438 ost->tmp_frame = alloc_picture(AV_PIX_FMT_YUV420P, c->width, c->height);
455 int width, int height)
462 for (y = 0; y < height; y++)
467 for (y = 0; y < height / 2; y++) {
493 ost->sws_ctx = sws_getContext(c->width, c->height,
495 c->width, c->height,
504 fill_yuv_image(ost->tmp_frame, ost->next_pts, c->width, c->height);
506 ost->tmp_frame->linesize, 0, c->height, ost->frame->data,
509 fill_yuv_image(ost->frame, ost->next_pts, c->width, c->height);