Lines Matching defs:pkt
92 static int tta_write_packet(AVFormatContext *s, AVPacket *pkt)
97 ret = avpriv_packet_list_put(&tta->queue, pkt, NULL, 0);
101 pkt = &tta->queue.tail->pkt;
103 avio_wl32(tta->seek_table, pkt->size);
104 tta->nb_samples += pkt->duration;
106 if (tta->frame_size != pkt->duration) {
126 AVPacket *const pkt = ffformatcontext(s)->pkt;
129 avpriv_packet_list_get(&tta->queue, pkt);
130 avio_write(s->pb, pkt->data, pkt->size);
131 av_packet_unref(pkt);