Searched refs:pkt1 (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavdevice/ |
D | decklink_dec.cpp | 486 PacketListEntry *pkt, *pkt1; in avpacket_queue_flush() local 489 for (pkt = q->pkt_list.head; pkt != NULL; pkt = pkt1) { in avpacket_queue_flush() 490 pkt1 = pkt->next; in avpacket_queue_flush() 519 PacketListEntry *pkt1; in avpacket_queue_put() local 533 pkt1 = (PacketListEntry *)av_malloc(sizeof(*pkt1)); in avpacket_queue_put() 534 if (!pkt1) { in avpacket_queue_put() 538 av_packet_move_ref(&pkt1->pkt, pkt); in avpacket_queue_put() 539 pkt1->next = NULL; 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() [all …]
|
/third_party/ffmpeg/fftools/ |
D | ffplay.c | 418 MyAVPacketList pkt1; in packet_queue_put_private() local 425 pkt1.pkt = pkt; in packet_queue_put_private() 426 pkt1.serial = q->serial; in packet_queue_put_private() 428 ret = av_fifo_write(q->pkt_list, &pkt1, 1); in packet_queue_put_private() 432 q->size += pkt1.pkt->size + sizeof(pkt1); in packet_queue_put_private() 433 q->duration += pkt1.pkt->duration; in packet_queue_put_private() 441 AVPacket *pkt1; in packet_queue_put() local 444 pkt1 = av_packet_alloc(); in packet_queue_put() 445 if (!pkt1) { in packet_queue_put() 449 av_packet_move_ref(pkt1, pkt); in packet_queue_put() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | mpc.c | 192 AVPacket pkt1, *pkt = &pkt1; in mpc_read_seek() local
|
D | demux.c | 556 const AVPacket *pkt1; in ff_read_packet() local 644 pkt1 = &si->raw_packet_buffer.tail->pkt; in ff_read_packet() 645 si->raw_packet_buffer_size += pkt1->size; in ff_read_packet() 647 if ((err = probe_codec(s, st, pkt1)) < 0) in ff_read_packet() 2418 AVPacket *pkt1 = si->pkt; in avformat_find_stream_info() local 2609 ret = read_frame_internal(ic, pkt1); in avformat_find_stream_info() 2621 pkt1, NULL, 0); in avformat_find_stream_info() 2627 pkt = pkt1; in avformat_find_stream_info() 2708 av_packet_unref(pkt1); in avformat_find_stream_info() 2748 av_packet_unref(pkt1); in avformat_find_stream_info() [all …]
|
D | asfdec_f.c | 1439 AVPacket pkt1, *pkt = &pkt1; in asf_read_pts() local
|