Lines Matching refs:pts
55 if (f->pts != AV_NOPTS_VALUE) {
56 new->pts = av_rescale_q(f->pts,
59 new->pts -= afq->remaining_delay;
60 if(afq->frame_count && new[-1].pts >= new->pts)
63 new->pts = AV_NOPTS_VALUE;
75 void ff_af_queue_remove(AudioFrameQueue *afq, int nb_samples, int64_t *pts,
83 if (afq->frames->pts != AV_NOPTS_VALUE)
84 out_pts = afq->frames->pts;
88 if (pts)
89 *pts = ff_samples_to_time_base(afq->avctx, out_pts);
96 if(afq->frames[i].pts != AV_NOPTS_VALUE)
97 afq->frames[i].pts += n;
107 if(afq->frames && afq->frames[0].pts != AV_NOPTS_VALUE)
108 afq->frames[0].pts += nb_samples;