Searched refs:start_pts (Results 1 - 11 of 11) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A 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() 115 { "start_pts", "Timestamp of the first frame that should be " \ 116 " passed", OFFSET(start_pts), AV_OPT_TYPE_INT64, { .i64 = AV_NOPTS_VALUE }, INT64_MIN, INT64_MAX, FLAGS }, \ 136 if (s->start_frame >= 0 || s->start_pts ! in trim_filter_frame() [all...] |
H A D | vf_framerate.c | 168 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() 209 s->start_pts = AV_NOPTS_VALUE; in init() 350 s->start_pts = s->pts1; in activate() 355 if (s->start_pts == AV_NOPTS_VALUE) in activate() 356 s->start_pts = s->pts1; in activate()
|
H A 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()
|
H A D | framerate.h | 65 int64_t start_pts; ///< pts of the first output frame member
|
H A D | f_loop.c | 42 int64_t start_pts; member 333 out->pts += s->duration - s->start_pts; in push_frame() 364 s->start_pts = frame->pts; in filter_frame()
|
H A D | af_atempo.c | 108 int64_t start_pts; member 195 atempo->start_pts = AV_NOPTS_VALUE; in yae_clear() 1034 atempo->dst_buffer->pts = atempo->start_pts + in push_samples() 1063 if (atempo->start_pts == AV_NOPTS_VALUE) in filter_frame() 1064 atempo->start_pts = av_rescale_q(src_buffer->pts, in filter_frame()
|
/third_party/ffmpeg/libavformat/ |
H A D | dashenc.c | 117 int64_t first_pts, start_pts, max_pts; member 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() 2147 elapsed_duration = pkt->pts - os->start_pts; in dash_write_packet() 2168 c->last_duration = av_rescale_q(pkt->pts - os->start_pts, in dash_write_packet() 2199 os->start_pts = os->max_pts; in dash_write_packet() 2201 os->start_pts = pkt->pts; in dash_write_packet() 2256 os->segment_index, os->bit_rate, os->start_pts); in dash_write_packet() [all...] |
H A D | segment.c | 50 int64_t start_pts; member 915 seg->cur_entry.start_pts = av_rescale_q(pkt->pts, st->time_base, AV_TIME_BASE_Q); in seg_write_packet() 937 av_ts2timestr(seg->cur_entry.start_pts, &AV_TIME_BASE_Q), in seg_write_packet() 942 offset = av_rescale_q(seg->initial_offset - (seg->reset_timestamps ? seg->cur_entry.start_pts : 0), in seg_write_packet()
|
H A D | hlsenc.c | 139 int64_t start_pts; member 2456 if (vs->start_pts == AV_NOPTS_VALUE) { in hls_write_packet() 2457 vs->start_pts = pkt->pts; in hls_write_packet() 2461 if (vs->start_pts_from_audio && st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && vs->start_pts > pkt->pts) { in hls_write_packet() 2462 vs->start_pts = pkt->pts; in hls_write_packet() 2494 if (vs->packets_written && can_split && av_compare_ts(pkt->pts - vs->start_pts, st->time_base, in hls_write_packet() 2957 vs->start_pts = AV_NOPTS_VALUE; in hls_init()
|
/third_party/ffmpeg/tests/ |
H A D | fate-run.sh | 116 run ffprobe${PROGSUF}${EXECSUF} -bitexact -select_streams a -show_entries format=start_time,duration:stream=index,start_pts,duration_ts "$filename" "$@"
|
/third_party/ffmpeg/fftools/ |
H A D | ffplay.c | 196 int64_t start_pts; member 572 d->start_pts = AV_NOPTS_VALUE; in decoder_init() 634 d->next_pts = d->start_pts; in decoder_decode_frame() 2672 is->auddec.start_pts = is->audio_st->start_time; in stream_component_open()
|
Completed in 21 milliseconds