33 #define TEXT_MAXSZ (25 * (56 + 1) * 4 + 2)
34 #define VBI_NB_COLORS 40
35 #define VBI_TRANSPARENT_BLACK 8
36 #define RGBA(r,g,b,a) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
37 #define VBI_R(rgba) (((rgba) >> 0) & 0xFF)
38 #define VBI_G(rgba) (((rgba) >> 8) & 0xFF)
39 #define VBI_B(rgba) (((rgba) >> 16) & 0xFF)
40 #define VBI_A(rgba) (((rgba) >> 24) & 0xFF)
41 #define MAX_BUFFERED_PAGES 25
42 #define BITMAP_CHAR_WIDTH 12
43 #define BITMAP_CHAR_HEIGHT 10
101 "&Hffffff,&Hffffff,&H0,&H0,"
111 "&Hffffff,&Hffffff,&H0,&H0,"
133 if (*--t !=
' ' || (len-1 > 0 && *(t-1) & 0x80))
175 sz = vbi_print_page_region(page, vbi_text,
TEXT_MAXSZ-1,
"UTF-8",
178 page->columns, page->rows-chop_top);
193 in += strspn(in,
" \n");
195 for (nl = 0; in[nl]; ++nl)
196 if (in[nl] ==
'\n' && (nl==0 || !(in[nl-1] & 0x80)))
220 if (!sub_rect->
ass) {
234 int r =
VBI_R(page->color_map[ci]);
235 int g =
VBI_G(page->color_map[ci]);
236 int b =
VBI_B(page->color_map[ci]);
237 av_bprintf(buf,
"{\\%s&H%02X%02X%02X&}", type, b, g, r);
240 #define IS_TXT_SPACE(ch) ((ch).unicode < 0x0020 || (ch).unicode >= 0xe000 || (ch).unicode == 0x00a0 ||\
241 (ch).size > VBI_DOUBLE_SIZE || (ch).opacity == VBI_TRANSPARENT_SPACE)
243 static void get_trim_info(vbi_page *page, vbi_char *row,
int *leading,
int *trailing,
int *olen)
250 for (i = 0; i < page->columns; i++) {
253 if (out == 32 && !char_seen)
256 char_seen = 1, len = i - (*leading) + 1;
260 *trailing = len > 0 ? page->columns - *leading - len : page->columns;
264 int start,
int end, vbi_color *cur_color, vbi_color *cur_back_color)
268 for (i = start; i <
end; i++) {
271 if (*cur_color != row[i].foreground) {
273 *cur_color = row[i].foreground;
275 if (*cur_back_color != row[i].background) {
277 *cur_back_color = row[i].background;
282 }
else if (out ==
'\\' || out ==
'{' || out ==
'}') {
296 int leading, trailing,
len;
297 int last_trailing = -1, last_leading = -1;
298 int min_trailing = page->columns, min_leading = page->columns;
300 int vertical_align = -1;
301 int can_align_left = 1, can_align_right = 1, can_align_center = 1;
302 int is_subtitle_page = ctx->
subtitle_map[page->pgno & 0x7ff];
304 vbi_color cur_color = VBI_WHITE;
305 vbi_color cur_back_color = VBI_BLACK;
310 for (i = chop_top; i < page->rows; i++) {
311 vbi_char *row = page->text + i * page->columns;
316 if (last_leading != -1 && last_leading != leading || leading > 5)
318 if (last_trailing != -1 && last_trailing != trailing || trailing > 2)
320 if (last_trailing != -1 && (
FFABS((trailing - leading) - (last_trailing - last_leading)) > 1) || trailing - leading > 4)
321 can_align_center = 0;
322 last_leading = leading;
323 last_trailing = trailing;
324 min_leading =
FFMIN(leading, min_leading);
325 min_trailing =
FFMIN(trailing, min_trailing);
329 if (!can_align_right && can_align_left && !can_align_center) {
331 }
else if (!can_align_right && !can_align_left && can_align_center) {
333 }
else if (can_align_right && !can_align_left && !can_align_center) {
342 for (i = chop_top; i < page->rows; i++) {
344 vbi_char *row = page->text + i * page->columns;
345 int is_transparent_line;
347 for (j = 0; j < page->columns; j++)
348 if (row[j].opacity != VBI_TRANSPARENT_SPACE)
350 is_transparent_line = (j == page->columns);
352 len = is_transparent_line ? 0 : page->columns;
353 leading = trailing = is_transparent_line ? page->columns : 0;
355 if (is_subtitle_page) {
356 if (!is_transparent_line)
359 if (vertical_align == -1 && len) {
360 vertical_align = (2 - (av_clip(i + 1, 0, 23) / 8));
361 av_bprintf(&buf,
"{\\an%d}", alignment + vertical_align * 3);
362 if (vertical_align != 2)
366 if (len && empty_lines > 1)
367 for (empty_lines /= 2; empty_lines > 0; empty_lines--)
370 if (alignment == 1 || alignment == 2 && !can_align_center)
371 leading = min_leading;
372 if (alignment == 3 || alignment == 2 && !can_align_center)
373 trailing = min_trailing;
376 if (len || !is_subtitle_page) {
377 decode_string(page, row, &buf, leading, page->columns - trailing, &cur_color, &cur_back_color);
385 if (vertical_align == 0)
386 for (empty_lines = (empty_lines - 1) / 2; empty_lines > 0; empty_lines--)
398 if (!sub_rect->
ass) {
411 int chop_top,
int resx,
int resy)
416 for (iy = 0; iy < resy; iy++) {
419 vbi_char *vcnext = vc + page->columns;
420 for (; vc < vcnext; vc++) {
422 switch (vc->opacity) {
423 case VBI_TRANSPARENT_SPACE:
429 case VBI_SEMI_TRANSPARENT:
432 for(; pixel < pixelnext; pixel++)
433 if (*pixel == vc->background)
437 case VBI_TRANSPARENT_FULL:
438 for(; pixel < pixelnext; pixel++)
439 if (*pixel == vc->background)
454 vbi_char *vc = page->text + (chop_top * page->columns);
455 vbi_char *vcend = page->text + (page->rows * page->columns);
457 for (; vc < vcend; vc++) {
458 if (vc->opacity != VBI_TRANSPARENT_SPACE)
470 if (!sub_rect->
data[0])
473 vbi_draw_vt_page_region(page, VBI_PIXFMT_PAL8,
475 0, chop_top, page->columns, page->rows - chop_top,
485 if (!sub_rect->
data[1]) {
492 r =
VBI_R(page->color_map[ci]);
493 g =
VBI_G(page->color_map[ci]);
494 b =
VBI_B(page->color_map[ci]);
495 a =
VBI_A(page->color_map[ci]);
496 ((uint32_t *)sub_rect->
data[1])[ci] =
RGBA(r, g, b, a);
498 ff_dlog(ctx,
"palette %0x\n", ((uint32_t *)sub_rect->
data[1])[ci]);
514 int is_subtitle_page = ctx->
subtitle_map[ev->ev.ttx_page.pgno & 0x7ff];
516 snprintf(pgno_str,
sizeof pgno_str,
"%03x", ev->ev.ttx_page.pgno);
518 pgno_str, ev->ev.ttx_page.subno & 0xFF);
520 if (strcmp(ctx->
pgno,
"*") && (strcmp(ctx->
pgno,
"subtitle") || !is_subtitle_page) && !strstr(ctx->
pgno, pgno_str))
525 res = vbi_fetch_vt_page(ctx->
vbi, &page,
526 ev->ev.ttx_page.pgno,
527 ev->ev.ttx_page.subno,
528 VBI_WST_LEVEL_3p5, 25,
TRUE);
533 chop_top = ctx->
chop_top || ((page.rows > 1) && is_subtitle_page);
536 page.columns, page.rows, chop_top);
541 ctx->
pages = new_pages;
544 cur_page->
pgno = ev->ev.ttx_page.pgno;
545 cur_page->
subno = ev->ev.ttx_page.subno;
579 vbi_unref_page(&page);
586 int data_unit_id = buf[0];
587 int data_unit_length = buf[1];
588 if (data_unit_length + 2 > size)
591 if (data_unit_length != 0x2c)
594 int line_offset = buf[2] & 0x1f;
595 int field_parity = buf[2] & 0x20;
598 ctx->
sliced[lines].id = VBI_SLICED_TELETEXT_B;
599 ctx->
sliced[lines].line = (line_offset > 0 ? (line_offset + (field_parity ? 0 : 313)) : 0);
600 for (i = 0; i < 42; i++)
601 p[i] = vbi_rev8(buf[4 + i]);
605 pmag = vbi_unham16p(p);
606 if (pmag >= 0 && pmag >> 3 == 0) {
607 int page = vbi_unham16p(p + 2);
608 int flags1 = vbi_unham16p(p + 6);
609 int flags2 = vbi_unham16p(p + 8);
610 if (page >= 0 && flags1 >= 0 && flags2 >= 0) {
611 int pgno = ((pmag & 7) << 8) + page;
613 ctx->
subtitle_map[pgno] = (!(flags1 & 0x40) && flags1 & 0x80 && flags2 & 0x01);
616 int last_byte9 = vbi_unham8(ctx->
last_p5);
617 if (last_byte9 >= 0 && last_byte9 & 0x8) {
618 int byte9 = vbi_unham8(p[5]);
620 p[5] = vbi_ham8(byte9 | 0x8);
630 size -= data_unit_length + 2;
631 buf += data_unit_length + 2;
646 if (!(ctx->
vbi = vbi_decoder_new()))
648 if (!vbi_event_handler_register(ctx->
vbi, VBI_EVENT_TTX_PAGE,
handler, ctx)) {
649 vbi_decoder_delete(ctx->
vbi);
660 const int full_pes_size = pkt->
size + 45;
663 if (full_pes_size < 184 || full_pes_size > 65504 || full_pes_size % 184 != 0)
671 ff_dlog(avctx,
"ctx=%p buf_size=%d lines=%u pkt_pts=%7.3f\n",
672 ctx, pkt->
size, lines, (
double)pkt->
pts/90000.0);
674 vbi_decode(ctx->
vbi, ctx->
sliced, lines, 0.0);
701 for (j = 0; j < 4; j++) {
717 for (i = 0; i < ctx->
nb_pages - 1; i++)
732 unsigned int maj,
min, rev;
734 vbi_version(&maj, &min, &rev);
735 if (!(maj > 0 || min > 2 || min == 2 && rev >= 26)) {
775 vbi_decoder_delete(ctx->
vbi);
791 #define OFFSET(x) offsetof(TeletextContext, x)
792 #define SD AV_OPT_FLAG_SUBTITLE_PARAM | AV_OPT_FLAG_DECODING_PARAM
794 {
"txt_page",
"page numbers to decode, subtitle for subtitles, * for all",
OFFSET(pgno),
AV_OPT_TYPE_STRING, {.str =
"*"}, 0, 0,
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,
"txt_format"},
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},
817 .
name =
"libzvbi_teletextdec",
827 .priv_class= &teletext_class,
828 .wrapper_name =
"libzvbi",
static av_always_inline int ff_data_identifier_is_teletext(int data_identifier)
static void fix_transparency(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top, int resx, int resy)
static int gen_sub_text(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
void av_bprintf(AVBPrint *buf, const char *fmt,...)
static int my_ass_subtitle_header(AVCodecContext *avctx)
int x
top left corner of pict, undefined when pict is not set
ptrdiff_t const GLvoid * data
static void flush(AVCodecContext *avctx)
static av_always_inline int ff_data_unit_id_is_teletext(int data_unit_id)
#define AV_LOG_WARNING
Something somehow does not look correct.
#define LIBAVUTIL_VERSION_INT
static av_cold int init(AVCodecContext *avctx)
int nb_colors
number of colors in pict, undefined when pict is not set
static char * create_ass_text(TeletextContext *ctx, const char *text)
const char * av_default_item_name(void *ptr)
Return the context name.
vbi_sliced sliced[MAX_SLICES]
static int chop_spaces_utf8(const unsigned char *t, int len)
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)
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
#define PUT_UTF8(val, tmp, PUT_BYTE)
Convert a 32-bit Unicode character to its UTF-8 encoded form (up to 4 bytes long).
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
attribute_deprecated AVPicture pict
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
static int gen_sub_ass(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
static int slice_to_vbi_lines(TeletextContext *ctx, uint8_t *buf, int size)
int w
width of pict, undefined when pict is not set
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
static av_cold int end(AVCodecContext *avctx)
attribute_deprecated int linesize[AV_NUM_DATA_POINTERS]
number of bytes per line
int ff_ass_subtitle_header_default(AVCodecContext *avctx)
Generate a suitable AVCodecContext.subtitle_header for SUBTITLE_ASS with default style.
static void handler(vbi_event *ev, void *user_data)
void av_bprint_append_data(AVBPrint *buf, const char *data, unsigned size)
Append data to a print buffer.
#define BITMAP_CHAR_HEIGHT
#define AV_LOG_VERBOSE
Detailed information.
#define MAX_BUFFERED_PAGES
int h
height of pict, undefined when pict is not set
#define AV_CODEC_FLAG2_RO_FLUSH_NOOP
Do not reset ASS ReadOrder field on flush (subtitles decoding)
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
static void get_trim_info(vbi_page *page, vbi_char *row, int *leading, int *trailing, int *olen)
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
AVRational pkt_timebase
Timebase in which pkt_dts/pts and AVPacket.dts/pts are.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define AV_BPRINT_SIZE_UNLIMITED
char * ff_ass_get_dialog(int readorder, int layer, const char *style, const char *speaker, const char *text)
Craft an ASS dialog string.
int y
top left corner of pict, undefined when pict is not set
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
AVS_Value void * user_data
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
const char * name
Name of the codec implementation.
uint8_t subtitle_map[2048]
#define BITMAP_CHAR_WIDTH
uint32_t end_display_time
int64_t pts
Same as packet pts, in AV_TIME_BASE.
char * av_asprintf(const char *fmt,...)
AVCodec ff_libzvbi_teletext_decoder
common internal API header
A bitmap, pict will be set.
int width
picture width / height.
attribute_deprecated uint8_t * data[AV_NUM_DATA_POINTERS]
pointers to the image data planes
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
static void teletext_flush(AVCodecContext *avctx)
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
uint8_t * data[4]
data+linesize for the bitmap of this subtitle.
static int teletext_close_decoder(AVCodecContext *avctx)
static void bprint_color(const char *type, AVBPrint *buf, vbi_page *page, unsigned ci)
Libavcodec external API header.
#define VBI_TRANSPARENT_BLACK
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
static const AVOption options[]
main external API structure.
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Describe the class of an AVClass context structure.
static int teletext_init_decoder(AVCodecContext *avctx)
static int teletext_decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *pkt)
static const AVClass teletext_class
#define FF_DISABLE_DEPRECATION_WARNINGS
common internal and external API header
uint32_t start_display_time
static int gen_sub_bitmap(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
Formatted text, the ass field must be set by the decoder and is authoritative.
#define FF_ENABLE_DEPRECATION_WARNINGS
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.
char * ass
0 terminated ASS/SSA compatible event line.
int flags2
AV_CODEC_FLAG2_*.
static void subtitle_rect_free(AVSubtitleRect **sub_rect)
#define AVERROR_EXTERNAL
Generic error in an external library.
This structure stores compressed data.
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
AVSubtitleRect * sub_rect
#define AV_NOPTS_VALUE
Undefined timestamp value.
uint8_t * subtitle_header
Header containing style information for text subtitles.
void av_bprint_chars(AVBPrint *buf, char c, unsigned n)
Append char c n times to a print buffer.