Lines Matching defs:pkt
64 AVPacket *pkt, AVIOContext *output_ctx)
68 ret = avcodec_send_packet(decoder_ctx, pkt);
116 AVPacket *pkt = NULL;
203 pkt = av_packet_alloc();
204 if (!frame || !sw_frame || !pkt) {
211 ret = av_read_frame(input_ctx, pkt);
215 if (pkt->stream_index == video_st->index)
216 ret = decode_packet(decoder_ctx, frame, sw_frame, pkt, output_ctx);
218 av_packet_unref(pkt);
235 av_packet_free(&pkt);