Searched refs:max_pts (Results 1 - 9 of 9) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A D | vsrc_mptestsrc.c | 56 int64_t pts, max_pts, duration; member 265 test->max_pts = test->duration >= 0 ? in init() 271 test->duration < 0 ? -1 : test->max_pts * av_q2d(av_inv_q(test->frame_rate))); in init() 305 if (test->max_pts >= 0 && test->pts > test->max_pts) in request_frame()
|
/third_party/ffmpeg/tools/ |
H A D | ismindex.c | 236 int64_t max_pts = 0; in read_trun_duration() local 262 max_pts = FFMAX(max_pts, pts + sample_duration); in read_trun_duration() 267 return max_pts - first_pts; in read_trun_duration()
|
/third_party/ffmpeg/libavformat/ |
H A D | nut.h | 111 int64_t max_pts; member
|
H A D | dashenc.c | 117 int64_t first_pts, start_pts, max_pts; member 1712 os->max_pts = AV_NOPTS_VALUE; in dash_init() 1979 duration = av_rescale_q(os->max_pts - os->start_pts, st->time_base, AV_TIME_BASE_Q); in dash_flush() 1982 if (!os->muxer_overhead && os->max_pts > os->start_pts) in dash_flush() 1991 add_segment(os, os->filename, os->start_pts, os->max_pts - os->start_pts, os->pos, range_length, index_length, next_exp_index); in dash_flush() 2198 if (os->max_pts != AV_NOPTS_VALUE) in dash_write_packet() 2199 os->start_pts = os->max_pts; in dash_write_packet() 2203 if (os->max_pts == AV_NOPTS_VALUE) in dash_write_packet() 2204 os->max_pts = pkt->pts + pkt->duration; in dash_write_packet() 2206 os->max_pts in dash_write_packet() [all...] |
H A D | nutdec.c | 690 uint64_t max_pts; in find_and_decode_index() local 710 max_pts = ffio_read_varlen(bc); in find_and_decode_index() 711 s->duration = av_rescale_q(max_pts / nut->time_base_count, in find_and_decode_index() 712 nut->time_base[max_pts % nut->time_base_count], in find_and_decode_index()
|
H A D | nutenc.c | 621 put_tt(nut, nut->max_pts_tb, bc, nut->max_pts); in write_index() 1189 if (!nut->max_pts_tb || av_compare_ts(nut->max_pts, *nut->max_pts_tb, pkt->pts, *nus->time_base) < 0) { in nut_write_packet() 1190 nut->max_pts = pkt->pts; in nut_write_packet()
|
/third_party/ffmpeg/fftools/ |
H A D | ffmpeg.h | 336 int64_t max_pts; /* pts with the higher value in a current stream */ member
|
H A D | ffmpeg.c | 3874 /* the total duration of the stream, max_pts - min_pts is in seek_to_start() 3876 if (ist->max_pts > ist->min_pts && ist->max_pts - (uint64_t)ist->min_pts < INT64_MAX - duration) in seek_to_start() 3877 duration += ist->max_pts - ist->min_pts; in seek_to_start() 4100 ist->max_pts = FFMAX(pkt->pts, ist->max_pts); in process_input()
|
H A D | ffmpeg_opt.c | 890 ist->max_pts = INT64_MIN; in add_input_streams()
|
Completed in 28 milliseconds