Lines Matching refs:size
102 "Monospace,11," /* Font{name,size} */
112 "Monospace,16," /* Font{name,size} */
243 (ch).size > VBI_DOUBLE_SIZE || (ch).opacity == VBI_TRANSPARENT_SPACE)
584 static int slice_to_vbi_lines(TeletextContext *ctx, const uint8_t *buf, int size)
587 while (size >= 2 && lines < MAX_SLICES) {
590 if (data_unit_length + 2 > size)
632 size -= data_unit_length + 2;
635 if (size)
636 av_log(ctx, AV_LOG_WARNING, "%d bytes remained after slicing data\n", size);
663 if (pkt->size) {
665 const int full_pes_size = pkt->size + 45; /* PES header is 45 bytes */
667 // We allow unreasonably big packets, even if the standard only allows a max size of 1472
671 ctx->handler_ret = pkt->size;
674 if ((lines = slice_to_vbi_lines(ctx, pkt->data + 1, pkt->size - 1)) < 0)
677 ctx, pkt->size, lines, (double)pkt->pts/90000.0);