Searched refs:next_dts (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dffmpeg.c1758 /* increment next_dts to use for the case where the input stream does not
1762 ist->next_dts += ((int64_t)AV_TIME_BASE * decoded_frame->nb_samples) /
1812 ist->dts = ist->next_dts = ist->pts = ist->next_pts = av_rescale_q(decoded_frame->pts, avctx->time_base, AV_TIME_BASE_Q);
2059 if (ist->next_dts == AV_NOPTS_VALUE)
2060 ist->next_dts = ist->dts;
2075 ist->next_dts = ist->dts = av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
2086 ist->dts = ist->next_dts;
2112 ist->next_dts += duration;
2114 ist->next_dts = AV_NOPTS_VALUE;
2148 ist->dts = ist->next_dts;
2158 int64_t next_dts = av_rescale_q(ist->next_dts, time_base_q, av_inv_q(ist->framerate)); local
[all...]
H A Dffmpeg.h255 int64_t next_dts; member in struct:InputStream
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dmovenc.c627 int64_t next_dts; local
633 next_dts = track->track_duration + track->start_dts;
635 next_dts = track->cluster[cluster_idx + 1].dts;
637 next_dts -= track->cluster[cluster_idx].dts;
639 av_assert0(next_dts >= 0);
640 av_assert0(next_dts <= INT_MAX);
642 return next_dts;
H A Dmov.c3764 int64_t next_dts = (sc->current_sample < st->nb_index_entries) ? local
3766 pkt->duration = next_dts - pkt->dts;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dmov.c2683 int64_t next_dts = (sc->current_sample < st->nb_index_entries) ? local
2685 pkt->duration = next_dts - pkt->dts;

Completed in 122 milliseconds