Lines Matching refs:pgno
50 int pgno;
58 char *pgno;
304 int is_subtitle_page = ctx->subtitle_map[page->pgno & 0x7ff];
465 av_log(ctx, AV_LOG_DEBUG, "dropping empty page %3x\n", page->pgno);
516 int is_subtitle_page = ctx->subtitle_map[ev->ev.ttx_page.pgno & 0x7ff];
518 snprintf(pgno_str, sizeof pgno_str, "%03x", ev->ev.ttx_page.pgno);
522 if (strcmp(ctx->pgno, "*") && (strcmp(ctx->pgno, "subtitle") || !is_subtitle_page) && !strstr(ctx->pgno, pgno_str))
528 ev->ev.ttx_page.pgno,
546 cur_page->pgno = ev->ev.ttx_page.pgno;
613 int pgno = ((pmag & 7) << 8) + page;
615 ctx->subtitle_map[pgno] = (!(flags1 & 0x40) && flags1 & 0x80 && flags2 & 0x01);
617 if (ctx->subtitle_map[pgno] && pgno == ctx->last_pgno) {
625 ctx->last_pgno = pgno;
750 av_log(avctx, AV_LOG_VERBOSE, "page filter: %s\n", ctx->pgno);
791 {"txt_page", "page numbers to decode, subtitle for subtitles, * for all", OFFSET(pgno), AV_OPT_TYPE_STRING, {.str = "*"}, 0, 0, SD},