Home
last modified time | relevance | path

Searched refs:pktl (Results 1 - 7 of 7) sorted by relevance

/third_party/ffmpeg/libavdevice/
H A Dvfwcap.c48 PacketListEntry *pktl; member
206 for(ppktl = &ctx->pktl ; *ppktl ; ppktl = &(*ppktl)->next); in videostream_cb()
223 PacketListEntry *pktl; in vfw_read_close() local
235 pktl = ctx->pktl; in vfw_read_close()
236 while (pktl) { in vfw_read_close()
237 PacketListEntry *next = pktl->next; in vfw_read_close()
238 av_packet_unref(&pktl->pkt); in vfw_read_close()
239 av_free(pktl); in vfw_read_close()
240 pktl in vfw_read_close()
443 PacketListEntry *pktl = NULL; vfw_read_packet() local
[all...]
H A Ddshow.c241 PacketListEntry *pktl; in dshow_read_close() local
299 pktl = ctx->pktl; in dshow_read_close()
300 while (pktl) { in dshow_read_close()
301 PacketListEntry *next = pktl->next; in dshow_read_close()
302 av_packet_unref(&pktl->pkt); in dshow_read_close()
303 av_free(pktl); in dshow_read_close()
304 pktl = next; in dshow_read_close()
367 for(ppktl = &ctx->pktl ; *ppktl ; ppktl = &(*ppktl)->next); in callback()
1860 PacketListEntry *pktl in dshow_read_packet() local
[all...]
H A Ddshow_capture.h325 PacketListEntry *pktl; member
/third_party/ffmpeg/libavcodec/
H A Davpacket.c541 PacketListEntry *pktl = av_malloc(sizeof(*pktl)); in avpriv_packet_list_put() local
544 if (!pktl) in avpriv_packet_list_put()
548 get_packet_defaults(&pktl->pkt); in avpriv_packet_list_put()
549 ret = copy(&pktl->pkt, pkt); in avpriv_packet_list_put()
551 av_free(pktl); in avpriv_packet_list_put()
557 av_free(pktl); in avpriv_packet_list_put()
560 av_packet_move_ref(&pktl->pkt, pkt); in avpriv_packet_list_put()
563 pktl->next = NULL; in avpriv_packet_list_put()
566 packet_buffer->tail->next = pktl; in avpriv_packet_list_put()
578 PacketListEntry *pktl = pkt_buffer->head; avpriv_packet_list_get() local
594 PacketListEntry *pktl = tmp; avpriv_packet_list_free() local
[all...]
/third_party/ffmpeg/libavformat/
H A Ddemux.c556 PacketListEntry *pktl = si->raw_packet_buffer.head; in ff_read_packet() local
561 if (pktl) { in ff_read_packet()
562 AVStream *const st = s->streams[pktl->pkt.stream_index]; in ff_read_packet()
582 if (!pktl || err == AVERROR(EAGAIN)) in ff_read_packet()
638 if (!pktl && sti->request_probe <= 0) in ff_read_packet()
734 PacketListEntry *pktl) in get_next_pkt()
737 if (pktl->next) in get_next_pkt()
738 return pktl->next; in get_next_pkt()
739 if (pktl == si->packet_buffer.tail) in get_next_pkt()
827 PacketListEntry *pktl in update_initial_timestamps() local
733 get_next_pkt(AVFormatContext *s, AVStream *st, PacketListEntry *pktl) get_next_pkt() argument
879 PacketListEntry *pktl = si->packet_buffer.head ? si->packet_buffer.head : si->parse_queue.head; update_initial_durations() local
1469 PacketListEntry *pktl = si->packet_buffer.head; av_read_frame() local
[all...]
H A Dmux.c642 for (const PacketListEntry *pktl = si->packet_buffer.head; in handle_avoid_negative_ts()
643 pktl; pktl = pktl->next) { in handle_avoid_negative_ts()
644 AVRational cmp_tb = s->streams[pktl->pkt.stream_index]->time_base; in handle_avoid_negative_ts()
645 int64_t cmp_ts = use_pts ? pktl->pkt.pts : pktl->pkt.dts; in handle_avoid_negative_ts()
1001 PacketListEntry *pktl = si->packet_buffer.head; in ff_interleave_packet_per_dts() local
1002 AVPacket *const top_pkt = &pktl->pkt; in ff_interleave_packet_per_dts()
1011 si->packet_buffer.head = pktl in ff_interleave_packet_per_dts()
1025 PacketListEntry *pktl = si->packet_buffer.head; ff_interleave_packet_per_dts() local
1064 PacketListEntry *pktl = si->packet_buffer.head; ff_interleaved_peek() local
[all...]
H A Dmxfenc.c3131 PacketListEntry *pktl = si->packet_buffer.head; in mxf_interleave_get_packet() local
3135 while (pktl) { in mxf_interleave_get_packet()
3136 if (!stream_count || pktl->pkt.stream_index == 0) in mxf_interleave_get_packet()
3139 if (ffstream(s->streams[pktl->pkt.stream_index])->last_in_packet_buffer != pktl) in mxf_interleave_get_packet()
3140 ffstream(s->streams[pktl->pkt.stream_index])->last_in_packet_buffer = pktl; in mxf_interleave_get_packet()
3141 last = pktl; in mxf_interleave_get_packet()
3142 pktl = pktl in mxf_interleave_get_packet()
[all...]

Completed in 14 milliseconds