Searched refs:frame_aspect_ratio (Results 1 – 3 of 3) sorted by relevance
/third_party/ffmpeg/fftools/ |
D | ffmpeg.h | 496 AVRational frame_aspect_ratio; member
|
D | ffmpeg_opt.c | 1695 char *frame_rate = NULL, *max_frame_rate = NULL, *frame_aspect_ratio = NULL; in new_video_stream() local 1722 MATCH_PER_STREAM_OPT(frame_aspect_ratios, str, frame_aspect_ratio, oc, st); in new_video_stream() 1723 if (frame_aspect_ratio) { in new_video_stream() 1725 if (av_parse_ratio(&q, frame_aspect_ratio, 255, 0, NULL) < 0 || in new_video_stream() 1727 av_log(NULL, AV_LOG_FATAL, "Invalid aspect ratio: %s\n", frame_aspect_ratio); in new_video_stream() 1730 ost->frame_aspect_ratio = q; in new_video_stream()
|
D | ffmpeg.c | 1559 if (!ost->frame_aspect_ratio.num) in reap_filters() 3198 if (ost->frame_aspect_ratio.num) { // overridden by the -aspect cli option in init_output_stream_streamcopy() 3200 av_mul_q(ost->frame_aspect_ratio, in init_output_stream_streamcopy() 3441 ost->frame_aspect_ratio.num ? // overridden by the -aspect cli option in init_output_stream_encode() 3442 av_mul_q(ost->frame_aspect_ratio, (AVRational){ enc_ctx->height, enc_ctx->width }) : in init_output_stream_encode()
|