Home
last modified time | relevance | path

Searched refs:dst_den (Results 1 - 3 of 3) sorted by relevance

/third_party/ffmpeg/libavformat/
H A Dimfdec.c160 int dst_den; in imf_time_to_ts() local
165 if ((av_reduce(&dst_num, &dst_den, r.num, r.den, INT64_MAX) != 1)) in imf_time_to_ts()
168 if (dst_den != 1) in imf_time_to_ts()
910 int dst_den; in coherent_ts() local
913 ret = av_reduce(&dst_num, &dst_den, ts * in_tb.num * out_tb.den, in coherent_ts()
915 if (!ret || dst_den != 1) in coherent_ts()
/third_party/ffmpeg/libavutil/
H A Drational.h114 * @param[out] dst_den Destination denominator
117 * @param[in] max Maximum allowed values for `dst_num` & `dst_den`
120 int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max);
H A Drational.c35 int av_reduce(int *dst_num, int *dst_den, in av_reduce() argument
75 *dst_den = a1.den; in av_reduce()

Completed in 3 milliseconds