Searched refs:ts_tb (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dseek.c118 AVRational ts_tb; // Time base of the stream or 1:1 for byte seeking local
172 ts_tb.num = 1;
173 ts_tb.den = 1;
177 ts_tb = st->time_base;
186 sp->first_ts_tb = ts_tb;
190 av_compare_ts(ts, ts_tb, sp->term_ts, sp->term_ts_tb) > 0) {
207 if (av_compare_ts(ts, ts_tb, timestamp, timebase) <= 0) {
220 if (av_compare_ts(ts, ts_tb, timestamp, timebase) >= 0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dseek.c116 AVRational ts_tb; // Time base of the stream or 1:1 for byte seeking local
170 ts_tb.num = 1;
171 ts_tb.den = 1;
175 ts_tb = st->time_base;
184 sp->first_ts_tb = ts_tb;
188 av_compare_ts(ts, ts_tb, sp->term_ts, sp->term_ts_tb) > 0) {
205 if (av_compare_ts(ts, ts_tb, timestamp, timebase) <= 0) {
218 if (av_compare_ts(ts, ts_tb, timestamp, timebase) >= 0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dmathematics.h153 * @param ts_tb Input timestamp timebase
157 int64_t av_add_stable(AVRational ts_tb, int64_t ts, AVRational inc_tb, int64_t inc);
H A Dmathematics.c189 int64_t av_add_stable(AVRational ts_tb, int64_t ts, AVRational inc_tb, int64_t inc) argument
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);

Completed in 73 milliseconds