Lines Matching refs:pktl_next
345 PacketListEntry **ppktl, *pktl_next;
354 pktl_next = av_mallocz(sizeof(*pktl_next));
355 if(!pktl_next)
358 if(av_new_packet(&pktl_next->pkt, buf_size) < 0) {
359 av_free(pktl_next);
363 pktl_next->pkt.stream_index = index;
364 pktl_next->pkt.pts = time;
365 memcpy(pktl_next->pkt.data, buf, buf_size);
368 *ppktl = pktl_next;