Searched refs:max_frame_rate (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/libavformat/ |
H A D | dashenc.c | 93 AVRational min_frame_rate, max_frame_rate; member 804 if (as->media_type == AVMEDIA_TYPE_VIDEO && as->max_frame_rate.num && !as->ambiguous_frame_rate && av_cmp_q(as->min_frame_rate, as->max_frame_rate) < 0) in write_adaptation_set() 805 avio_printf(out, " maxFrameRate=\"%d/%d\"", as->max_frame_rate.num, as->max_frame_rate.den); in write_adaptation_set() 806 else if (as->media_type == AVMEDIA_TYPE_VIDEO && as->max_frame_rate.num && !as->ambiguous_frame_rate && !av_cmp_q(as->min_frame_rate, as->max_frame_rate)) in write_adaptation_set() 807 avio_printf(out, " frameRate=\"%d/%d\"", as->max_frame_rate.num, as->max_frame_rate.den); in write_adaptation_set() 850 if (st->avg_frame_rate.num && av_cmp_q(as->min_frame_rate, as->max_frame_rate) < in write_adaptation_set() [all...] |
/third_party/ffmpeg/fftools/ |
H A D | ffmpeg.h | 493 AVRational max_frame_rate; 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 1816 MATCH_PER_STREAM_OPT(max_frame_rates, str, max_frame_rate, oc, st); in new_video_stream() 1817 if (max_frame_rate && av_parse_video_rate(&ost->max_frame_rate, max_frame_rate) < 0) { in new_video_stream() 1818 av_log(NULL, AV_LOG_FATAL, "Invalid maximum framerate value: %s\n", max_frame_rate); in new_video_stream() 1822 if (frame_rate && max_frame_rate) { in new_video_stream() 1827 if ((frame_rate || max_frame_rate) && in new_video_stream()
|
H A D | ffmpeg.c | 2972 if (ist && !ost->frame_rate.num && !ost->max_frame_rate.num) { in init_output_stream_encode() 2982 if (ost->max_frame_rate.num && in init_output_stream_encode() 2983 (av_q2d(ost->frame_rate) > av_q2d(ost->max_frame_rate) || in init_output_stream_encode() 2985 ost->frame_rate = ost->max_frame_rate; in init_output_stream_encode()
|
Completed in 16 milliseconds