Searched refs:av_sat_add64 (Results 1 – 10 of 10) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | common.h | 163 #ifndef av_sat_add64 164 # define av_sat_add64 av_sat_add64_c macro
|
D | mathematics.c | 213 return av_sat_add64(av_rescale_q(old + 1, inc_tb, ts_tb), ts - old_ts); in av_add_stable()
|
/third_party/ffmpeg/libavformat/ |
D | mpc8.c | 131 if (av_sat_add64(*size, pos) != (uint64_t)*size + pos) { in mpc8_get_chunk_header() 181 if (av_sat_add64(pos, c->header_pos) != pos + (uint64_t)c->header_pos) { in mpc8_parse_seektable()
|
D | mpsubdec.c | 75 if (intval > 0) intval = av_sat_add64(intval, fracval); in parse_line()
|
D | mccdec.c | 144 ts = av_sat_add64(av_rescale(hh * 3600LL + mm * 60LL + ss, rate.num, rate.den), fs); in mcc_read_header()
|
D | sbgdec.c | 202 *rtime = av_sat_add64((hours * 3600LL + minutes * 60LL) * AV_TIME_BASE, ts); in str_to_time() 479 if (av_sat_add64(rel, dt) - dt != rel) in parse_timestamp() 544 if (av_sat_add64(p->current_time.t, rel_ts) != p->current_time.t + (uint64_t)rel_ts) in parse_time_sequence() 945 if (av_sat_add64(s->tseq[i].ts.t, delta) != s->tseq[i].ts.t + (uint64_t)delta) in expand_timestamps() 967 if (t0 + (uint64_t)tseq->ts.t != av_sat_add64(t0, tseq->ts.t)) in expand_tseq()
|
D | mov.c | 4424 int64_t end = av_sat_add64(avio_tell(pb), atom.size); in mov_read_custom() 4995 if (av_sat_add64(dts, sample_duration) != dts + (uint64_t)sample_duration) in mov_read_trun() 5066 int64_t offset = av_sat_add64(avio_tell(pb), atom.size), pts, timestamp; in mov_read_sidx() 5111 if (av_sat_add64(offset, offadd) != offset + (uint64_t)offadd) in mov_read_sidx() 5137 if (av_sat_add64(offset, size) != offset + (uint64_t)size || in mov_read_sidx() 5138 av_sat_add64(pts, duration) != pts + (uint64_t)duration in mov_read_sidx()
|
D | flvdec.c | 1256 pts = av_sat_add64(dts, cts); in flv_read_packet()
|
D | utils.c | 1152 …st->start_time = av_sat_add64(st->start_time, av_rescale_q(st->internal->skip_samples, (AVRational… in update_initial_timestamps() 1165 …st->start_time = av_sat_add64(st->start_time, av_rescale_q(st->internal->skip_samples, (AVRational… in update_initial_timestamps() 1212 av_sat_add64(cur_dts, duration) == cur_dts + (uint64_t)duration in update_initial_durations() 1356 st->cur_dts = av_sat_add64(pkt->dts, st->last_IP_duration); in compute_pkt_fields()
|
/third_party/ffmpeg/doc/ |
D | APIchanges | 172 Add av_sat_add64() and av_sat_sub64()
|