Home
last modified time | relevance | path

Searched refs:pkt_list (Results 1 - 4 of 4) sorted by relevance

/third_party/ffmpeg/libavdevice/
H A Ddecklink_dec.cpp489 for (pkt = q->pkt_list.head; pkt != NULL; pkt = pkt1) { in avpacket_queue_flush()
494 q->pkt_list.head = NULL; in avpacket_queue_flush()
495 q->pkt_list.tail = NULL; in avpacket_queue_flush()
543 if (!q->pkt_list.tail) { in avpacket_queue_put()
544 q->pkt_list.head = pkt1; in avpacket_queue_put()
546 q->pkt_list.tail->next = pkt1; in avpacket_queue_put()
549 q->pkt_list.tail = pkt1; in avpacket_queue_put()
566 PacketListEntry *pkt1 = q->pkt_list.head; in avpacket_queue_get()
568 q->pkt_list.head = pkt1->next; in avpacket_queue_get()
569 if (!q->pkt_list in avpacket_queue_get()
[all...]
H A Ddecklink_common.h81 PacketList pkt_list; member
/third_party/libwebsockets/lib/core-net/
H A Ddummy-callback.c99 struct lws_dll2 pkt_list; member
178 lws_dll2_add_tail(&pkt->pkt_list, &wsi->parent->ws->proxy_owner); in lws_callback_ws_proxy()
222 lws_dll2_add_tail(&pkt->pkt_list, &wsi->child_list->ws->proxy_owner); in lws_callback_ws_proxy()
/third_party/ffmpeg/fftools/
H A Dffplay.c120 AVFifo *pkt_list; member
428 ret = av_fifo_write(q->pkt_list, &pkt1, 1); in packet_queue_put_private()
471 q->pkt_list = av_fifo_alloc2(1, sizeof(MyAVPacketList), AV_FIFO_FLAG_AUTO_GROW); in packet_queue_init()
472 if (!q->pkt_list) in packet_queue_init()
493 while (av_fifo_read(q->pkt_list, &pkt1, 1) >= 0) in packet_queue_flush()
505 av_fifo_freep2(&q->pkt_list); in packet_queue_destroy()
543 if (av_fifo_read(q->pkt_list, &pkt1, 1) >= 0) { in packet_queue_get()

Completed in 9 milliseconds