Lines Matching defs:pkt
94 static void encode(AVCodecContext *ctx, AVFrame *frame, AVPacket *pkt,
109 ret = avcodec_receive_packet(ctx, pkt);
117 fwrite(pkt->data, 1, pkt->size, output);
118 av_packet_unref(pkt);
128 AVPacket *pkt;
183 pkt = av_packet_alloc();
184 if (!pkt) {
227 encode(c, frame, pkt, f);
231 encode(c, NULL, pkt, f);
236 av_packet_free(&pkt);