Searched refs:out_pts (Results 1 - 7 of 7) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A D | vf_separatefields.c | 105 static int flush_frame(AVFilterLink *outlink, int64_t pts, int64_t *out_pts) in flush_frame() argument 112 *out_pts = s->second->pts += pts; in flush_frame() 139 int64_t out_pts = pts; in activate() local 141 ret = flush_frame(outlink, pts, &out_pts); in activate() 142 ff_outlink_set_status(outlink, status, out_pts); in activate()
|
H A D | vf_dnn_processing.c | 243 static int flush_frame(AVFilterLink *outlink, int64_t pts, int64_t *out_pts) in flush_frame() argument 265 if (out_pts) in flush_frame() 266 *out_pts = out_frame->pts + pts; in flush_frame() 327 int64_t out_pts = pts; in activate() local 328 ret = flush_frame(outlink, pts, &out_pts); in activate() 329 ff_outlink_set_status(outlink, status, out_pts); in activate()
|
H A D | vf_dnn_classify.c | 209 static int dnn_classify_flush_frame(AVFilterLink *outlink, int64_t pts, int64_t *out_pts) in dnn_classify_flush_frame() argument 228 if (out_pts) in dnn_classify_flush_frame() 229 *out_pts = in_frame->pts + pts; in dnn_classify_flush_frame() 281 int64_t out_pts = pts; in dnn_classify_activate() local 282 ret = dnn_classify_flush_frame(outlink, pts, &out_pts); in dnn_classify_activate() 283 ff_outlink_set_status(outlink, status, out_pts); in dnn_classify_activate()
|
H A D | vf_dnn_detect.c | 352 static int dnn_detect_flush_frame(AVFilterLink *outlink, int64_t pts, int64_t *out_pts) in dnn_detect_flush_frame() argument 371 if (out_pts) in dnn_detect_flush_frame() 372 *out_pts = in_frame->pts + pts; in dnn_detect_flush_frame() 424 int64_t out_pts = pts; in dnn_detect_activate() local 425 ret = dnn_detect_flush_frame(outlink, pts, &out_pts); in dnn_detect_activate() 426 ff_outlink_set_status(outlink, status, out_pts); in dnn_detect_activate()
|
H A D | f_drawgraph.c | 171 int64_t in_pts, out_pts; in filter_frame() local 329 out_pts = av_rescale_q(in_pts, inlink->time_base, outlink->time_base); in filter_frame() 331 if (out_pts == s->prev_pts) in filter_frame() 338 clone->pts = s->prev_pts = out_pts; in filter_frame()
|
H A D | vf_minterpolate.c | 184 int64_t out_pts; member 1166 mi_ctx->out_pts = av_rescale_q(avf_in->pts, inlink->time_base, outlink->time_base); in filter_frame() 1184 if (av_compare_ts(mi_ctx->out_pts, outlink->time_base, mi_ctx->frames[2].avf->pts, inlink->time_base) > 0) in filter_frame() 1191 avf_out->pts = mi_ctx->out_pts++; in filter_frame()
|
/third_party/ffmpeg/libavcodec/ |
H A D | audio_frame_queue.c | 78 int64_t out_pts = AV_NOPTS_VALUE; in ff_af_queue_remove() local 84 out_pts = afq->frames->pts; in ff_af_queue_remove() 89 *pts = ff_samples_to_time_base(afq->avctx, out_pts); in ff_af_queue_remove()
|
Completed in 6 milliseconds