Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * Teletext decoding for ffmpeg
  3.  * Copyright (c) 2005-2010, 2012 Wolfram Gloger
  4.  * Copyright (c) 2013 Marton Balint
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19.  */
  20.  
  21. #include "avcodec.h"
  22. #include "libavcodec/ass.h"
  23. #include "libavutil/opt.h"
  24. #include "libavutil/bprint.h"
  25. #include "libavutil/internal.h"
  26. #include "libavutil/intreadwrite.h"
  27. #include "libavutil/log.h"
  28.  
  29. #include <libzvbi.h>
  30.  
  31. #define TEXT_MAXSZ    (25 * (56 + 1) * 4 + 2)
  32. #define VBI_NB_COLORS 40
  33. #define RGBA(r,g,b,a) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
  34. #define VBI_R(rgba)   (((rgba) >> 0) & 0xFF)
  35. #define VBI_G(rgba)   (((rgba) >> 8) & 0xFF)
  36. #define VBI_B(rgba)   (((rgba) >> 16) & 0xFF)
  37. #define VBI_A(rgba)   (((rgba) >> 24) & 0xFF)
  38. #define MAX_BUFFERED_PAGES 25
  39. #define BITMAP_CHAR_WIDTH  12
  40. #define BITMAP_CHAR_HEIGHT 10
  41. #define MAX_SLICES 64
  42.  
  43. typedef struct TeletextPage
  44. {
  45.     AVSubtitleRect *sub_rect;
  46.     int pgno;
  47.     int subno;
  48.     int64_t pts;
  49. } TeletextPage;
  50.  
  51. typedef struct TeletextContext
  52. {
  53.     AVClass        *class;
  54.     char           *pgno;
  55.     int             x_offset;
  56.     int             y_offset;
  57.     int             format_id; /* 0 = bitmap, 1 = text/ass */
  58.     int             chop_top;
  59.     int             sub_duration; /* in msec */
  60.     int             transparent_bg;
  61.     int             chop_spaces;
  62.  
  63.     int             lines_processed;
  64.     TeletextPage    *pages;
  65.     int             nb_pages;
  66.     int64_t         pts;
  67.     int             handler_ret;
  68.  
  69.     vbi_decoder *   vbi;
  70. #ifdef DEBUG
  71.     vbi_export *    ex;
  72. #endif
  73.     vbi_sliced      sliced[MAX_SLICES];
  74. } TeletextContext;
  75.  
  76. static int chop_spaces_utf8(const unsigned char* t, int len)
  77. {
  78.     t += len;
  79.     while (len > 0) {
  80.         if (*--t != ' ' || (len-1 > 0 && *(t-1) & 0x80))
  81.             break;
  82.         --len;
  83.     }
  84.     return len;
  85. }
  86.  
  87. static void subtitle_rect_free(AVSubtitleRect **sub_rect)
  88. {
  89.     av_freep(&(*sub_rect)->pict.data[0]);
  90.     av_freep(&(*sub_rect)->pict.data[1]);
  91.     av_freep(&(*sub_rect)->ass);
  92.     av_freep(sub_rect);
  93. }
  94.  
  95. static int create_ass_text(TeletextContext *ctx, const char *text, char **ass)
  96. {
  97.     int ret;
  98.     AVBPrint buf, buf2;
  99.     const int ts_start    = av_rescale_q(ctx->pts,          AV_TIME_BASE_Q,        (AVRational){1, 100});
  100.     const int ts_duration = av_rescale_q(ctx->sub_duration, (AVRational){1, 1000}, (AVRational){1, 100});
  101.  
  102.     /* First we escape the plain text into buf. */
  103.     av_bprint_init(&buf, 0, AV_BPRINT_SIZE_UNLIMITED);
  104.     ff_ass_bprint_text_event(&buf, text, strlen(text), "", 0);
  105.     av_bprintf(&buf, "\r\n");
  106.  
  107.     if (!av_bprint_is_complete(&buf)) {
  108.         av_bprint_finalize(&buf, NULL);
  109.         return AVERROR(ENOMEM);
  110.     }
  111.  
  112.     /* Then we create the ass dialog line in buf2 from the escaped text in buf. */
  113.     av_bprint_init(&buf2, 0, AV_BPRINT_SIZE_UNLIMITED);
  114.     ff_ass_bprint_dialog(&buf2, buf.str, ts_start, ts_duration, 0);
  115.     av_bprint_finalize(&buf, NULL);
  116.  
  117.     if (!av_bprint_is_complete(&buf2)) {
  118.         av_bprint_finalize(&buf2, NULL);
  119.         return AVERROR(ENOMEM);
  120.     }
  121.  
  122.     if ((ret = av_bprint_finalize(&buf2, ass)) < 0)
  123.         return ret;
  124.  
  125.     return 0;
  126. }
  127.  
  128. /* Draw a page as text */
  129. static int gen_sub_text(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
  130. {
  131.     const char *in;
  132.     AVBPrint buf;
  133.     char *vbi_text = av_malloc(TEXT_MAXSZ);
  134.     int sz;
  135.  
  136.     if (!vbi_text)
  137.         return AVERROR(ENOMEM);
  138.  
  139.     sz = vbi_print_page_region(page, vbi_text, TEXT_MAXSZ-1, "UTF-8",
  140.                                    /*table mode*/ TRUE, FALSE,
  141.                                    0,             chop_top,
  142.                                    page->columns, page->rows-chop_top);
  143.     if (sz <= 0) {
  144.         av_log(ctx, AV_LOG_ERROR, "vbi_print error\n");
  145.         av_free(vbi_text);
  146.         return AVERROR_EXTERNAL;
  147.     }
  148.     vbi_text[sz] = '\0';
  149.     in  = vbi_text;
  150.     av_bprint_init(&buf, 0, TEXT_MAXSZ);
  151.  
  152.     if (ctx->chop_spaces) {
  153.         for (;;) {
  154.             int nl, sz;
  155.  
  156.             // skip leading spaces and newlines
  157.             in += strspn(in, " \n");
  158.             // compute end of row
  159.             for (nl = 0; in[nl]; ++nl)
  160.                 if (in[nl] == '\n' && (nl==0 || !(in[nl-1] & 0x80)))
  161.                     break;
  162.             if (!in[nl])
  163.                 break;
  164.             // skip trailing spaces
  165.             sz = chop_spaces_utf8(in, nl);
  166.             av_bprint_append_data(&buf, in, sz);
  167.             av_bprintf(&buf, "\n");
  168.             in += nl;
  169.         }
  170.     } else {
  171.         av_bprintf(&buf, "%s\n", vbi_text);
  172.     }
  173.     av_free(vbi_text);
  174.  
  175.     if (!av_bprint_is_complete(&buf)) {
  176.         av_bprint_finalize(&buf, NULL);
  177.         return AVERROR(ENOMEM);
  178.     }
  179.  
  180.     if (buf.len) {
  181.         int ret;
  182.         sub_rect->type = SUBTITLE_ASS;
  183.         if ((ret = create_ass_text(ctx, buf.str, &sub_rect->ass)) < 0) {
  184.             av_bprint_finalize(&buf, NULL);
  185.             return ret;
  186.         }
  187.         av_log(ctx, AV_LOG_DEBUG, "subtext:%s:txetbus\n", sub_rect->ass);
  188.     } else {
  189.         sub_rect->type = SUBTITLE_NONE;
  190.     }
  191.     av_bprint_finalize(&buf, NULL);
  192.     return 0;
  193. }
  194.  
  195. static void fix_transparency(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page,
  196.                              int chop_top, uint8_t transparent_color, int resx, int resy)
  197. {
  198.     int iy;
  199.  
  200.     // Hack for transparency, inspired by VLC code...
  201.     for (iy = 0; iy < resy; iy++) {
  202.         uint8_t *pixel = sub_rect->pict.data[0] + iy * sub_rect->pict.linesize[0];
  203.         vbi_char *vc = page->text + (iy / BITMAP_CHAR_HEIGHT + chop_top) * page->columns;
  204.         vbi_char *vcnext = vc + page->columns;
  205.         for (; vc < vcnext; vc++) {
  206.             uint8_t *pixelnext = pixel + BITMAP_CHAR_WIDTH;
  207.             switch (vc->opacity) {
  208.                 case VBI_TRANSPARENT_SPACE:
  209.                     memset(pixel, transparent_color, BITMAP_CHAR_WIDTH);
  210.                     break;
  211.                 case VBI_OPAQUE:
  212.                 case VBI_SEMI_TRANSPARENT:
  213.                     if (!ctx->transparent_bg)
  214.                         break;
  215.                 case VBI_TRANSPARENT_FULL:
  216.                     for(; pixel < pixelnext; pixel++)
  217.                         if (*pixel == vc->background)
  218.                             *pixel = transparent_color;
  219.                     break;
  220.             }
  221.             pixel = pixelnext;
  222.         }
  223.     }
  224. }
  225.  
  226. /* Draw a page as bitmap */
  227. static int gen_sub_bitmap(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
  228. {
  229.     int resx = page->columns * BITMAP_CHAR_WIDTH;
  230.     int resy = (page->rows - chop_top) * BITMAP_CHAR_HEIGHT;
  231.     uint8_t ci, cmax = 0;
  232.     int ret;
  233.     vbi_char *vc = page->text + (chop_top * page->columns);
  234.     vbi_char *vcend = page->text + (page->rows * page->columns);
  235.  
  236.     for (; vc < vcend; vc++) {
  237.         if (vc->opacity != VBI_TRANSPARENT_SPACE) {
  238.             cmax = VBI_NB_COLORS;
  239.             break;
  240.         }
  241.     }
  242.  
  243.     if (cmax == 0) {
  244.         av_log(ctx, AV_LOG_DEBUG, "dropping empty page %3x\n", page->pgno);
  245.         sub_rect->type = SUBTITLE_NONE;
  246.         return 0;
  247.     }
  248.  
  249.     if ((ret = avpicture_alloc(&sub_rect->pict, AV_PIX_FMT_PAL8, resx, resy)) < 0)
  250.         return ret;
  251.     // Yes, we want to allocate the palette on our own because AVSubtitle works this way
  252.     sub_rect->pict.data[1] = NULL;
  253.  
  254.     vbi_draw_vt_page_region(page, VBI_PIXFMT_PAL8,
  255.                             sub_rect->pict.data[0], sub_rect->pict.linesize[0],
  256.                             0, chop_top, page->columns, page->rows - chop_top,
  257.                             /*reveal*/ 1, /*flash*/ 1);
  258.  
  259.     fix_transparency(ctx, sub_rect, page, chop_top, cmax, resx, resy);
  260.     sub_rect->x = ctx->x_offset;
  261.     sub_rect->y = ctx->y_offset + chop_top * BITMAP_CHAR_HEIGHT;
  262.     sub_rect->w = resx;
  263.     sub_rect->h = resy;
  264.     sub_rect->nb_colors = (int)cmax + 1;
  265.     sub_rect->pict.data[1] = av_mallocz(AVPALETTE_SIZE);
  266.     if (!sub_rect->pict.data[1]) {
  267.         av_freep(&sub_rect->pict.data[0]);
  268.         return AVERROR(ENOMEM);
  269.     }
  270.     for (ci = 0; ci < cmax; ci++) {
  271.         int r, g, b, a;
  272.  
  273.         r = VBI_R(page->color_map[ci]);
  274.         g = VBI_G(page->color_map[ci]);
  275.         b = VBI_B(page->color_map[ci]);
  276.         a = VBI_A(page->color_map[ci]);
  277.         ((uint32_t *)sub_rect->pict.data[1])[ci] = RGBA(r, g, b, a);
  278.         ff_dlog(ctx, "palette %0x\n", ((uint32_t *)sub_rect->pict.data[1])[ci]);
  279.     }
  280.     ((uint32_t *)sub_rect->pict.data[1])[cmax] = RGBA(0, 0, 0, 0);
  281.     sub_rect->type = SUBTITLE_BITMAP;
  282.     return 0;
  283. }
  284.  
  285. static void handler(vbi_event *ev, void *user_data)
  286. {
  287.     TeletextContext *ctx = user_data;
  288.     TeletextPage *new_pages;
  289.     vbi_page page;
  290.     int res;
  291.     char pgno_str[12];
  292.     vbi_subno subno;
  293.     vbi_page_type vpt;
  294.     int chop_top;
  295.     char *lang;
  296.  
  297.     snprintf(pgno_str, sizeof pgno_str, "%03x", ev->ev.ttx_page.pgno);
  298.     av_log(ctx, AV_LOG_DEBUG, "decoded page %s.%02x\n",
  299.            pgno_str, ev->ev.ttx_page.subno & 0xFF);
  300.  
  301.     if (strcmp(ctx->pgno, "*") && !strstr(ctx->pgno, pgno_str))
  302.         return;
  303.     if (ctx->handler_ret < 0)
  304.         return;
  305.  
  306.     res = vbi_fetch_vt_page(ctx->vbi, &page,
  307.                             ev->ev.ttx_page.pgno,
  308.                             ev->ev.ttx_page.subno,
  309.                             VBI_WST_LEVEL_3p5, 25, TRUE);
  310.  
  311.     if (!res)
  312.         return;
  313.  
  314. #ifdef DEBUG
  315.     fprintf(stderr, "\nSaving res=%d dy0=%d dy1=%d...\n",
  316.             res, page.dirty.y0, page.dirty.y1);
  317.     fflush(stderr);
  318.  
  319.     if (!vbi_export_stdio(ctx->ex, stderr, &page))
  320.         fprintf(stderr, "failed: %s\n", vbi_export_errstr(ctx->ex));
  321. #endif
  322.  
  323.     vpt = vbi_classify_page(ctx->vbi, ev->ev.ttx_page.pgno, &subno, &lang);
  324.     chop_top = ctx->chop_top ||
  325.         ((page.rows > 1) && (vpt == VBI_SUBTITLE_PAGE));
  326.  
  327.     av_log(ctx, AV_LOG_DEBUG, "%d x %d page chop:%d\n",
  328.            page.columns, page.rows, chop_top);
  329.  
  330.     if (ctx->nb_pages < MAX_BUFFERED_PAGES) {
  331.         if ((new_pages = av_realloc_array(ctx->pages, ctx->nb_pages + 1, sizeof(TeletextPage)))) {
  332.             TeletextPage *cur_page = new_pages + ctx->nb_pages;
  333.             ctx->pages = new_pages;
  334.             cur_page->sub_rect = av_mallocz(sizeof(*cur_page->sub_rect));
  335.             cur_page->pts = ctx->pts;
  336.             cur_page->pgno = ev->ev.ttx_page.pgno;
  337.             cur_page->subno = ev->ev.ttx_page.subno;
  338.             if (cur_page->sub_rect) {
  339.                 res = (ctx->format_id == 0) ?
  340.                     gen_sub_bitmap(ctx, cur_page->sub_rect, &page, chop_top) :
  341.                     gen_sub_text  (ctx, cur_page->sub_rect, &page, chop_top);
  342.                 if (res < 0) {
  343.                     av_freep(&cur_page->sub_rect);
  344.                     ctx->handler_ret = res;
  345.                 } else {
  346.                     ctx->pages[ctx->nb_pages++] = *cur_page;
  347.                 }
  348.             } else {
  349.                 ctx->handler_ret = AVERROR(ENOMEM);
  350.             }
  351.         } else {
  352.             ctx->handler_ret = AVERROR(ENOMEM);
  353.         }
  354.     } else {
  355.         //TODO: If multiple packets contain more than one page, pages may got queued up, and this may happen...
  356.         av_log(ctx, AV_LOG_ERROR, "Buffered too many pages, dropping page %s.\n", pgno_str);
  357.         ctx->handler_ret = AVERROR(ENOSYS);
  358.     }
  359.  
  360.     vbi_unref_page(&page);
  361. }
  362.  
  363. static inline int data_identifier_is_teletext(int data_identifier) {
  364.     /* See EN 301 775 section 4.4.2. */
  365.     return (data_identifier >= 0x10 && data_identifier <= 0x1F ||
  366.             data_identifier >= 0x99 && data_identifier <= 0x9B);
  367. }
  368.  
  369. static int slice_to_vbi_lines(TeletextContext *ctx, uint8_t* buf, int size)
  370. {
  371.     int lines = 0;
  372.     while (size >= 2 && lines < MAX_SLICES) {
  373.         int data_unit_id     = buf[0];
  374.         int data_unit_length = buf[1];
  375.         if (data_unit_length + 2 > size)
  376.             return AVERROR_INVALIDDATA;
  377.         if (data_unit_id == 0x02 || data_unit_id == 0x03) {
  378.             if (data_unit_length != 0x2c)
  379.                 return AVERROR_INVALIDDATA;
  380.             else {
  381.                 int line_offset  = buf[2] & 0x1f;
  382.                 int field_parity = buf[2] & 0x20;
  383.                 int i;
  384.                 ctx->sliced[lines].id = VBI_SLICED_TELETEXT_B;
  385.                 ctx->sliced[lines].line = (line_offset > 0 ? (line_offset + (field_parity ? 0 : 313)) : 0);
  386.                 for (i = 0; i < 42; i++)
  387.                     ctx->sliced[lines].data[i] = vbi_rev8(buf[4 + i]);
  388.                 lines++;
  389.             }
  390.         }
  391.         size -= data_unit_length + 2;
  392.         buf += data_unit_length + 2;
  393.     }
  394.     if (size)
  395.         av_log(ctx, AV_LOG_WARNING, "%d bytes remained after slicing data\n", size);
  396.     return lines;
  397. }
  398.  
  399. static int teletext_decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *pkt)
  400. {
  401.     TeletextContext *ctx = avctx->priv_data;
  402.     AVSubtitle      *sub = data;
  403.     int             ret = 0;
  404.  
  405.     if (!ctx->vbi) {
  406.         if (!(ctx->vbi = vbi_decoder_new()))
  407.             return AVERROR(ENOMEM);
  408.         if (!vbi_event_handler_add(ctx->vbi, VBI_EVENT_TTX_PAGE, handler, ctx)) {
  409.             vbi_decoder_delete(ctx->vbi);
  410.             ctx->vbi = NULL;
  411.             return AVERROR(ENOMEM);
  412.         }
  413.     }
  414.  
  415.     if (avctx->pkt_timebase.den && pkt->pts != AV_NOPTS_VALUE)
  416.         ctx->pts = av_rescale_q(pkt->pts, avctx->pkt_timebase, AV_TIME_BASE_Q);
  417.  
  418.     if (pkt->size) {
  419.         int lines;
  420.         const int full_pes_size = pkt->size + 45; /* PES header is 45 bytes */
  421.  
  422.         // We allow unreasonably big packets, even if the standard only allows a max size of 1472
  423.         if (full_pes_size < 184 || full_pes_size > 65504 || full_pes_size % 184 != 0)
  424.             return AVERROR_INVALIDDATA;
  425.  
  426.         ctx->handler_ret = pkt->size;
  427.  
  428.         if (data_identifier_is_teletext(*pkt->data)) {
  429.             if ((lines = slice_to_vbi_lines(ctx, pkt->data + 1, pkt->size - 1)) < 0)
  430.                 return lines;
  431.             ff_dlog(avctx, "ctx=%p buf_size=%d lines=%u pkt_pts=%7.3f\n",
  432.                     ctx, pkt->size, lines, (double)pkt->pts/90000.0);
  433.             if (lines > 0) {
  434. #ifdef DEBUG
  435.                 int i;
  436.                 av_log(avctx, AV_LOG_DEBUG, "line numbers:");
  437.                 for(i = 0; i < lines; i++)
  438.                     av_log(avctx, AV_LOG_DEBUG, " %d", ctx->sliced[i].line);
  439.                 av_log(avctx, AV_LOG_DEBUG, "\n");
  440. #endif
  441.                 vbi_decode(ctx->vbi, ctx->sliced, lines, 0.0);
  442.                 ctx->lines_processed += lines;
  443.             }
  444.         }
  445.         ctx->pts = AV_NOPTS_VALUE;
  446.         ret = ctx->handler_ret;
  447.     }
  448.  
  449.     if (ret < 0)
  450.         return ret;
  451.  
  452.     // is there a subtitle to pass?
  453.     if (ctx->nb_pages) {
  454.         int i;
  455.         sub->format = ctx->format_id;
  456.         sub->start_display_time = 0;
  457.         sub->end_display_time = ctx->sub_duration;
  458.         sub->num_rects = 0;
  459.         sub->pts = ctx->pages->pts;
  460.  
  461.         if (ctx->pages->sub_rect->type != SUBTITLE_NONE) {
  462.             sub->rects = av_malloc(sizeof(*sub->rects));
  463.             if (sub->rects) {
  464.                 sub->num_rects = 1;
  465.                 sub->rects[0] = ctx->pages->sub_rect;
  466.             } else {
  467.                 ret = AVERROR(ENOMEM);
  468.             }
  469.         } else {
  470.             av_log(avctx, AV_LOG_DEBUG, "sending empty sub\n");
  471.             sub->rects = NULL;
  472.         }
  473.         if (!sub->rects) // no rect was passed
  474.             subtitle_rect_free(&ctx->pages->sub_rect);
  475.  
  476.         for (i = 0; i < ctx->nb_pages - 1; i++)
  477.             ctx->pages[i] = ctx->pages[i + 1];
  478.         ctx->nb_pages--;
  479.  
  480.         if (ret >= 0)
  481.             *data_size = 1;
  482.     } else
  483.         *data_size = 0;
  484.  
  485.     return ret;
  486. }
  487.  
  488. static int teletext_init_decoder(AVCodecContext *avctx)
  489. {
  490.     TeletextContext *ctx = avctx->priv_data;
  491.     unsigned int maj, min, rev;
  492.  
  493.     vbi_version(&maj, &min, &rev);
  494.     if (!(maj > 0 || min > 2 || min == 2 && rev >= 26)) {
  495.         av_log(avctx, AV_LOG_ERROR, "decoder needs zvbi version >= 0.2.26.\n");
  496.         return AVERROR_EXTERNAL;
  497.     }
  498.  
  499.     if (ctx->format_id == 0) {
  500.         avctx->width  = 41 * BITMAP_CHAR_WIDTH;
  501.         avctx->height = 25 * BITMAP_CHAR_HEIGHT;
  502.     }
  503.  
  504.     ctx->vbi = NULL;
  505.     ctx->pts = AV_NOPTS_VALUE;
  506.  
  507. #ifdef DEBUG
  508.     {
  509.         char *t;
  510.         ctx->ex = vbi_export_new("text", &t);
  511.     }
  512. #endif
  513.     av_log(avctx, AV_LOG_VERBOSE, "page filter: %s\n", ctx->pgno);
  514.     return (ctx->format_id == 1) ? ff_ass_subtitle_header_default(avctx) : 0;
  515. }
  516.  
  517. static int teletext_close_decoder(AVCodecContext *avctx)
  518. {
  519.     TeletextContext *ctx = avctx->priv_data;
  520.  
  521.     ff_dlog(avctx, "lines_total=%u\n", ctx->lines_processed);
  522.     while (ctx->nb_pages)
  523.         subtitle_rect_free(&ctx->pages[--ctx->nb_pages].sub_rect);
  524.     av_freep(&ctx->pages);
  525.  
  526.     vbi_decoder_delete(ctx->vbi);
  527.     ctx->vbi = NULL;
  528.     ctx->pts = AV_NOPTS_VALUE;
  529.     return 0;
  530. }
  531.  
  532. static void teletext_flush(AVCodecContext *avctx)
  533. {
  534.     teletext_close_decoder(avctx);
  535. }
  536.  
  537. #define OFFSET(x) offsetof(TeletextContext, x)
  538. #define SD AV_OPT_FLAG_SUBTITLE_PARAM | AV_OPT_FLAG_DECODING_PARAM
  539. static const AVOption options[] = {
  540.     {"txt_page",        "list of teletext page numbers to decode, * is all", OFFSET(pgno),           AV_OPT_TYPE_STRING, {.str = "*"},      0, 0,        SD},
  541.     {"txt_chop_top",    "discards the top teletext line",                    OFFSET(chop_top),       AV_OPT_TYPE_INT,    {.i64 = 1},        0, 1,        SD},
  542.     {"txt_format",      "format of the subtitles (bitmap or text)",          OFFSET(format_id),      AV_OPT_TYPE_INT,    {.i64 = 0},        0, 1,        SD,  "txt_format"},
  543.     {"bitmap",          NULL,                                                0,                      AV_OPT_TYPE_CONST,  {.i64 = 0},        0, 0,        SD,  "txt_format"},
  544.     {"text",            NULL,                                                0,                      AV_OPT_TYPE_CONST,  {.i64 = 1},        0, 0,        SD,  "txt_format"},
  545.     {"txt_left",        "x offset of generated bitmaps",                     OFFSET(x_offset),       AV_OPT_TYPE_INT,    {.i64 = 0},        0, 65535,    SD},
  546.     {"txt_top",         "y offset of generated bitmaps",                     OFFSET(y_offset),       AV_OPT_TYPE_INT,    {.i64 = 0},        0, 65535,    SD},
  547.     {"txt_chop_spaces", "chops leading and trailing spaces from text",       OFFSET(chop_spaces),    AV_OPT_TYPE_INT,    {.i64 = 1},        0, 1,        SD},
  548.     {"txt_duration",    "display duration of teletext pages in msecs",       OFFSET(sub_duration),   AV_OPT_TYPE_INT,    {.i64 = 30000},    0, 86400000, SD},
  549.     {"txt_transparent", "force transparent background of the teletext",      OFFSET(transparent_bg), AV_OPT_TYPE_INT,    {.i64 = 0},        0, 1,        SD},
  550.     { NULL },
  551. };
  552.  
  553. static const AVClass teletext_class = {
  554.     .class_name = "libzvbi_teletextdec",
  555.     .item_name  = av_default_item_name,
  556.     .option     = options,
  557.     .version    = LIBAVUTIL_VERSION_INT,
  558. };
  559.  
  560. AVCodec ff_libzvbi_teletext_decoder = {
  561.     .name      = "libzvbi_teletextdec",
  562.     .long_name = NULL_IF_CONFIG_SMALL("Libzvbi DVB teletext decoder"),
  563.     .type      = AVMEDIA_TYPE_SUBTITLE,
  564.     .id        = AV_CODEC_ID_DVB_TELETEXT,
  565.     .priv_data_size = sizeof(TeletextContext),
  566.     .init      = teletext_init_decoder,
  567.     .close     = teletext_close_decoder,
  568.     .decode    = teletext_decode_frame,
  569.     .capabilities = AV_CODEC_CAP_DELAY,
  570.     .flush     = teletext_flush,
  571.     .priv_class= &teletext_class,
  572. };
  573.