• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/

Lines Matching refs:cur_dts

896     if(st->first_dts != AV_NOPTS_VALUE || dts == AV_NOPTS_VALUE || st->cur_dts == AV_NOPTS_VALUE)
899 st->first_dts= dts - st->cur_dts;
900 st->cur_dts= dts;
922 int64_t cur_dts= 0;
925 cur_dts= st->first_dts;
930 cur_dts -= pkt->duration;
934 st->first_dts = cur_dts;
935 }else if(st->cur_dts)
943 pktl->pkt.dts= cur_dts;
945 pktl->pkt.pts= cur_dts;
946 cur_dts += pkt->duration;
952 st->cur_dts= cur_dts;
1038 // av_log(NULL, AV_LOG_DEBUG, "IN delayed:%d pts:%"PRId64", dts:%"PRId64" cur_dts:%"PRId64" st:%d pc:%p\n", presentation_delayed, pkt->pts, pkt->dts, st->cur_dts, pkt->stream_index, pc);
1049 pkt->dts = st->cur_dts;
1056 st->cur_dts = pkt->dts + st->last_IP_duration;
1063 int64_t old_diff= FFABS(st->cur_dts - pkt->duration - pkt->pts);
1064 int64_t new_diff= FFABS(st->cur_dts - pkt->pts);
1067 // av_log(NULL, AV_LOG_DEBUG, "id:%d old:%"PRId64" new:%"PRId64" dur:%d cur:%"PRId64" size:%d\n", pkt->stream_index, old_diff, new_diff, pkt->duration, st->cur_dts, pkt->size);
1076 pkt->pts = st->cur_dts;
1079 st->cur_dts = pkt->pts + pkt->duration;
1092 if(pkt->dts > st->cur_dts)
1093 st->cur_dts = pkt->dts;
1096 // av_log(NULL, AV_LOG_ERROR, "OUTdelayed:%d/%d pts:%"PRId64", dts:%"PRId64" cur_dts:%"PRId64"\n", presentation_delayed, delay, pkt->pts, pkt->dts, st->cur_dts);
1383 st->cur_dts = AV_NOPTS_VALUE; /* we set the current DTS to an unspecified origin */
1410 st->cur_dts = av_rescale(timestamp,
2055 st->cur_dts= st->first_dts;
2589 st->cur_dts -= delta;
2805 st->cur_dts = 0;
3076 av_dlog(s, "compute_pkt_fields2: pts:%"PRId64" dts:%"PRId64" cur_dts:%"PRId64" b:%d size:%d st:%d\n",
3077 pkt->pts, pkt->dts, st->cur_dts, delay, pkt->size, pkt->stream_index);
3096 // pkt->pts= st->cur_dts;
3111 if(st->cur_dts && st->cur_dts != AV_NOPTS_VALUE && st->cur_dts >= pkt->dts){
3114 st->index, st->cur_dts, pkt->dts);
3123 st->cur_dts= pkt->dts;