/third_party/ffmpeg/libavfilter/ |
D | trim.c | 48 int64_t start_pts, end_pts; member 90 int64_t start_pts = av_rescale_q(s->start_time, AV_TIME_BASE_Q, tb); in config_input() local 91 if (s->start_pts == AV_NOPTS_VALUE || start_pts < s->start_pts) in config_input() 92 s->start_pts = start_pts; in config_input() 116 …" passed", OFFSET(start_pts), AV_OPT_TYPE… 136 if (s->start_frame >= 0 || s->start_pts != AV_NOPTS_VALUE) { in trim_filter_frame() 140 if (s->start_pts != AV_NOPTS_VALUE && frame->pts != AV_NOPTS_VALUE && in trim_filter_frame() 141 frame->pts >= s->start_pts) in trim_filter_frame() 244 if (s->start_sample < 0 && s->start_pts == AV_NOPTS_VALUE) { in atrim_filter_frame() 256 if (s->start_pts != AV_NOPTS_VALUE && pts != AV_NOPTS_VALUE && in atrim_filter_frame() [all …]
|
D | vf_decimate.c | 48 int64_t start_pts; ///< base for output timestamps member 223 if (frame->pts != AV_NOPTS_VALUE && dm->start_pts == AV_NOPTS_VALUE) in filter_frame() 224 dm->start_pts = frame->pts; in filter_frame() 233 (dm->start_pts == AV_NOPTS_VALUE ? 0 : dm->start_pts); in filter_frame() 329 dm->start_pts = AV_NOPTS_VALUE; in decimate_init()
|
D | vf_framerate.c | 167 work_pts = s->start_pts + av_rescale_q(s->n, av_inv_q(s->dest_frame_rate), s->dest_time_base); in process_work_frame() 208 s->start_pts = AV_NOPTS_VALUE; in init() 356 s->start_pts = s->pts1; in activate() 361 if (s->start_pts == AV_NOPTS_VALUE) in activate() 362 s->start_pts = s->pts1; in activate()
|
D | framerate.h | 65 int64_t start_pts; ///< pts of the first output frame member
|
D | f_loop.c | 41 int64_t start_pts; member 334 out->pts += s->duration - s->start_pts; in push_frame() 365 s->start_pts = frame->pts; in filter_frame()
|
D | af_atempo.c | 107 int64_t start_pts; member 192 atempo->start_pts = AV_NOPTS_VALUE; in yae_clear() 1061 atempo->dst_buffer->pts = atempo->start_pts + in push_samples() 1090 if (atempo->start_pts == AV_NOPTS_VALUE) in filter_frame() 1091 atempo->start_pts = av_rescale_q(src_buffer->pts, in filter_frame()
|
/third_party/ffmpeg/libavcodec/ |
D | setts_bsf.c | 76 int64_t start_pts; member 118 s->start_pts = AV_NOPTS_VALUE; in setts_init() 138 if (s->start_pts == AV_NOPTS_VALUE) in setts_filter() 139 s->start_pts = pkt->pts; in setts_filter() 153 s->var_values[VAR_STARTPTS] = s->start_pts; in setts_filter()
|
/third_party/ffmpeg/tests/ref/fate/ |
D | mxf-probe-dnxhd | 12 start_pts=0 48 start_pts=0 84 start_pts=0 137 start_pts=0
|
D | mxf-probe-dv25 | 29 start_pts=0 69 start_pts=0 109 start_pts=0
|
D | mxf-probe-applehdr10 | 29 start_pts=0 87 start_pts=0 127 start_pts=0
|
D | mxf-probe-d10 | 29 start_pts=0 72 start_pts=0
|
D | ffprobe_json | 536 "start_pts": 0, 580 "start_pts": 0, 624 "start_pts": 0,
|
D | hapqa-extract-nosnappy-to-hapq-mov | 43 start_pts=0
|
D | hapqa-extract-nosnappy-to-hapalphaonly-mov | 43 start_pts=0
|
D | ffprobe_default | 553 start_pts=0 606 start_pts=0 660 start_pts=0
|
D | ffprobe_ini | 555 start_pts=0 612 start_pts=0 670 start_pts=0
|
D | ffprobe_compact | 29 …_sample=16|id=N/A|r_frame_rate=0/0|avg_frame_rate=0/0|time_base=1/44100|start_pts=0|start_time=0.0… 30 …n|refs=1|id=N/A|r_frame_rate=25/1|avg_frame_rate=25/1|time_base=1/51200|start_pts=0|start_time=0.0… 31 …n|refs=1|id=N/A|r_frame_rate=25/1|avg_frame_rate=25/1|time_base=1/51200|start_pts=0|start_time=0.0…
|
D | gaplessenc-pcm-to-mov-aac | 3 start_pts=0
|
D | gaplessinfo-itunes1 | 3 start_pts=2112
|
D | gaplessinfo-itunes2 | 3 start_pts=2112
|
D | gaplessenc-itunes-to-ipod-aac | 3 start_pts=0
|
D | ffprobe_flat | 496 streams.stream.0.start_pts=0 547 streams.stream.1.start_pts=0 599 streams.stream.2.start_pts=0
|
/third_party/ffmpeg/libavformat/ |
D | dashenc.c | 114 int64_t first_pts, start_pts, max_pts; member 1967 duration = av_rescale_q(os->max_pts - os->start_pts, st->time_base, AV_TIME_BASE_Q); in dash_flush() 1970 if (!os->muxer_overhead && os->max_pts > os->start_pts) in dash_flush() 1979 …add_segment(os, os->filename, os->start_pts, os->max_pts - os->start_pts, os->pos, range_length, i… in dash_flush() 2132 elapsed_duration = pkt->pts - os->start_pts; in dash_write_packet() 2153 c->last_duration = av_rescale_q(pkt->pts - os->start_pts, in dash_write_packet() 2184 os->start_pts = os->max_pts; in dash_write_packet() 2186 os->start_pts = pkt->pts; in dash_write_packet() 2241 os->segment_index, os->bit_rate, os->start_pts); in dash_write_packet() 2284 c->last_duration = av_rescale_q(os->max_pts - os->start_pts, in dash_write_trailer()
|
D | segment.c | 49 int64_t start_pts; member 922 seg->cur_entry.start_pts = av_rescale_q(pkt->pts, st->time_base, AV_TIME_BASE_Q); in seg_write_packet() 944 av_ts2timestr(seg->cur_entry.start_pts, &AV_TIME_BASE_Q), in seg_write_packet() 949 …offset = av_rescale_q(seg->initial_offset - (seg->reset_timestamps ? seg->cur_entry.start_pts : 0), in seg_write_packet()
|
D | hlsenc.c | 139 int64_t start_pts; member 2467 if (vs->start_pts == AV_NOPTS_VALUE) { 2468 vs->start_pts = pkt->pts; 2472 …if (vs->start_pts_from_audio && st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && vs->start_pts > … 2473 vs->start_pts = pkt->pts; 2504 if (vs->packets_written && can_split && av_compare_ts(pkt->pts - vs->start_pts, st->time_base, 2965 vs->start_pts = AV_NOPTS_VALUE;
|