Lines Matching defs:pktl
642 for (const PacketListEntry *pktl = si->packet_buffer.head;
643 pktl; pktl = pktl->next) {
644 AVRational cmp_tb = s->streams[pktl->pkt.stream_index]->time_base;
645 int64_t cmp_ts = use_pts ? pktl->pkt.pts : pktl->pkt.dts;
1001 PacketListEntry *pktl = si->packet_buffer.head;
1002 AVPacket *const top_pkt = &pktl->pkt;
1011 si->packet_buffer.head = pktl->next;
1015 if (sti->last_in_packet_buffer == pktl)
1018 av_packet_unref(&pktl->pkt);
1019 av_freep(&pktl);
1025 PacketListEntry *pktl = si->packet_buffer.head;
1026 AVStream *const st = s->streams[pktl->pkt.stream_index];
1029 if (sti->last_in_packet_buffer == pktl)
1064 PacketListEntry *pktl = si->packet_buffer.head;
1065 while (pktl) {
1066 if (pktl->pkt.stream_index == stream) {
1067 return &pktl->pkt;
1069 pktl = pktl->next;