Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavutil/
H A Dmathematics.c168 int64_t av_rescale_delta(AVRational in_tb, int64_t in_ts, AVRational fs_tb, int duration, int64_t *last, AVRational out_tb){ in av_rescale_delta() argument
174 if (*last == AV_NOPTS_VALUE || !duration || in_tb.num*(int64_t)out_tb.den <= out_tb.num*(int64_t)in_tb.den) { in av_rescale_delta()
177 return av_rescale_q(in_ts, in_tb, out_tb); in av_rescale_delta()
188 return av_rescale_q(this, fs_tb, out_tb); in av_rescale_delta()
H A Dmathematics.h212 * (greater) than `in_tb` and `out_tb`
217 * @param[in] out_tb Output timebase
218 * @return Timestamp expressed in terms of `out_tb`
223 int64_t av_rescale_delta(AVRational in_tb, int64_t in_ts, AVRational fs_tb, int duration, int64_t *last, AVRational out_tb);
/third_party/ffmpeg/libavformat/
H A Dimfdec.c907 static int coherent_ts(int64_t ts, AVRational in_tb, AVRational out_tb) in coherent_ts() argument
913 ret = av_reduce(&dst_num, &dst_den, ts * in_tb.num * out_tb.den, in coherent_ts()
914 in_tb.den * out_tb.num, INT64_MAX); in coherent_ts()

Completed in 3 milliseconds