Lines Matching defs:pkt
71 static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame,
78 ret = avcodec_send_packet(dec_ctx, pkt);
116 AVPacket *pkt;
129 pkt = av_packet_alloc();
179 ret = av_parser_parse2(parser, c, &pkt->data, &pkt->size,
189 if (pkt->size)
190 decode(c, pkt, decoded_frame, outfile);
203 pkt->data = NULL;
204 pkt->size = 0;
205 decode(c, pkt, decoded_frame, outfile);
233 av_packet_free(&pkt);