Lines Matching defs:new
46 AudioFrame *new = av_fast_realloc(afq->frames, &afq->frame_alloc, sizeof(*afq->frames)*(afq->frame_count+1));
47 if(!new)
49 afq->frames = new;
50 new += afq->frame_count;
53 new->duration = f->nb_samples;
54 new->duration += afq->remaining_delay;
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;