Home
last modified time | relevance | path

Searched refs:pkt1 (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavdevice/
Ddecklink_dec.cpp486 PacketList *pkt, *pkt1; in avpacket_queue_flush() local
489 for (pkt = q->first_pkt; pkt != NULL; pkt = pkt1) { in avpacket_queue_flush()
490 pkt1 = pkt->next; in avpacket_queue_flush()
519 PacketList *pkt1; in avpacket_queue_put() local
533 pkt1 = (PacketList *)av_malloc(sizeof(PacketList)); 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->first_pkt = pkt1; in avpacket_queue_put()
546 q->last_pkt->next = pkt1; in avpacket_queue_put()
[all …]
/third_party/ffmpeg/fftools/
Dffplay.c428 MyAVPacketList pkt1; in packet_queue_put_private() local
433 if (av_fifo_space(q->pkt_list) < sizeof(pkt1)) { in packet_queue_put_private()
434 if (av_fifo_grow(q->pkt_list, sizeof(pkt1)) < 0) in packet_queue_put_private()
438 pkt1.pkt = pkt; in packet_queue_put_private()
439 pkt1.serial = q->serial; in packet_queue_put_private()
441 av_fifo_generic_write(q->pkt_list, &pkt1, sizeof(pkt1), NULL); in packet_queue_put_private()
443 q->size += pkt1.pkt->size + sizeof(pkt1); in packet_queue_put_private()
444 q->duration += pkt1.pkt->duration; in packet_queue_put_private()
452 AVPacket *pkt1; in packet_queue_put() local
455 pkt1 = av_packet_alloc(); in packet_queue_put()
[all …]
/third_party/ffmpeg/libavformat/
Dmpc.c191 AVPacket pkt1, *pkt = &pkt1; in mpc_read_seek() local
Dutils.c828 const AVPacket *pkt1; in ff_read_packet() local
916 pkt1 = &s->internal->raw_packet_buffer_end->pkt; in ff_read_packet()
917 s->internal->raw_packet_buffer_remaining_size -= pkt1->size; in ff_read_packet()
919 if ((err = probe_codec(s, st, pkt1)) < 0) in ff_read_packet()
3642 AVPacket *pkt1 = ic->internal->pkt; local
3849 ret = read_frame_internal(ic, pkt1);
3862 pkt1, NULL, 0);
3868 pkt = pkt1;
3948 av_packet_unref(pkt1);
3987 av_packet_unref(pkt1);
[all …]
Dasfdec_f.c1540 AVPacket pkt1, *pkt = &pkt1; in asf_read_pts() local