FFmpeg
Loading...
Searching...
No Matches
libzvbi-teletextdec.c
Go to the documentation of this file.
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 "codec_internal.h"
24#include "libavcodec/dvbtxt.h"
25#include "libavutil/mem.h"
26#include "libavutil/opt.h"
27#include "libavutil/bprint.h"
28#include "libavutil/internal.h"
29#include "libavutil/log.h"
30#include "libavutil/common.h"
31
32#include <libzvbi.h>
33
34#define TEXT_MAXSZ (25 * (56 + 1) * 4 + 2)
35#define VBI_NB_COLORS 40
36#define VBI_TRANSPARENT_BLACK 8
37#define RGBA(r,g,b,a) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
38#define VBI_R(rgba) (((rgba) >> 0) & 0xFF)
39#define VBI_G(rgba) (((rgba) >> 8) & 0xFF)
40#define VBI_B(rgba) (((rgba) >> 16) & 0xFF)
41#define VBI_A(rgba) (((rgba) >> 24) & 0xFF)
42#define MAX_BUFFERED_PAGES 25
43#define BITMAP_CHAR_WIDTH 12
44#define BITMAP_CHAR_HEIGHT 10
45#define MAX_SLICES 64
46
54
55typedef struct TeletextContext
56{
57 AVClass *class;
58 char *pgno;
62 int format_id; /* 0 = bitmap, 1 = text/ass, 2 = ass */
64 int sub_duration; /* in msec */
68
74
75 vbi_decoder * vbi;
76 vbi_sliced sliced[MAX_SLICES];
77
79 uint8_t subtitle_map[2048];
84
86{
87 int ret = ff_ass_subtitle_header_default(avctx);
88 char *new_header;
89 uint8_t *event_pos;
90
91 if (ret < 0)
92 return ret;
93
94 event_pos = strstr(avctx->subtitle_header, "\n[Events]\n");
95 if (!event_pos)
96 return AVERROR_BUG;
97
98 new_header = av_asprintf("%.*s%s%s",
99 (int)(event_pos - avctx->subtitle_header), avctx->subtitle_header,
100 "Style: "
101 "Teletext," /* Name */
102 "Monospace,11," /* Font{name,size} */
103 "&Hffffff,&Hffffff,&H0,&H0," /* {Primary,Secondary,Outline,Back}Colour */
104 "0,0,0,0," /* Bold, Italic, Underline, StrikeOut */
105 "160,100," /* Scale{X,Y} */
106 "0,0," /* Spacing, Angle */
107 "3,0.1,0," /* BorderStyle, Outline, Shadow */
108 "5,1,1,1," /* Alignment, Margin[LRV] */
109 "0\n" /* Encoding */
110 "Style: "
111 "Subtitle," /* Name */
112 "Monospace,16," /* Font{name,size} */
113 "&Hffffff,&Hffffff,&H0,&H0," /* {Primary,Secondary,Outline,Back}Colour */
114 "0,0,0,0," /* Bold, Italic, Underline, StrikeOut */
115 "100,100," /* Scale{X,Y} */
116 "0,0," /* Spacing, Angle */
117 "1,1,1," /* BorderStyle, Outline, Shadow */
118 "8,48,48,20," /* Alignment, Margin[LRV] */
119 "0\n" /* Encoding */
120 , event_pos);
121
122 if (!new_header)
123 return AVERROR(ENOMEM);
124
125 av_free(avctx->subtitle_header);
126 avctx->subtitle_header = new_header;
127 avctx->subtitle_header_size = strlen(new_header);
128 return 0;
129}
130
131static int chop_spaces_utf8(const unsigned char* t, int len)
132{
133 t += len;
134 while (len > 0) {
135 if (*--t != ' ' || (len-1 > 0 && *(t-1) & 0x80))
136 break;
137 --len;
138 }
139 return len;
140}
141
142static void subtitle_rect_free(AVSubtitleRect **sub_rect)
143{
144 av_freep(&(*sub_rect)->data[0]);
145 av_freep(&(*sub_rect)->data[1]);
146 av_freep(&(*sub_rect)->ass);
147 av_freep(sub_rect);
148}
149
150static char *create_ass_text(TeletextContext *ctx, const char *text)
151{
152 char *dialog;
153 AVBPrint buf;
154
156 ff_ass_bprint_text_event(&buf, text, strlen(text), "", 0);
157 if (!av_bprint_is_complete(&buf)) {
159 return NULL;
160 }
161 dialog = ff_ass_get_dialog(ctx->readorder++, 0, NULL, NULL, buf.str);
163 return dialog;
164}
165
166/* Draw a page as text */
167static int gen_sub_text(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
168{
169 const char *in;
170 AVBPrint buf;
171 char *vbi_text = av_malloc(TEXT_MAXSZ);
172 int sz;
173
174 if (!vbi_text)
175 return AVERROR(ENOMEM);
176
177 sz = vbi_print_page_region(page, vbi_text, TEXT_MAXSZ-1, "UTF-8",
178 /*table mode*/ TRUE, FALSE,
179 0, chop_top,
180 page->columns, page->rows-chop_top);
181 if (sz <= 0) {
182 av_log(ctx, AV_LOG_ERROR, "vbi_print error\n");
183 av_free(vbi_text);
184 return AVERROR_EXTERNAL;
185 }
186 vbi_text[sz] = '\0';
187 in = vbi_text;
188 av_bprint_init(&buf, 0, TEXT_MAXSZ);
189
190 if (ctx->chop_spaces) {
191 for (;;) {
192 int nl, sz;
193
194 // skip leading spaces and newlines
195 in += strspn(in, " \n");
196 // compute end of row
197 for (nl = 0; in[nl]; ++nl)
198 if (in[nl] == '\n' && (nl==0 || !(in[nl-1] & 0x80)))
199 break;
200 if (!in[nl])
201 break;
202 // skip trailing spaces
203 sz = chop_spaces_utf8(in, nl);
204 av_bprint_append_data(&buf, in, sz);
205 av_bprintf(&buf, "\n");
206 in += nl;
207 }
208 } else {
209 av_bprintf(&buf, "%s\n", vbi_text);
210 }
211 av_free(vbi_text);
212
213 if (!av_bprint_is_complete(&buf)) {
215 return AVERROR(ENOMEM);
216 }
217
218 if (buf.len) {
219 sub_rect->type = SUBTITLE_ASS;
220 sub_rect->ass = create_ass_text(ctx, buf.str);
221
222 if (!sub_rect->ass) {
224 return AVERROR(ENOMEM);
225 }
226 av_log(ctx, AV_LOG_DEBUG, "subtext:%s:txetbus\n", sub_rect->ass);
227 } else {
228 sub_rect->type = SUBTITLE_NONE;
229 }
231 return 0;
232}
233
234static void bprint_color(const char *type, AVBPrint *buf, vbi_page *page, unsigned ci)
235{
236 int r = VBI_R(page->color_map[ci]);
237 int g = VBI_G(page->color_map[ci]);
238 int b = VBI_B(page->color_map[ci]);
239 av_bprintf(buf, "{\\%s&H%02X%02X%02X&}", type, b, g, r);
240}
241
242#define IS_TXT_SPACE(ch) ((ch).unicode < 0x0020 || (ch).unicode >= 0xe000 || (ch).unicode == 0x00a0 ||\
243 (ch).size > VBI_DOUBLE_SIZE || (ch).opacity == VBI_TRANSPARENT_SPACE)
244
245static void get_trim_info(vbi_page *page, vbi_char *row, int *leading, int *trailing, int *olen)
246{
247 int i, len = 0;
248 int char_seen = 0;
249
250 *leading = 0;
251
252 for (i = 0; i < page->columns; i++) {
253 uint16_t out = IS_TXT_SPACE(row[i]) ? 32 : row[i].unicode;
254
255 if (out == 32 && !char_seen)
256 (*leading)++;
257 else if (out != 32)
258 char_seen = 1, len = i - (*leading) + 1;
259 }
260
261 *olen = len;
262 *trailing = len > 0 ? page->columns - *leading - len : page->columns;
263}
264
265static void decode_string(vbi_page *page, vbi_char *row, AVBPrint *buf,
266 int start, int end, vbi_color *cur_color, vbi_color *cur_back_color)
267{
268 int i;
269
270 for (i = start; i < end; i++) {
271 uint16_t out = IS_TXT_SPACE(row[i]) ? 32 : row[i].unicode;
272
273 if (*cur_color != row[i].foreground) {
274 bprint_color("c", buf, page, row[i].foreground);
275 *cur_color = row[i].foreground;
276 }
277 if (*cur_back_color != row[i].background) {
278 bprint_color("3c", buf, page, row[i].background);
279 *cur_back_color = row[i].background;
280 }
281
282 if (out == 32) {
283 av_bprintf(buf, "\\h");
284 } else if (out == '\\' || out == '{' || out == '}') {
285 av_bprintf(buf, "\\%c", (char)out);
286 } else {
287 char tmp;
288 /* convert to utf-8 */
289 PUT_UTF8(out, tmp, av_bprint_chars(buf, tmp, 1););
290 }
291 }
292}
293
294/* Draw a page as ass formatted text */
295static int gen_sub_ass(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
296{
297 int i;
298 int leading, trailing, len;
299 int last_trailing = -1, last_leading = -1;
300 int min_trailing = page->columns, min_leading = page->columns;
301 int alignment = 2;
302 int vertical_align = -1;
303 int can_align_left = 1, can_align_right = 1, can_align_center = 1;
304 int is_subtitle_page = ctx->subtitle_map[page->pgno & 0x7ff];
305 int empty_lines = 0;
306 vbi_color cur_color = VBI_WHITE;
307 vbi_color cur_back_color = VBI_BLACK;
308 AVBPrint buf;
309
311
312 for (i = chop_top; i < page->rows; i++) {
313 vbi_char *row = page->text + i * page->columns;
314
315 get_trim_info(page, row, &leading, &trailing, &len);
316
317 if (len) {
318 if (last_leading != -1 && last_leading != leading || leading > 5)
319 can_align_left = 0;
320 if (last_trailing != -1 && last_trailing != trailing || trailing > 2)
321 can_align_right = 0;
322 if (last_trailing != -1 && (FFABS((trailing - leading) - (last_trailing - last_leading)) > 1) || trailing - leading > 4)
323 can_align_center = 0;
324 last_leading = leading;
325 last_trailing = trailing;
326 min_leading = FFMIN(leading, min_leading);
327 min_trailing = FFMIN(trailing, min_trailing);
328 }
329 }
330
331 if (!can_align_right && can_align_left && !can_align_center) {
332 ctx->last_ass_alignment = alignment = 1;
333 } else if (!can_align_right && !can_align_left && can_align_center) {
334 ctx->last_ass_alignment = alignment = 2;
335 } else if (can_align_right && !can_align_left && !can_align_center) {
336 ctx->last_ass_alignment = alignment = 3;
337 } else {
338 if (ctx->last_ass_alignment == 1 && can_align_left ||
339 ctx->last_ass_alignment == 2 && can_align_center ||
340 ctx->last_ass_alignment == 3 && can_align_right)
341 alignment = ctx->last_ass_alignment;
342 }
343
344 for (i = chop_top; i < page->rows; i++) {
345 int j;
346 vbi_char *row = page->text + i * page->columns;
347 int is_transparent_line;
348
349 for (j = 0; j < page->columns; j++)
350 if (row[j].opacity != VBI_TRANSPARENT_SPACE)
351 break;
352 is_transparent_line = (j == page->columns);
353
354 len = is_transparent_line ? 0 : page->columns;
355 leading = trailing = is_transparent_line ? page->columns : 0;
356
357 if (is_subtitle_page) {
358 if (!is_transparent_line)
359 get_trim_info(page, row, &leading, &trailing, &len);
360
361 if (vertical_align == -1 && len) {
362 vertical_align = (2 - (av_clip(i + 1, 0, 23) / 8));
363 av_bprintf(&buf, "{\\an%d}", alignment + vertical_align * 3);
364 if (vertical_align != 2)
365 empty_lines = 0;
366 }
367
368 if (len && empty_lines > 1)
369 for (empty_lines /= 2; empty_lines > 0; empty_lines--)
370 av_bprintf(&buf, " \\N");
371
372 if (alignment == 1 || alignment == 2 && !can_align_center)
373 leading = min_leading;
374 if (alignment == 3 || alignment == 2 && !can_align_center)
375 trailing = min_trailing;
376 }
377
378 if (len || !is_subtitle_page) {
379 decode_string(page, row, &buf, leading, page->columns - trailing, &cur_color, &cur_back_color);
380 av_bprintf(&buf, " \\N");
381 empty_lines = 0;
382 } else {
383 empty_lines++;
384 }
385 }
386
387 if (vertical_align == 0)
388 for (empty_lines = (empty_lines - 1) / 2; empty_lines > 0; empty_lines--)
389 av_bprintf(&buf, " \\N");
390
391 if (!av_bprint_is_complete(&buf)) {
393 return AVERROR(ENOMEM);
394 }
395
396 if (buf.len) {
397 sub_rect->type = SUBTITLE_ASS;
398 sub_rect->ass = ff_ass_get_dialog(ctx->readorder++, 0, is_subtitle_page ? "Subtitle" : "Teletext", NULL, buf.str);
399
400 if (!sub_rect->ass) {
402 return AVERROR(ENOMEM);
403 }
404 av_log(ctx, AV_LOG_DEBUG, "subtext:%s:txetbus\n", sub_rect->ass);
405 } else {
406 sub_rect->type = SUBTITLE_NONE;
407 }
409 return 0;
410}
411
412static void fix_transparency(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page,
413 int chop_top, int resx, int resy)
414{
415 int iy;
416
417 // Hack for transparency, inspired by VLC code...
418 for (iy = 0; iy < resy; iy++) {
419 uint8_t *pixel = sub_rect->data[0] + iy * sub_rect->linesize[0];
420 vbi_char *vc = page->text + (iy / BITMAP_CHAR_HEIGHT + chop_top) * page->columns;
421 vbi_char *vcnext = vc + page->columns;
422 for (; vc < vcnext; vc++) {
423 uint8_t *pixelnext = pixel + BITMAP_CHAR_WIDTH;
424 switch (vc->opacity) {
425 case VBI_TRANSPARENT_SPACE:
427 break;
428 case VBI_OPAQUE:
429 if (!ctx->transparent_bg)
430 break;
432 case VBI_SEMI_TRANSPARENT:
433 if (ctx->opacity > 0) {
434 if (ctx->opacity < 255)
435 for(; pixel < pixelnext; pixel++)
436 if (*pixel == vc->background)
438 break;
439 }
441 case VBI_TRANSPARENT_FULL:
442 for(; pixel < pixelnext; pixel++)
443 if (*pixel == vc->background)
445 break;
446 }
447 pixel = pixelnext;
448 }
449 }
450}
451
452/* Draw a page as bitmap */
453static int gen_sub_bitmap(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
454{
455 int resx = page->columns * BITMAP_CHAR_WIDTH;
456 int resy = (page->rows - chop_top) * BITMAP_CHAR_HEIGHT;
457 uint8_t ci;
458 vbi_char *vc = page->text + (chop_top * page->columns);
459 vbi_char *vcend = page->text + (page->rows * page->columns);
460
461 for (; vc < vcend; vc++) {
462 if (vc->opacity != VBI_TRANSPARENT_SPACE)
463 break;
464 }
465
466 if (vc >= vcend) {
467 av_log(ctx, AV_LOG_DEBUG, "dropping empty page %3x\n", page->pgno);
468 sub_rect->type = SUBTITLE_NONE;
469 return 0;
470 }
471
472 sub_rect->data[0] = av_mallocz(resx * resy);
473 sub_rect->linesize[0] = resx;
474 if (!sub_rect->data[0])
475 return AVERROR(ENOMEM);
476
477 vbi_draw_vt_page_region(page, VBI_PIXFMT_PAL8,
478 sub_rect->data[0], sub_rect->linesize[0],
479 0, chop_top, page->columns, page->rows - chop_top,
480 /*reveal*/ 1, /*flash*/ 1);
481
482 fix_transparency(ctx, sub_rect, page, chop_top, resx, resy);
483 sub_rect->x = ctx->x_offset;
484 sub_rect->y = ctx->y_offset + chop_top * BITMAP_CHAR_HEIGHT;
485 sub_rect->w = resx;
486 sub_rect->h = resy;
487 sub_rect->nb_colors = ctx->opacity > 0 && ctx->opacity < 255 ? 2 * VBI_NB_COLORS : VBI_NB_COLORS;
488 sub_rect->data[1] = av_mallocz(AVPALETTE_SIZE);
489 if (!sub_rect->data[1]) {
490 av_freep(&sub_rect->data[0]);
491 return AVERROR(ENOMEM);
492 }
493 for (ci = 0; ci < VBI_NB_COLORS; ci++) {
494 int r, g, b, a;
495
496 r = VBI_R(page->color_map[ci]);
497 g = VBI_G(page->color_map[ci]);
498 b = VBI_B(page->color_map[ci]);
499 a = VBI_A(page->color_map[ci]);
500 ((uint32_t *)sub_rect->data[1])[ci] = RGBA(r, g, b, a);
501 ((uint32_t *)sub_rect->data[1])[ci + VBI_NB_COLORS] = RGBA(r, g, b, ctx->opacity);
502 ff_dlog(ctx, "palette %0x\n", ((uint32_t *)sub_rect->data[1])[ci]);
503 }
504 ((uint32_t *)sub_rect->data[1])[VBI_TRANSPARENT_BLACK] = RGBA(0, 0, 0, 0);
505 ((uint32_t *)sub_rect->data[1])[VBI_TRANSPARENT_BLACK + VBI_NB_COLORS] = RGBA(0, 0, 0, 0);
506 sub_rect->type = SUBTITLE_BITMAP;
507 return 0;
508}
509
510static void handler(vbi_event *ev, void *user_data)
511{
513 TeletextPage *new_pages;
514 vbi_page page;
515 int res;
516 char pgno_str[12];
517 int chop_top;
518 int is_subtitle_page = ctx->subtitle_map[ev->ev.ttx_page.pgno & 0x7ff];
519
520 snprintf(pgno_str, sizeof pgno_str, "%03x", ev->ev.ttx_page.pgno);
521 av_log(ctx, AV_LOG_DEBUG, "decoded page %s.%02x\n",
522 pgno_str, ev->ev.ttx_page.subno & 0xFF);
523
524 if (strcmp(ctx->pgno, "*") && (strcmp(ctx->pgno, "subtitle") || !is_subtitle_page) && !strstr(ctx->pgno, pgno_str))
525 return;
526 if (ctx->handler_ret < 0)
527 return;
528
529 res = vbi_fetch_vt_page(ctx->vbi, &page,
530 ev->ev.ttx_page.pgno,
531 ev->ev.ttx_page.subno,
532 VBI_WST_LEVEL_3p5, 25, TRUE);
533
534 if (!res)
535 return;
536
537 chop_top = ctx->chop_top || ((page.rows > 1) && is_subtitle_page);
538
539 av_log(ctx, AV_LOG_DEBUG, "%d x %d page chop:%d\n",
540 page.columns, page.rows, chop_top);
541
542 if (ctx->nb_pages < MAX_BUFFERED_PAGES) {
543 if ((new_pages = av_realloc_array(ctx->pages, ctx->nb_pages + 1, sizeof(TeletextPage)))) {
544 TeletextPage *cur_page = new_pages + ctx->nb_pages;
545 ctx->pages = new_pages;
546 cur_page->sub_rect = av_mallocz(sizeof(*cur_page->sub_rect));
547 cur_page->pts = ctx->pts;
548 cur_page->pgno = ev->ev.ttx_page.pgno;
549 cur_page->subno = ev->ev.ttx_page.subno;
550 if (cur_page->sub_rect) {
551 switch (ctx->format_id) {
552 case 0:
553 res = gen_sub_bitmap(ctx, cur_page->sub_rect, &page, chop_top);
554 break;
555 case 1:
556 res = gen_sub_text(ctx, cur_page->sub_rect, &page, chop_top);
557 break;
558 case 2:
559 res = gen_sub_ass(ctx, cur_page->sub_rect, &page, chop_top);
560 break;
561 default:
562 res = AVERROR_BUG;
563 break;
564 }
565 if (res < 0) {
566 av_freep(&cur_page->sub_rect);
567 ctx->handler_ret = res;
568 } else {
569 ctx->pages[ctx->nb_pages++] = *cur_page;
570 }
571 } else {
572 ctx->handler_ret = AVERROR(ENOMEM);
573 }
574 } else {
575 ctx->handler_ret = AVERROR(ENOMEM);
576 }
577 } else {
578 //TODO: If multiple packets contain more than one page, pages may got queued up, and this may happen...
579 av_log(ctx, AV_LOG_ERROR, "Buffered too many pages, dropping page %s.\n", pgno_str);
580 ctx->handler_ret = AVERROR(ENOSYS);
581 }
582
583 vbi_unref_page(&page);
584}
585
586static int slice_to_vbi_lines(TeletextContext *ctx, const uint8_t *buf, int size)
587{
588 int lines = 0;
589 while (size >= 2 && lines < MAX_SLICES) {
590 int data_unit_id = buf[0];
591 int data_unit_length = buf[1];
592 if (data_unit_length + 2 > size)
593 return AVERROR_INVALIDDATA;
594 if (ff_data_unit_id_is_teletext(data_unit_id)) {
595 if (data_unit_length != 0x2c)
596 return AVERROR_INVALIDDATA;
597 else {
598 int line_offset = buf[2] & 0x1f;
599 int field_parity = buf[2] & 0x20;
600 uint8_t *p = ctx->sliced[lines].data;
601 int i, pmag;
602 ctx->sliced[lines].id = VBI_SLICED_TELETEXT_B;
603 ctx->sliced[lines].line = (line_offset > 0 ? (line_offset + (field_parity ? 0 : 313)) : 0);
604 for (i = 0; i < 42; i++)
605 p[i] = vbi_rev8(buf[4 + i]);
606 /* Unfortunately libzvbi does not expose page flags, and
607 * vbi_classify_page only checks MIP, so we have to manually
608 * decode the page flags and store the results. */
609 pmag = vbi_unham16p(p);
610 if (pmag >= 0 && pmag >> 3 == 0) { // We found a row 0 header
611 int page = vbi_unham16p(p + 2);
612 int flags1 = vbi_unham16p(p + 6);
613 int flags2 = vbi_unham16p(p + 8);
614 if (page >= 0 && flags1 >= 0 && flags2 >= 0) {
615 int pgno = ((pmag & 7) << 8) + page;
616 // Check for disabled NEWSFLASH flag and enabled SUBTITLE and SUPRESS_HEADER flags
617 ctx->subtitle_map[pgno] = (!(flags1 & 0x40) && flags1 & 0x80 && flags2 & 0x01);
618 // Propagate ERASE_PAGE flag for repeated page headers to work around a libzvbi bug
619 if (ctx->subtitle_map[pgno] && pgno == ctx->last_pgno) {
620 int last_byte9 = vbi_unham8(ctx->last_p5);
621 if (last_byte9 >= 0 && last_byte9 & 0x8) {
622 int byte9 = vbi_unham8(p[5]);
623 if (byte9 >= 0)
624 p[5] = vbi_ham8(byte9 | 0x8);
625 }
626 }
627 ctx->last_pgno = pgno;
628 ctx->last_p5 = p[5];
629 }
630 }
631 lines++;
632 }
633 }
634 size -= data_unit_length + 2;
635 buf += data_unit_length + 2;
636 }
637 if (size)
638 av_log(ctx, AV_LOG_WARNING, "%d bytes remained after slicing data\n", size);
639 return lines;
640}
641
643 int *got_sub_ptr, const AVPacket *pkt)
644{
645 TeletextContext *ctx = avctx->priv_data;
646 int ret = 0;
647
648 if (!ctx->vbi) {
649 if (!(ctx->vbi = vbi_decoder_new()))
650 return AVERROR(ENOMEM);
651 if (ctx->default_region != -1) {
652 av_log(avctx, AV_LOG_INFO, "Setting default zvbi region to %i\n", ctx->default_region);
653 vbi_teletext_set_default_region(ctx->vbi, ctx->default_region);
654 }
655 if (!vbi_event_handler_register(ctx->vbi, VBI_EVENT_TTX_PAGE, handler, ctx)) {
656 vbi_decoder_delete(ctx->vbi);
657 ctx->vbi = NULL;
658 return AVERROR(ENOMEM);
659 }
660 }
661
662 if (avctx->pkt_timebase.num && pkt->pts != AV_NOPTS_VALUE)
663 ctx->pts = av_rescale_q(pkt->pts, avctx->pkt_timebase, AV_TIME_BASE_Q);
664
665 if (pkt->size) {
666 int lines;
667 const int full_pes_size = pkt->size + 45; /* PES header is 45 bytes */
668
669 // We allow unreasonably big packets, even if the standard only allows a max size of 1472
670 if (full_pes_size < 184 || full_pes_size > 65504 || full_pes_size % 184 != 0)
671 return AVERROR_INVALIDDATA;
672
673 ctx->handler_ret = pkt->size;
674
676 if ((lines = slice_to_vbi_lines(ctx, pkt->data + 1, pkt->size - 1)) < 0)
677 return lines;
678 ff_dlog(avctx, "ctx=%p buf_size=%d lines=%u pkt_pts=%7.3f\n",
679 ctx, pkt->size, lines, (double)pkt->pts/90000.0);
680 if (lines > 0) {
681 vbi_decode(ctx->vbi, ctx->sliced, lines, 0.0);
682 ctx->lines_processed += lines;
683 }
684 }
685 ctx->pts = AV_NOPTS_VALUE;
686 ret = ctx->handler_ret;
687 }
688
689 if (ret < 0)
690 return ret;
691
692 // is there a subtitle to pass?
693 if (ctx->nb_pages) {
694 int i;
695 sub->format = !!ctx->format_id;
696 sub->start_display_time = 0;
697 sub->end_display_time = ctx->sub_duration;
698 sub->num_rects = 0;
699 sub->pts = ctx->pages->pts;
700
701 if (ctx->pages->sub_rect->type != SUBTITLE_NONE) {
702 sub->rects = av_malloc(sizeof(*sub->rects));
703 if (sub->rects) {
704 sub->num_rects = 1;
705 sub->rects[0] = ctx->pages->sub_rect;
706 } else {
707 ret = AVERROR(ENOMEM);
708 }
709 } else {
710 av_log(avctx, AV_LOG_DEBUG, "sending empty sub\n");
711 sub->rects = NULL;
712 }
713 if (!sub->rects) // no rect was passed
714 subtitle_rect_free(&ctx->pages->sub_rect);
715
716 for (i = 0; i < ctx->nb_pages - 1; i++)
717 ctx->pages[i] = ctx->pages[i + 1];
718 ctx->nb_pages--;
719
720 if (ret >= 0)
721 *got_sub_ptr = 1;
722 } else
723 *got_sub_ptr = 0;
724
725 return ret;
726}
727
729{
730 TeletextContext *ctx = avctx->priv_data;
731 unsigned int maj, min, rev;
732
733 vbi_version(&maj, &min, &rev);
734 if (!(maj > 0 || min > 2 || min == 2 && rev >= 26)) {
735 av_log(avctx, AV_LOG_ERROR, "decoder needs zvbi version >= 0.2.26.\n");
736 return AVERROR_EXTERNAL;
737 }
738
739 if (ctx->format_id == 0) {
740 avctx->width = 41 * BITMAP_CHAR_WIDTH;
741 avctx->height = 25 * BITMAP_CHAR_HEIGHT;
742 }
743
744 ctx->vbi = NULL;
745 ctx->pts = AV_NOPTS_VALUE;
746 ctx->last_pgno = -1;
747 ctx->last_ass_alignment = 2;
748
749 if (ctx->opacity == -1)
750 ctx->opacity = ctx->transparent_bg ? 0 : 255;
751
752 av_log(avctx, AV_LOG_VERBOSE, "page filter: %s\n", ctx->pgno);
753
754 switch (ctx->format_id) {
755 case 0:
756 return 0;
757 case 1:
758 return ff_ass_subtitle_header_default(avctx);
759 case 2:
760 return my_ass_subtitle_header(avctx);
761 }
762 return AVERROR_BUG;
763}
764
766{
767 TeletextContext *ctx = avctx->priv_data;
768
769 ff_dlog(avctx, "lines_total=%u\n", ctx->lines_processed);
770 while (ctx->nb_pages)
771 subtitle_rect_free(&ctx->pages[--ctx->nb_pages].sub_rect);
772 av_freep(&ctx->pages);
773
774 vbi_decoder_delete(ctx->vbi);
775 ctx->vbi = NULL;
776 ctx->pts = AV_NOPTS_VALUE;
777 ctx->last_pgno = -1;
778 ctx->last_ass_alignment = 2;
779 memset(ctx->subtitle_map, 0, sizeof(ctx->subtitle_map));
780 if (!(avctx->flags2 & AV_CODEC_FLAG2_RO_FLUSH_NOOP))
781 ctx->readorder = 0;
782 return 0;
783}
784
786{
788}
789
790#define OFFSET(x) offsetof(TeletextContext, x)
791#define SD AV_OPT_FLAG_SUBTITLE_PARAM | AV_OPT_FLAG_DECODING_PARAM
792static const AVOption options[] = {
793 {"txt_page", "page numbers to decode, subtitle for subtitles, * for all", OFFSET(pgno), AV_OPT_TYPE_STRING, {.str = "*"}, 0, 0, SD},
794 {"txt_default_region", "default G0 character set used for decoding", OFFSET(default_region), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 87, SD},
795 {"txt_chop_top", "discards the top teletext line", OFFSET(chop_top), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, SD},
796 {"txt_format", "format of the subtitles (bitmap or text or ass)", OFFSET(format_id), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 2, SD, .unit = "txt_format"},
797 {"bitmap", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0}, 0, 0, SD, .unit = "txt_format"},
798 {"text", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0, SD, .unit = "txt_format"},
799 {"ass", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2}, 0, 0, SD, .unit = "txt_format"},
800 {"txt_left", "x offset of generated bitmaps", OFFSET(x_offset), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 65535, SD},
801 {"txt_top", "y offset of generated bitmaps", OFFSET(y_offset), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 65535, SD},
802 {"txt_chop_spaces", "chops leading and trailing spaces from text", OFFSET(chop_spaces), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, SD},
803 {"txt_duration", "display duration of teletext pages in msecs", OFFSET(sub_duration), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 86400000, SD},
804 {"txt_transparent", "force transparent background of the teletext", OFFSET(transparent_bg), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, SD},
805 {"txt_opacity", "set opacity of the transparent background", OFFSET(opacity), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 255, SD},
806 { NULL },
807};
808
809static const AVClass teletext_class = {
810 .class_name = "libzvbi_teletextdec",
811 .item_name = av_default_item_name,
812 .option = options,
813 .version = LIBAVUTIL_VERSION_INT,
814};
815
817 .p.name = "libzvbi_teletextdec",
818 CODEC_LONG_NAME("Libzvbi DVB teletext decoder"),
819 .p.type = AVMEDIA_TYPE_SUBTITLE,
821 .p.capabilities = AV_CODEC_CAP_DELAY,
822 .p.priv_class = &teletext_class,
823 .p.wrapper_name = "libzvbi",
824 .caps_internal = FF_CODEC_CAP_NOT_INIT_THREADSAFE,
825 .priv_data_size = sizeof(TeletextContext),
829 .flush = teletext_flush,
830};
const FFCodec ff_libzvbi_teletext_decoder
static FILE * out
static AVFormatContext * ctx
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
int ff_ass_subtitle_header_default(AVCodecContext *avctx)
Generate a suitable AVCodecContext.subtitle_header for SUBTITLE_ASS with default style.
Definition ass.c:98
char * ff_ass_get_dialog(int readorder, int layer, const char *style, const char *speaker, const char *text)
Craft an ASS dialog string.
Definition ass.c:111
void ff_ass_bprint_text_event(AVBPrint *buf, const char *p, int size, const char *linebreaks, int keep_ass_markup)
Escape a text subtitle using ASS syntax into an AVBPrint buffer.
Definition ass.c:173
Libavcodec external API header.
char * av_asprintf(const char *fmt,...)
Definition avstring.c:115
#define pixel
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition bprint.c:122
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition bprint.c:69
AVBPrint public header.
#define AV_BPRINT_SIZE_UNLIMITED
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
static int FUNC user_data(CodedBitstreamContext *ctx, RWContext *rw, MPEG2RawUserData *current)
#define SD
#define FF_CODEC_CAP_NOT_INIT_THREADSAFE
The codec is not known to be init-threadsafe (i.e.
#define CODEC_LONG_NAME(str)
#define FF_CODEC_DECODE_SUB_CB(func)
common internal and external API header
#define av_clip
Definition common.h:100
#define PUT_UTF8(val, tmp, PUT_BYTE)
Convert a 32-bit Unicode character to its UTF-8 encoded form (up to 4 bytes long).
Definition common.h:530
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition common.h:74
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
#define min(a, b)
#define MAX_SLICES
static AVPacket * pkt
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
static av_always_inline int ff_data_unit_id_is_teletext(int data_unit_id)
Definition dvbtxt.h:36
static av_always_inline int ff_data_identifier_is_teletext(int data_identifier)
Definition dvbtxt.h:28
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
Definition opt.h:275
#define AV_CODEC_FLAG2_RO_FLUSH_NOOP
Do not reset ASS ReadOrder field on flush (subtitles decoding)
Definition avcodec.h:376
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition codec.h:79
@ SUBTITLE_BITMAP
A bitmap, pict will be set.
Definition avcodec.h:2043
@ SUBTITLE_ASS
Formatted text, the ass field must be set by the decoder and is authoritative.
Definition avcodec.h:2055
@ SUBTITLE_NONE
Definition avcodec.h:2041
@ AV_CODEC_ID_DVB_TELETEXT
Definition codec_id.h:573
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
Definition bprint.h:218
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition bprint.c:235
void av_bprint_append_data(AVBPrint *buf, const char *data, unsigned size)
Append data to a print buffer.
Definition bprint.c:148
void av_bprint_chars(AVBPrint *buf, char c, unsigned n)
Append char c n times to a print buffer.
Definition bprint.c:130
#define AVERROR_EXTERNAL
Generic error in an external library.
Definition error.h:59
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Definition error.h:52
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition log.h:231
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_VERBOSE
Detailed information.
Definition log.h:226
#define AV_LOG_INFO
Standard information.
Definition log.h:221
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
const char * av_default_item_name(void *ptr)
Return the context name.
Definition log.c:241
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
Definition mem.c:217
@ AVMEDIA_TYPE_SUBTITLE
Definition avutil.h:203
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition avutil.h:263
#define LIBAVUTIL_VERSION_INT
Definition version.h:85
int a
cl_device_type type
#define r
Definition input.c:42
#define b
Definition input.c:43
#define av_fallthrough
Definition attributes.h:67
common internal API header
static void fix_transparency(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top, int resx, int resy)
static int gen_sub_bitmap(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
static void teletext_flush(AVCodecContext *avctx)
#define MAX_BUFFERED_PAGES
static void get_trim_info(vbi_page *page, vbi_char *row, int *leading, int *trailing, int *olen)
static void decode_string(vbi_page *page, vbi_char *row, AVBPrint *buf, int start, int end, vbi_color *cur_color, vbi_color *cur_back_color)
static int gen_sub_ass(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
#define BITMAP_CHAR_WIDTH
static void bprint_color(const char *type, AVBPrint *buf, vbi_page *page, unsigned ci)
#define VBI_TRANSPARENT_BLACK
#define VBI_NB_COLORS
static void subtitle_rect_free(AVSubtitleRect **sub_rect)
static const AVClass teletext_class
static int slice_to_vbi_lines(TeletextContext *ctx, const uint8_t *buf, int size)
#define BITMAP_CHAR_HEIGHT
static int chop_spaces_utf8(const unsigned char *t, int len)
#define VBI_R(rgba)
#define VBI_B(rgba)
static int my_ass_subtitle_header(AVCodecContext *avctx)
static int teletext_close_decoder(AVCodecContext *avctx)
static int teletext_decode_frame(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, const AVPacket *pkt)
static int gen_sub_text(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
static int teletext_init_decoder(AVCodecContext *avctx)
#define TEXT_MAXSZ
#define RGBA(r, g, b, a)
#define IS_TXT_SPACE(ch)
#define OFFSET(x)
#define MAX_SLICES
#define VBI_A(rgba)
static void handler(vbi_event *ev, void *user_data)
static char * create_ass_text(TeletextContext *ctx, const char *text)
#define VBI_G(rgba)
#define FFMIN(a, b)
Definition macros.h:49
Memory handling functions.
#define av_malloc(s)
Definition ops_static.c:52
AVOptions.
#define AVPALETTE_SIZE
Definition pixfmt.h:32
#define snprintf
Definition snprintf.h:34
Describe the class of an AVClass context structure.
Definition log.h:76
main external API structure.
Definition avcodec.h:443
int subtitle_header_size
Header containing style information for text subtitles.
Definition avcodec.h:1743
int width
picture width / height.
Definition avcodec.h:604
int flags2
AV_CODEC_FLAG2_*.
Definition avcodec.h:507
AVRational pkt_timebase
Timebase in which pkt_dts/pts and AVPacket.dts/pts are expressed.
Definition avcodec.h:554
uint8_t * subtitle_header
Definition avcodec.h:1744
void * priv_data
Definition avcodec.h:470
AVOption.
Definition opt.h:428
This structure stores compressed data.
Definition packet.h:580
int num
Numerator.
Definition rational.h:59
int x
top left corner of pict, undefined when pict is not set
Definition avcodec.h:2061
char * ass
0 terminated ASS/SSA compatible event line.
Definition avcodec.h:2084
int w
width of pict, undefined when pict is not set
Definition avcodec.h:2063
int nb_colors
number of colors in pict, undefined when pict is not set
Definition avcodec.h:2065
uint8_t * data[4]
data+linesize for the bitmap of this subtitle.
Definition avcodec.h:2071
int y
top left corner of pict, undefined when pict is not set
Definition avcodec.h:2062
enum AVSubtitleType type
Definition avcodec.h:2075
int linesize[4]
Definition avcodec.h:2072
int h
height of pict, undefined when pict is not set
Definition avcodec.h:2064
uint16_t format
Definition avcodec.h:2088
uint32_t start_display_time
Definition avcodec.h:2089
uint32_t end_display_time
Definition avcodec.h:2090
unsigned num_rects
Definition avcodec.h:2091
AVSubtitleRect ** rects
Definition avcodec.h:2092
int64_t pts
Same as packet pts, in AV_TIME_BASE.
Definition avcodec.h:2093
uint8_t subtitle_map[2048]
TeletextPage * pages
vbi_sliced sliced[MAX_SLICES]
AVSubtitleRect * sub_rect
#define av_free(p)
#define av_mallocz(s)
#define ff_dlog(a,...)
#define av_freep(p)
#define av_log(a,...)
static uint8_t tmp[40]
Definition aes_ctr.c:52
int size
const char * g
Definition vf_curves.c:128
int len