Searched refs:dts (Results 76 - 100 of 181) sorted by relevance

12345678

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dhls.c707 AVDictionary **metadata, int64_t *dts,
722 *dts = ts;
1479 pls->pkt.dts = pls->id3_mpegts_timestamp +
1490 pls->pkt.dts = AV_NOPTS_VALUE;
1547 pls->pkt.dts != AV_NOPTS_VALUE)
1548 c->first_timestamp = av_rescale_q(pls->pkt.dts,
1558 if (pls->pkt.dts == AV_NOPTS_VALUE) {
1564 ts_diff = av_rescale_rnd(pls->pkt.dts, AV_TIME_BASE,
1577 /* Check if this stream has the packet with the lowest dts */
1584 int64_t dts local
706 parse_id3(AVFormatContext *s, AVIOContext *pb, AVDictionary **metadata, int64_t *dts, ID3v2ExtraMetaAPIC **apic, ID3v2ExtraMeta **extra_meta) argument
[all...]
H A Dmpegts.c223 int64_t pts, dts; member in struct:PESContext
803 pes->dts = AV_NOPTS_VALUE;
831 pkt->dts = pes->dts;
854 int64_t dts = AV_NOPTS_VALUE, cts = AV_NOPTS_VALUE; local
894 dts = get_ts64(&gb, sl->timestamp_len);
903 if (dts != AV_NOPTS_VALUE)
904 pes->dts = dts;
1047 pes->dts
[all...]
H A Dsubtitles.c54 sub->pts = sub->dts = 0;
106 pkt->dts = pkt->pts;
H A Dnsvdec.c602 pkt->dts = nst->frame_offset;
647 pkt->dts = (((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset-1);
648 pkt->dts *= (int64_t)1000 * nsv->framerate.den;
649 pkt->dts += (int64_t)nsv->avsync * nsv->framerate.num;
650 av_dlog(s, "NSV AUDIO: sync:%d, dts:%"PRId64, nsv->avsync, pkt->dts);
H A Davidec.c1070 ts = av_rescale_q(ast->sub_pkt.dts, st->time_base, AV_TIME_BASE_Q);
1396 pkt->dts = ast->frame_offset;
1397 // pkt->dts += ast->start;
1399 pkt->dts /= ast->sample_size;
1401 "dts:%"PRId64" offset:%"PRId64" %d/%d smpl_siz:%d "
1403 pkt->dts,
1459 int64_t dts= av_rescale_q(pkt->dts, st->time_base, AV_TIME_BASE_Q); local
1461 if (avi->dts_max - dts > 2*AV_TIME_BASE) {
1464 }else if (avi->dts_max < dts)
1580 int64_t dts; local
1593 int64_t dts; local
[all...]
H A Dflvenc.c65 int64_t delay; ///< first dts delay (needed for AVC & Speex)
532 flv->delay = -pkt->dts;
534 if (pkt->dts < -flv->delay) {
540 ts = pkt->dts + flv->delay; // add delay to force positive dts
592 avio_wb24(pb, pkt->pts - pkt->dts);
H A Dmd5enc.c124 avio_printf(s->pb, "#stream#, dts, pts, duration, size, hash\n");
136 pkt->stream_index, pkt->dts, pkt->pts, pkt->duration, pkt->size);
H A Dseek-test.c126 ts_str(dts_buf, pkt.dts, st->time_base);
128 printf("ret:%-10s st:%2d flags:%d dts:%s pts:%s pos:%7" PRId64 " size:%6d", ret_str(ret), pkt.stream_index, pkt.flags, dts_buf, ts_buf, pkt.pos, pkt.size);
H A Davienc.c584 av_dlog(s, "dts:%s packet_count:%d stream_index:%d\n", av_ts2str(pkt->dts), avist->packet_count, stream_index);
585 while (enc->block_align == 0 && pkt->dts != AV_NOPTS_VALUE &&
586 pkt->dts > avist->packet_count && enc->codec_id != AV_CODEC_ID_XSUB && avist->packet_count) {
589 if (pkt->dts - avist->packet_count > 60000) {
590 av_log(s, AV_LOG_ERROR, "Too large number of skipped frames %"PRId64" > 60000\n", pkt->dts - avist->packet_count);
599 av_dlog(s, "dup dts:%s packet_count:%d\n", av_ts2str(pkt->dts), avist->packet_count);
H A Dsegment.c743 av_log(s, AV_LOG_DEBUG, "stream:%d start_pts_time:%s pts:%s pts_time:%s dts:%s dts_time:%s",
747 av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &st->time_base));
754 if (pkt->dts != AV_NOPTS_VALUE)
755 pkt->dts += offset;
757 av_log(s, AV_LOG_DEBUG, " -> pts:%s pts_time:%s dts:%s dts_time:%s\n",
759 av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &st->time_base));
H A Dmovenc.c635 next_dts = track->cluster[cluster_idx + 1].dts;
637 next_dts -= track->cluster[cluster_idx].dts;
1903 delay = av_rescale_rnd(track->cluster[0].dts + start_ct, MOV_TIMESCALE,
1930 av_assert0(av_rescale_rnd(track->cluster[0].dts, MOV_TIMESCALE, track->timescale, AV_ROUND_DOWN) <= 0);
1931 start_ct = -FFMIN(track->cluster[0].dts, 0); //FFMIN needed due to rounding
2835 track->cluster[0].dts);
3258 mov->tracks[i].cluster[0].dts;
3289 track->cluster[0].dts;
3354 int64_t duration = pkt->dts - trk->cluster[trk->entry - 1].dts;
3547 mov_write_subtitle_end_packet(AVFormatContext *s, int stream_index, int64_t dts) argument
[all...]
H A Dhdsenc.c534 st->first_dts = pkt->dts;
537 av_compare_ts(pkt->dts - st->first_dts, st->time_base,
541 if ((ret = hds_flush(s, os, 0, pkt->dts)) < 0)
548 os->frag_start_ts = pkt->dts;
549 os->last_ts = pkt->dts;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dlibx265.c255 pkt->dts = x265pic_out.dts;
H A Dlibxavs.c153 pkt->dts = 2*x4->pts_buffer[(x4->out_frame_count-1)%(avctx->max_b_frames+1)] -
165 pkt->dts = pkt->pts - (x4->pts_buffer[1] - x4->pts_buffer[0]);
167 pkt->dts = x4->pts_buffer[(x4->out_frame_count-1)%(avctx->max_b_frames+1)];
169 pkt->dts = pkt->pts;
H A Dmpeg4video_parser.c103 av_assert1(s1->dts == AV_NOPTS_VALUE);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dpmpdec.c146 pkt->dts = s->streams[0]->cur_dts++;
H A Drtpdec_mpeg4.c53 int dts; member in struct:PayloadContext::AUHeaders
141 /* XXX: Wrong if optionnal additional sections are present (cts, dts etc...) */
H A Dtta.c134 pkt->dts = st->index_entries[c->currentframe++].timestamp;
H A Dmpegts.c175 int64_t pts, dts; member in struct:PESContext
650 pkt->dts = pes->dts;
657 pes->dts = AV_NOPTS_VALUE;
682 int64_t dts = AV_NOPTS_VALUE, cts = AV_NOPTS_VALUE; local
721 dts = get_bits64(&gb, sl->timestamp_len);
730 if (dts != AV_NOPTS_VALUE)
731 pes->dts = dts;
864 pes->dts
[all...]
H A Dnsvdec.c629 pkt->dts = nst->frame_offset;
671 pkt->dts = (((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset-1);
672 pkt->dts *= (int64_t)1000 * nsv->framerate.den;
673 pkt->dts += (int64_t)nsv->avsync * nsv->framerate.num;
674 av_dlog(s, "NSV AUDIO: sync:%d, dts:%"PRId64, nsv->avsync, pkt->dts);
H A Dmov.c1686 av_dlog(c->fc, "dts shift %d\n", sc->dts_shift);
1704 /* adjust first dts according to edit list */
1711 /* more than 16 frames delay, dts are likely wrong
1771 av_dlog(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
1864 av_dlog(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", "
2192 int64_t dts; local
2241 dts = st->duration - sc->time_offset;
2260 av_add_index_entry(st, offset, dts, sample_size, distance,
2262 av_dlog(c->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
2264 offset, dts, sample_siz
2599 int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dpulse_audio_enc.c632 if (pkt->dts != AV_NOPTS_VALUE)
633 s->timestamp = pkt->dts;
685 pkt.dts = (*frame)->pkt_dts;
691 static void pulse_get_output_timestamp(AVFormatContext *h, int stream, int64_t *dts, int64_t *wall) argument
701 if (dts)
702 *dts = s->timestamp - (neg ? -latency : latency);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/
H A Dcmdutils.c848 int64_t dts)
852 if (dts != AV_NOPTS_VALUE) {
853 ctx->num_faulty_dts += dts <= ctx->last_dts;
854 ctx->last_dts = dts;
860 if ((ctx->num_faulty_pts<=ctx->num_faulty_dts || dts == AV_NOPTS_VALUE)
864 pts = dts;
847 guess_correct_pts(PtsCorrectionContext *ctx, int64_t reordered_pts, int64_t dts) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dprint-udp.c214 double ts, dts; local
276 dts = (double)(EXTRACT_32BITS(&rr->rr_dlsr)) / 65536.;
280 EXTRACT_32BITS(&rr->rr_dv), ts, dts);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/doc/examples/
H A Dmuxing.c71 printf("pts:%s pts_time:%s dts:%s dts_time:%s duration:%s duration_time:%s stream_index:%d\n",
73 av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, time_base),
490 pkt.pts = pkt.dts = frame->pts;

Completed in 386 milliseconds

12345678