Lines Matching refs:pages
70 TeletextPage *pages;
541 if ((new_pages = av_realloc_array(ctx->pages, ctx->nb_pages + 1, sizeof(TeletextPage)))) {
543 ctx->pages = new_pages;
567 ctx->pages[ctx->nb_pages++] = *cur_page;
576 //TODO: If multiple packets contain more than one page, pages may got queued up, and this may happen...
577 av_log(ctx, AV_LOG_ERROR, "Buffered too many pages, dropping page %s.\n", pgno_str);
697 sub->pts = ctx->pages->pts;
699 if (ctx->pages->sub_rect->type != SUBTITLE_NONE) {
703 sub->rects[0] = ctx->pages->sub_rect;
712 subtitle_rect_free(&ctx->pages->sub_rect);
715 ctx->pages[i] = ctx->pages[i + 1];
769 subtitle_rect_free(&ctx->pages[--ctx->nb_pages].sub_rect);
770 av_freep(&ctx->pages);
801 {"txt_duration", "display duration of teletext pages in msecs", OFFSET(sub_duration), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 86400000, SD},