Lines Matching defs:pkt
50 static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt)
52 uint32_t crc = av_adler32_update(0, pkt->data, pkt->size);
56 pkt->stream_index, pkt->dts, pkt->pts, pkt->duration, pkt->size, crc);
57 if (pkt->flags != AV_PKT_FLAG_KEY)
58 av_strlcatf(buf, sizeof(buf), ", F=0x%0X", pkt->flags);
59 if (pkt->side_data_elems) {
60 av_strlcatf(buf, sizeof(buf), ", S=%d", pkt->side_data_elems);
62 for (int i = 0; i < pkt->side_data_elems; i++) {
64 pkt->side_data[i].size);