Lines Matching defs:pkt
634 static int ogg_write_packet_internal(AVFormatContext *s, AVPacket *pkt)
636 AVStream *st = s->streams[pkt->stream_index];
642 int64_t pts = oggstream->vrev < 1 ? pkt->pts : pkt->pts + pkt->duration;
644 if (pkt->flags & AV_PKT_FLAG_KEY)
654 granule = pkt->pts + pkt->duration +
662 visible = (pkt->data[0] >> 4) & 1;
663 pts = pkt->pts + pkt->duration;
666 dist = (pkt->flags & AV_PKT_FLAG_KEY) ? 0 : ((oggstream->last_granule >> 3) & 0x07ffffff) + 1;
670 granule = pkt->pts + pkt->duration;
673 oggstream->page.start_granule = pkt->pts;
675 ret = ogg_buffer_data(s, st, pkt->data, pkt->size, granule, 0);
686 static int ogg_write_packet(AVFormatContext *s, AVPacket *pkt)
690 if (pkt)
691 return ogg_write_packet_internal(s, pkt);