Searched refs:av_sat_add64 (Results 1 - 11 of 11) sorted by relevance
/third_party/ffmpeg/libavformat/ |
H A 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()
|
H A D | mpsubdec.c | 75 if (intval > 0) intval = av_sat_add64(intval, fracval); in parse_line()
|
H A 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()
|
H A D | mccdec.c | 144 ts = av_sat_add64(av_rescale(hh * 3600LL + mm * 60LL + ss, rate.num, rate.den), fs); in mcc_read_header()
|
H A D | demux.c | 858 st->start_time = av_sat_add64(st->start_time, av_rescale_q(sti->skip_samples, (AVRational){1, st->codecpar->sample_rate}, st->time_base)); in update_initial_timestamps() 870 st->start_time = av_sat_add64(st->start_time, av_rescale_q(sti->skip_samples, (AVRational){1, st->codecpar->sample_rate}, st->time_base)); in update_initial_timestamps() 919 av_sat_add64(cur_dts, duration) == cur_dts + (uint64_t)duration in update_initial_durations() 1070 sti->cur_dts = av_sat_add64(pkt->dts, sti->last_IP_duration); in compute_pkt_fields()
|
H A D | mov.c | 4815 int64_t end = av_sat_add64(avio_tell(pb), atom.size); 5388 if (av_sat_add64(dts, sample_duration) != dts + (uint64_t)sample_duration) 5461 int64_t offset = av_sat_add64(avio_tell(pb), atom.size), pts, timestamp; 5506 if (av_sat_add64(offset, offadd) != offset + (uint64_t)offadd) 5534 if (av_sat_add64(offset, size) != offset + (uint64_t)size || 5535 av_sat_add64(pts, duration) != pts + (uint64_t)duration
|
H A D | flvdec.c | 1337 pts = av_sat_add64(dts, cts);
|
H A D | mxfdec.c | 2361 if (av_sat_add64(start_position, mxf_tc->start_frame) != start_position + (uint64_t)mxf_tc->start_frame) in mxf_parse_physical_source_package()
|
/third_party/ffmpeg/libavutil/ |
H A D | common.h | 136 #ifndef av_sat_add64 137 # define av_sat_add64 av_sat_add64_c macro
|
H A 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/libavcodec/ |
H A 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()
|
Completed in 28 milliseconds