TS_PACKET_SIZE 617 libavformat/mpegts.c score = analyze(buf, buf_size, TS_PACKET_SIZE, 0); TS_PACKET_SIZE 629 libavformat/mpegts.c return TS_PACKET_SIZE; TS_PACKET_SIZE 2769 libavformat/mpegts.c p_end = packet + TS_PACKET_SIZE; TS_PACKET_SIZE 2774 libavformat/mpegts.c av_assert0(pos >= TS_PACKET_SIZE); TS_PACKET_SIZE 2775 libavformat/mpegts.c ts->pos47_full = pos - TS_PACKET_SIZE; TS_PACKET_SIZE 2889 libavformat/mpegts.c len = ffio_read_indirect(pb, buf, TS_PACKET_SIZE, data); TS_PACKET_SIZE 2890 libavformat/mpegts.c if (len != TS_PACKET_SIZE) TS_PACKET_SIZE 2910 libavformat/mpegts.c int skip = raw_packet_size - TS_PACKET_SIZE; TS_PACKET_SIZE 2918 libavformat/mpegts.c uint8_t packet[TS_PACKET_SIZE + AV_INPUT_BUFFER_PADDING_SIZE]; TS_PACKET_SIZE 2945 libavformat/mpegts.c memset(packet + TS_PACKET_SIZE, 0, AV_INPUT_BUFFER_PADDING_SIZE); TS_PACKET_SIZE 2983 libavformat/mpegts.c int score = analyze(p->buf + TS_PACKET_SIZE *i, TS_PACKET_SIZE *left, TS_PACKET_SIZE , 1); TS_PACKET_SIZE 3061 libavformat/mpegts.c ts->raw_packet_size = TS_PACKET_SIZE; TS_PACKET_SIZE 3089 libavformat/mpegts.c uint8_t packet[TS_PACKET_SIZE]; TS_PACKET_SIZE 3138 libavformat/mpegts.c s->bit_rate = TS_PACKET_SIZE * 8 * 27000000LL / ts->pcr_incr; TS_PACKET_SIZE 3160 libavformat/mpegts.c if ((ret = av_new_packet(pkt, TS_PACKET_SIZE)) < 0) TS_PACKET_SIZE 3254 libavformat/mpegts.c uint8_t buf[TS_PACKET_SIZE]; TS_PACKET_SIZE 3264 libavformat/mpegts.c if (avio_read(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE) TS_PACKET_SIZE 3267 libavformat/mpegts.c if (mpegts_resync(s, TS_PACKET_SIZE, buf) < 0) TS_PACKET_SIZE 3328 libavformat/mpegts.c ts->raw_packet_size = TS_PACKET_SIZE; TS_PACKET_SIZE 3350 libavformat/mpegts.c if (len < TS_PACKET_SIZE) TS_PACKET_SIZE 3356 libavformat/mpegts.c handle_packet(ts, buf, len1 - len + TS_PACKET_SIZE); TS_PACKET_SIZE 3357 libavformat/mpegts.c buf += TS_PACKET_SIZE; TS_PACKET_SIZE 3358 libavformat/mpegts.c len -= TS_PACKET_SIZE; TS_PACKET_SIZE 129 libavformat/mpegtsenc.c unsigned char packet[TS_PACKET_SIZE]; TS_PACKET_SIZE 163 libavformat/mpegtsenc.c len1 = TS_PACKET_SIZE - (q - packet); TS_PACKET_SIZE 169 libavformat/mpegtsenc.c left = TS_PACKET_SIZE - (q - packet); TS_PACKET_SIZE 821 libavformat/mpegtsenc.c avio_write(s->pb, packet, TS_PACKET_SIZE); TS_PACKET_SIZE 1170 libavformat/mpegtsenc.c uint8_t buf[TS_PACKET_SIZE]; TS_PACKET_SIZE 1177 libavformat/mpegtsenc.c memset(q, 0x0FF, TS_PACKET_SIZE - (q - buf)); TS_PACKET_SIZE 1187 libavformat/mpegtsenc.c uint8_t buf[TS_PACKET_SIZE]; TS_PACKET_SIZE 1195 libavformat/mpegtsenc.c *q++ = TS_PACKET_SIZE - 5; /* Adaptation Field Length */ TS_PACKET_SIZE 1206 libavformat/mpegtsenc.c memset(q, 0xFF, TS_PACKET_SIZE - (q - buf)); TS_PACKET_SIZE 1267 libavformat/mpegtsenc.c uint8_t buf[TS_PACKET_SIZE]; TS_PACKET_SIZE 1514 libavformat/mpegtsenc.c len = TS_PACKET_SIZE - header_len; TS_PACKET_SIZE 1517 libavformat/mpegtsenc.c stuffing_len = TS_PACKET_SIZE - header_len - len; TS_PACKET_SIZE 1541 libavformat/mpegtsenc.c memcpy(buf + TS_PACKET_SIZE - len, payload, len - 1); TS_PACKET_SIZE 1542 libavformat/mpegtsenc.c buf[TS_PACKET_SIZE - 1] = 0xff; /* end_of_PES_data_field_marker: an 8-bit field with fixed contents 0xff for DVB subtitle */ TS_PACKET_SIZE 1544 libavformat/mpegtsenc.c memcpy(buf + TS_PACKET_SIZE - len, payload, len); TS_PACKET_SIZE 1901 libavformat/mpegtsenc.c int packets = (avio_tell(s->pb) / (TS_PACKET_SIZE + 4)) % 32; TS_PACKET_SIZE 175 libavformat/rtpenc.c n = s->max_payload_size / TS_PACKET_SIZE; TS_PACKET_SIZE 178 libavformat/rtpenc.c s->max_payload_size = n * TS_PACKET_SIZE; TS_PACKET_SIZE 465 libavformat/rtpenc.c while (size >= TS_PACKET_SIZE) {