Searched refs:inc_tb (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dmathematics.c189 int64_t av_add_stable(AVRational ts_tb, int64_t ts, AVRational inc_tb, int64_t inc) argument
194 inc_tb = av_mul_q(inc_tb, (AVRational) {inc, 1});
196 m = inc_tb.num * (int64_t)ts_tb.den;
197 d = inc_tb.den * (int64_t)ts_tb.num;
205 int64_t old = av_rescale_q(ts, ts_tb, inc_tb);
206 int64_t old_ts = av_rescale_q(old, inc_tb, ts_tb);
207 return av_rescale_q(old + 1, inc_tb, ts_tb) + (ts - old_ts);
H A Dmathematics.h155 * @param inc_tb inc timebase
157 int64_t av_add_stable(AVRational ts_tb, int64_t ts, AVRational inc_tb, int64_t inc);

Completed in 79 milliseconds