Lines Matching defs:pkt
40 AVPacket *pkt;
98 pkt = av_packet_alloc();
99 if (!pkt) {
116 result = av_read_frame(fmt_ctx, pkt);
117 if (result >= 0 && pkt->stream_index != video_stream) {
118 av_packet_unref(pkt);
125 if (pkt->pts == AV_NOPTS_VALUE)
126 pkt->pts = pkt->dts = i;
127 result = avcodec_send_packet(ctx, pkt);
129 av_packet_unref(pkt);
166 av_packet_free(&pkt);