Searched refs:frame_aspect_ratio (Results 1 - 3 of 3) sorted by relevance
/third_party/ffmpeg/fftools/ |
H A D | ffmpeg.h | 504 AVRational frame_aspect_ratio; member
|
H A D | ffmpeg_opt.c | 1804 char *frame_rate = NULL, *max_frame_rate = NULL, *frame_aspect_ratio = NULL; in new_video_stream() local 1831 MATCH_PER_STREAM_OPT(frame_aspect_ratios, str, frame_aspect_ratio, oc, st); in new_video_stream() 1832 if (frame_aspect_ratio) { in new_video_stream() 1834 if (av_parse_ratio(&q, frame_aspect_ratio, 255, 0, NULL) < 0 || in new_video_stream() 1836 av_log(NULL, AV_LOG_FATAL, "Invalid aspect ratio: %s\n", frame_aspect_ratio); in new_video_stream() 1839 ost->frame_aspect_ratio = q; in new_video_stream()
|
H A D | ffmpeg.c | 1364 if (!ost->frame_aspect_ratio.num) in reap_filters() 2804 if (ost->frame_aspect_ratio.num) { // overridden by the -aspect cli option in init_output_stream_streamcopy() 2806 av_mul_q(ost->frame_aspect_ratio, in init_output_stream_streamcopy() 3031 ost->frame_aspect_ratio.num ? // overridden by the -aspect cli option in init_output_stream_encode() 3032 av_mul_q(ost->frame_aspect_ratio, (AVRational){ enc_ctx->height, enc_ctx->width }) : in init_output_stream_encode()
|
Completed in 17 milliseconds