Lines Matching defs:pkt
37 static int decode_packet(const AVPacket *pkt)
39 int ret = avcodec_send_packet(video_dec_ctx, pkt);
127 AVPacket *pkt = NULL;
162 pkt = av_packet_alloc();
163 if (!pkt) {
172 while (av_read_frame(fmt_ctx, pkt) >= 0) {
173 if (pkt->stream_index == video_stream_idx)
174 ret = decode_packet(pkt);
175 av_packet_unref(pkt);
187 av_packet_free(&pkt);