Lines Matching defs:pkt
74 AVPacket *pkt;
136 pkt = av_packet_alloc();
137 if (!pkt) {
164 result = av_read_frame(fmt_ctx, pkt);
165 if (result >= 0 && pkt->stream_index != video_stream) {
166 av_packet_unref(pkt);
170 // pkt will be empty on read error/EOF
171 result = avcodec_send_packet(ctx, pkt);
173 av_packet_unref(pkt);
213 av_packet_free(&pkt);