Lines Matching refs:cur_page
541 TeletextPage *cur_page = new_pages + ctx->nb_pages; in handler() local
543 cur_page->sub_rect = av_mallocz(sizeof(*cur_page->sub_rect)); in handler()
544 cur_page->pts = ctx->pts; in handler()
545 cur_page->pgno = ev->ev.ttx_page.pgno; in handler()
546 cur_page->subno = ev->ev.ttx_page.subno; in handler()
547 if (cur_page->sub_rect) { in handler()
550 res = gen_sub_bitmap(ctx, cur_page->sub_rect, &page, chop_top); in handler()
553 res = gen_sub_text(ctx, cur_page->sub_rect, &page, chop_top); in handler()
556 res = gen_sub_ass(ctx, cur_page->sub_rect, &page, chop_top); in handler()
563 av_freep(&cur_page->sub_rect); in handler()
566 ctx->pages[ctx->nb_pages++] = *cur_page; in handler()