Home
last modified time | relevance | path

Searched refs:max_frame_rate (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavformat/
Ddashenc.c93 AVRational min_frame_rate, max_frame_rate; member
804 … AVMEDIA_TYPE_VIDEO && as->max_frame_rate.num && !as->ambiguous_frame_rate && av_cmp_q(as->min_fra… 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 … AVMEDIA_TYPE_VIDEO && as->max_frame_rate.num && !as->ambiguous_frame_rate && !av_cmp_q(as->min_fr… 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) < 0) in write_adaptation_set()
1680 if (av_cmp_q(as->max_frame_rate, avg_frame_rate) < 0) in dash_init()
1681 as->max_frame_rate = avg_frame_rate; in dash_init()
/third_party/ffmpeg/fftools/
Dffmpeg.h493 AVRational max_frame_rate; member
Dffmpeg_opt.c1804 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()
Dffmpeg.c2972 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()