Searched refs:pts_wrap_bits (Results 1 – 12 of 12) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | demux.c | 52 if (sti->pts_wrap_behavior != AV_PTS_WRAP_IGNORE && st->pts_wrap_bits < 64 && in wrap_timestamp() 56 return timestamp + (1ULL << st->pts_wrap_bits); in wrap_timestamp() 59 return timestamp - (1ULL << st->pts_wrap_bits); in wrap_timestamp() 479 …if (sti->pts_wrap_reference != AV_NOPTS_VALUE || st->pts_wrap_bits >= 63 || ref == AV_NOPTS_VALUE … in update_wrap_reference() 481 ref &= (1LL << st->pts_wrap_bits)-1; in update_wrap_reference() 486 pts_wrap_behavior = (ref < (1LL << st->pts_wrap_bits) - (1LL << st->pts_wrap_bits-3)) || in update_wrap_reference() 487 (ref < (1LL << st->pts_wrap_bits) - av_rescale(60, st->time_base.den, st->time_base.num)) ? in update_wrap_reference() 979 st->pts_wrap_bits < 63 && pkt->dts > INT64_MIN + (1LL << st->pts_wrap_bits) && in compute_pkt_fields() 980 pkt->dts - (1LL << (st->pts_wrap_bits - 1)) > pkt->pts) { in compute_pkt_fields() 981 if (is_relative(sti->cur_dts) || pkt->dts - (1LL<<(st->pts_wrap_bits - 1)) > sti->cur_dts) { in compute_pkt_fields() [all …]
|
D | avformat.c | 697 void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, in avpriv_set_pts_info() argument 720 st->pts_wrap_bits = pts_wrap_bits; in avpriv_set_pts_info()
|
D | internal.h | 577 void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits,
|
D | webm_chunk.c | 123 avpriv_set_pts_info(ost, st->pts_wrap_bits, st->time_base.num, in webm_chunk_init()
|
D | avformat.h | 1119 int pts_wrap_bits; member
|
D | imfdec.c | 589 first_resource_stream->pts_wrap_bits, in set_context_streams_from_tracks()
|
D | segment.c | 802 …avpriv_set_pts_info(outer_st, inner_st->pts_wrap_bits, inner_st->time_base.num, inner_st->time_bas… in seg_init()
|
D | hls.c | 1836 avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den); in set_stream_info_from_input_stream()
|
D | dashdec.c | 1951 avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den); in open_demux_for_component()
|
D | hlsenc.c | 2331 …avpriv_set_pts_info(outer_st, inner_st->pts_wrap_bits, inner_st->time_base.num, inner_st->time_bas… in hls_write_header()
|
/third_party/ffmpeg/fftools/ |
D | ffmpeg.c | 4014 … if(!ist->wrap_correction_done && is->start_time != AV_NOPTS_VALUE && ist->st->pts_wrap_bits < 64){ in process_input() 4036 stime2= stime + (1ULL<<ist->st->pts_wrap_bits); in process_input() 4039 …e2 > stime && pkt->dts != AV_NOPTS_VALUE && pkt->dts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) { in process_input() 4040 pkt->dts -= 1ULL<<ist->st->pts_wrap_bits; in process_input() 4043 …e2 > stime && pkt->pts != AV_NOPTS_VALUE && pkt->pts > stime + (1LL<<(ist->st->pts_wrap_bits-1))) { in process_input() 4044 pkt->pts -= 1ULL<<ist->st->pts_wrap_bits; in process_input() 4110 (is->iformat->flags & AVFMT_TS_DISCONT) && ist->st->pts_wrap_bits < 60) { in process_input() 4111 int64_t wrap_dts = av_rescale_q_rnd(pkt->dts + (1LL<<ist->st->pts_wrap_bits), in process_input()
|
/third_party/ffmpeg/doc/ |
D | APIchanges | 227 Add pts_wrap_bits to AVStream
|