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