Lines Matching refs:lines
586 int lines = 0;
587 while (size >= 2 && lines < MAX_SLICES) {
598 uint8_t *p = ctx->sliced[lines].data;
600 ctx->sliced[lines].id = VBI_SLICED_TELETEXT_B;
601 ctx->sliced[lines].line = (line_offset > 0 ? (line_offset + (field_parity ? 0 : 313)) : 0);
629 lines++;
637 return lines;
664 int lines;
674 if ((lines = slice_to_vbi_lines(ctx, pkt->data + 1, pkt->size - 1)) < 0)
675 return lines;
676 ff_dlog(avctx, "ctx=%p buf_size=%d lines=%u pkt_pts=%7.3f\n",
677 ctx, pkt->size, lines, (double)pkt->pts/90000.0);
678 if (lines > 0) {
679 vbi_decode(ctx->vbi, ctx->sliced, lines, 0.0);
680 ctx->lines_processed += lines;