Searched refs:av_compare_mod (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/libavutil/ |
H A D | mathematics.h | 185 * av_compare_mod(0x11, 0x02, 0x10) < 0 // since 0x11 % 0x10 (0x1) < 0x02 % 0x10 (0x2) 186 * av_compare_mod(0x11, 0x02, 0x20) > 0 // since 0x11 % 0x20 (0x11) > 0x02 % 0x20 (0x02) 196 int64_t av_compare_mod(uint64_t a, uint64_t b, uint64_t mod);
|
H A D | mathematics.c | 160 int64_t av_compare_mod(uint64_t a, uint64_t b, uint64_t mod) in av_compare_mod() function
|
/third_party/ffmpeg/libavformat/ |
H A D | demux.c | 1482 av_compare_mod(next_pkt->dts, pktl->pkt.dts, 2ULL << (wrap_bits - 1)) < 0) { in av_read_frame() 1483 if (av_compare_mod(pktl->pkt.pts, pktl->pkt.dts, 2ULL << (wrap_bits - 1))) { in av_read_frame()
|
H A D | hls.c | 2278 return av_compare_mod(scaled_ts_a, scaled_ts_b, 1LL << 33); in compare_ts_with_wrapdetect()
|
Completed in 9 milliseconds