Home
last modified time | relevance | path

Searched refs:ts_a (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavutil/
Dmathematics.c147 int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b) in av_compare_ts() argument
151 if ((FFABS64U(ts_a)|a|FFABS64U(ts_b)|b) <= INT_MAX) in av_compare_ts()
152 return (ts_a*a > ts_b*b) - (ts_a*a < ts_b*b); in av_compare_ts()
153 if (av_rescale_rnd(ts_a, a, b, AV_ROUND_DOWN) < ts_b) in av_compare_ts()
155 if (av_rescale_rnd(ts_b, b, a, AV_ROUND_DOWN) < ts_a) in av_compare_ts()
Dmathematics.h176 int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b);
/third_party/ltp/testcases/realtime/lib/
Dlibrttest.c432 void ts_plus(struct timespec *ts_a, struct timespec *ts_b, in ts_plus() argument
435 if (ts_a == NULL || ts_b == NULL || ts_sum == NULL) { in ts_plus()
441 ts_sum->tv_sec = ts_a->tv_sec + ts_b->tv_sec; in ts_plus()
442 ts_sum->tv_nsec = ts_a->tv_nsec + ts_b->tv_nsec; in ts_plus()
/third_party/ltp/testcases/realtime/include/
Dlibrttest.h289 void ts_plus(struct timespec *ts_a, struct timespec *ts_b, struct timespec *ts_sum);
/third_party/ffmpeg/libavformat/
Dhls.c2142 static int compare_ts_with_wrapdetect(int64_t ts_a, struct playlist *pls_a, in compare_ts_with_wrapdetect() argument
2145 int64_t scaled_ts_a = av_rescale_q(ts_a, get_timebase(pls_a), MPEG_TIME_BASE_Q); in compare_ts_with_wrapdetect()