Lines Matching refs:size
50 int encoded_buf_size, size = pkt->size;
57 * then adjust the cvid header to accommodate for the extra size */
61 if (encoded_buf_size != pkt->size && (pkt->size % encoded_buf_size) != 0) {
62 avio_write(pb, pkt->data, pkt->size);
64 /* In Sega Cinepak, the reported size in the Cinepak header is
65 * 8 bytes too short. However, the size in the STAB section of the header
67 AV_WB24(&pkt->data[1], pkt->size - 8 + 2);
68 size += 2;
72 avio_write(pb, &pkt->data[10], pkt->size - 10);
76 avio_write(pb, pkt->data, pkt->size);
83 film->index += size;
84 avio_wb32(pb, size);