Searched refs:this_pktl (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dmux.c663 AVPacketList **next_point, *this_pktl; local
668 this_pktl = av_mallocz(sizeof(AVPacketList));
669 if (!this_pktl)
671 this_pktl->pkt = *pkt;
685 if ((ret = av_dup_packet(&this_pktl->pkt)) < 0) {
686 av_free(this_pktl);
704 this_pktl->pkt.flags |= CHUNK_START;
715 if (chunked && !(this_pktl->pkt.flags & CHUNK_START))
731 s->packet_buffer_end = this_pktl;
734 this_pktl
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dutils.c3164 AVPacketList **next_point, *this_pktl; local
3166 this_pktl = av_mallocz(sizeof(AVPacketList));
3167 this_pktl->pkt= *pkt;
3169 av_dup_packet(&this_pktl->pkt); // duplicate the packet if it uses non-alloced memory
3188 s->packet_buffer_end= this_pktl;
3191 this_pktl->next= *next_point;
3194 *next_point= this_pktl;

Completed in 82 milliseconds