Lines Matching defs:pkt
1014 static int asf_write_packet(AVFormatContext *s, AVPacket *pkt)
1023 int flags = pkt->flags;
1027 par = s->streams[pkt->stream_index]->codecpar;
1028 stream = &asf->streams[pkt->stream_index];
1033 pts = (pkt->pts != AV_NOPTS_VALUE) ? pkt->pts : pkt->dts;
1041 asf->duration = FFMAX(asf->duration, pts + pkt->duration * 10000);
1044 put_frame(s, stream, s->streams[pkt->stream_index],
1045 pkt->dts, pkt->data, pkt->size, flags);