Searched refs:av_sat_add64 (Results 1 – 11 of 11) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | common.h | 136 #ifndef av_sat_add64 137 # 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 | 132 if (av_sat_add64(*size, pos) != (uint64_t)*size + pos) { in mpc8_get_chunk_header() 182 if (av_sat_add64(pos, c->header_pos) != pos + (uint64_t)c->header_pos) { in mpc8_parse_seektable()
|
D | sbgdec.c | 203 *rtime = av_sat_add64((hours * 3600LL + minutes * 60LL) * AV_TIME_BASE, ts); in str_to_time() 480 if (av_sat_add64(rel, dt) - dt != rel) in parse_timestamp() 545 if (av_sat_add64(p->current_time.t, rel_ts) != p->current_time.t + (uint64_t)rel_ts) in parse_time_sequence() 946 if (av_sat_add64(s->tseq[i].ts.t, delta) != s->tseq[i].ts.t + (uint64_t)delta) in expand_timestamps() 968 if (t0 + (uint64_t)tseq->ts.t != av_sat_add64(t0, tseq->ts.t)) in expand_tseq() 1493 end_ts = av_sat_add64(ts, avf->streams[0]->codecpar->frame_size); in sbg_read_packet()
|
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 | demux.c | 849 …st->start_time = av_sat_add64(st->start_time, av_rescale_q(sti->skip_samples, (AVRational){1, st->… in update_initial_timestamps() 861 …st->start_time = av_sat_add64(st->start_time, av_rescale_q(sti->skip_samples, (AVRational){1, st->… in update_initial_timestamps() 910 av_sat_add64(cur_dts, duration) == cur_dts + (uint64_t)duration in update_initial_durations() 1055 sti->cur_dts = av_sat_add64(pkt->dts, sti->last_IP_duration); in compute_pkt_fields()
|
D | flvdec.c | 1337 pts = av_sat_add64(dts, cts);
|
D | mov.c | 4679 int64_t end = av_sat_add64(avio_tell(pb), atom.size); in mov_read_custom() 5252 if (av_sat_add64(dts, sample_duration) != dts + (uint64_t)sample_duration) in mov_read_trun() 5325 int64_t offset = av_sat_add64(avio_tell(pb), atom.size), pts, timestamp; in mov_read_sidx() 5370 if (av_sat_add64(offset, offadd) != offset + (uint64_t)offadd) in mov_read_sidx() 5398 if (av_sat_add64(offset, size) != offset + (uint64_t)size || in mov_read_sidx() 5399 av_sat_add64(pts, duration) != pts + (uint64_t)duration in mov_read_sidx()
|
/third_party/ffmpeg/libavcodec/ |
D | h264_parser.c | 651 s->dts = av_sat_add64(p->reference_dts, av_rescale(s->dts_ref_dts_delta, num, den)); in h264_parse()
|
/third_party/ffmpeg/doc/ |
D | APIchanges | 451 Add av_sat_add64() and av_sat_sub64()
|