Lines Matching defs:pkt
58 static int scc_write_packet(AVFormatContext *avf, AVPacket *pkt)
61 int64_t pts = pkt->pts;
75 for (i = 0; i < pkt->size - 2; i+=3) {
76 if (pkt->data[i] == 0xfc && ((pkt->data[i + 1] != 0x80 || pkt->data[i + 2] != 0x80)))
79 if (i >= pkt->size - 2)
86 for (i = 0; i < pkt->size; i+=3) {
87 if (i + 3 > pkt->size)
90 if (pkt->data[i] != 0xfc || (pkt->data[i + 1] == 0x80 && pkt->data[i + 2] == 0x80))
98 avio_printf(avf->pb, "%02x%02x", pkt->data[i + 1], pkt->data[i + 2]);