FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
libzvbi-teletextdec.c File Reference
#include "avcodec.h"
#include "libavcodec/ass.h"
#include "libavutil/opt.h"
#include "libavutil/bprint.h"
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/log.h"
#include <libzvbi.h>

Go to the source code of this file.

Data Structures

struct  TeletextPage
 
struct  TeletextContext
 

Macros

#define TEXT_MAXSZ   (25 * (56 + 1) * 4 + 2)
 
#define VBI_NB_COLORS   40
 
#define VBI_TRANSPARENT_BLACK   8
 
#define RGBA(r, g, b, a)   (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
 
#define VBI_R(rgba)   (((rgba) >> 0) & 0xFF)
 
#define VBI_G(rgba)   (((rgba) >> 8) & 0xFF)
 
#define VBI_B(rgba)   (((rgba) >> 16) & 0xFF)
 
#define VBI_A(rgba)   (((rgba) >> 24) & 0xFF)
 
#define MAX_BUFFERED_PAGES   25
 
#define BITMAP_CHAR_WIDTH   12
 
#define BITMAP_CHAR_HEIGHT   10
 
#define MAX_SLICES   64
 
#define OFFSET(x)   offsetof(TeletextContext, x)
 
#define SD   AV_OPT_FLAG_SUBTITLE_PARAM | AV_OPT_FLAG_DECODING_PARAM
 

Functions

static int chop_spaces_utf8 (const unsigned char *t, int len)
 
static void subtitle_rect_free (AVSubtitleRect **sub_rect)
 
static int create_ass_text (TeletextContext *ctx, const char *text, char **ass)
 
static int gen_sub_text (TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi_page *page, int chop_top)
 
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 handler (vbi_event *ev, void *user_data)
 
static int data_identifier_is_teletext (int data_identifier)
 
static int slice_to_vbi_lines (TeletextContext *ctx, uint8_t *buf, int size)
 
static int teletext_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *pkt)
 
static int teletext_init_decoder (AVCodecContext *avctx)
 
static int teletext_close_decoder (AVCodecContext *avctx)
 
static void teletext_flush (AVCodecContext *avctx)
 

Variables

static const AVOption options []
 
static const AVClass teletext_class
 
AVCodec ff_libzvbi_teletext_decoder
 

Macro Definition Documentation

#define TEXT_MAXSZ   (25 * (56 + 1) * 4 + 2)

Definition at line 31 of file libzvbi-teletextdec.c.

Referenced by gen_sub_text().

#define VBI_NB_COLORS   40

Definition at line 32 of file libzvbi-teletextdec.c.

Referenced by fix_transparency(), and gen_sub_bitmap().

#define VBI_TRANSPARENT_BLACK   8

Definition at line 33 of file libzvbi-teletextdec.c.

Referenced by fix_transparency(), and gen_sub_bitmap().

#define RGBA (   r,
  g,
  b,
  a 
)    (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))

Definition at line 34 of file libzvbi-teletextdec.c.

Referenced by gen_sub_bitmap().

#define VBI_R (   rgba)    (((rgba) >> 0) & 0xFF)

Definition at line 35 of file libzvbi-teletextdec.c.

Referenced by gen_sub_bitmap().

#define VBI_G (   rgba)    (((rgba) >> 8) & 0xFF)

Definition at line 36 of file libzvbi-teletextdec.c.

Referenced by gen_sub_bitmap().

#define VBI_B (   rgba)    (((rgba) >> 16) & 0xFF)

Definition at line 37 of file libzvbi-teletextdec.c.

Referenced by gen_sub_bitmap().

#define VBI_A (   rgba)    (((rgba) >> 24) & 0xFF)

Definition at line 38 of file libzvbi-teletextdec.c.

Referenced by gen_sub_bitmap().

#define MAX_BUFFERED_PAGES   25

Definition at line 39 of file libzvbi-teletextdec.c.

Referenced by handler().

#define BITMAP_CHAR_WIDTH   12

Definition at line 40 of file libzvbi-teletextdec.c.

Referenced by fix_transparency(), gen_sub_bitmap(), and teletext_init_decoder().

#define BITMAP_CHAR_HEIGHT   10

Definition at line 41 of file libzvbi-teletextdec.c.

Referenced by fix_transparency(), gen_sub_bitmap(), and teletext_init_decoder().

#define MAX_SLICES   64

Definition at line 42 of file libzvbi-teletextdec.c.

Referenced by slice_to_vbi_lines().

#define OFFSET (   x)    offsetof(TeletextContext, x)

Definition at line 557 of file libzvbi-teletextdec.c.

Definition at line 558 of file libzvbi-teletextdec.c.

Function Documentation

static int chop_spaces_utf8 ( const unsigned char *  t,
int  len 
)
static

Definition at line 78 of file libzvbi-teletextdec.c.

Referenced by gen_sub_text().

static void subtitle_rect_free ( AVSubtitleRect **  sub_rect)
static

Definition at line 89 of file libzvbi-teletextdec.c.

Referenced by teletext_close_decoder(), and teletext_decode_frame().

static int create_ass_text ( TeletextContext ctx,
const char *  text,
char **  ass 
)
static

Definition at line 97 of file libzvbi-teletextdec.c.

Referenced by gen_sub_text().

static int gen_sub_text ( TeletextContext ctx,
AVSubtitleRect sub_rect,
vbi_page *  page,
int  chop_top 
)
static

Definition at line 131 of file libzvbi-teletextdec.c.

Referenced by handler().

static void fix_transparency ( TeletextContext ctx,
AVSubtitleRect sub_rect,
vbi_page *  page,
int  chop_top,
int  resx,
int  resy 
)
static

Definition at line 197 of file libzvbi-teletextdec.c.

Referenced by gen_sub_bitmap().

static int gen_sub_bitmap ( TeletextContext ctx,
AVSubtitleRect sub_rect,
vbi_page *  page,
int  chop_top 
)
static

Definition at line 236 of file libzvbi-teletextdec.c.

Referenced by handler().

static void handler ( vbi_event *  ev,
void user_data 
)
static
static int data_identifier_is_teletext ( int  data_identifier)
inlinestatic

Definition at line 371 of file libzvbi-teletextdec.c.

Referenced by teletext_decode_frame().

static int slice_to_vbi_lines ( TeletextContext ctx,
uint8_t buf,
int  size 
)
static

Definition at line 377 of file libzvbi-teletextdec.c.

Referenced by teletext_decode_frame().

static int teletext_decode_frame ( AVCodecContext avctx,
void data,
int *  data_size,
AVPacket pkt 
)
static

Definition at line 407 of file libzvbi-teletextdec.c.

static int teletext_init_decoder ( AVCodecContext avctx)
static

Definition at line 505 of file libzvbi-teletextdec.c.

static int teletext_close_decoder ( AVCodecContext avctx)
static

Definition at line 537 of file libzvbi-teletextdec.c.

Referenced by teletext_flush().

static void teletext_flush ( AVCodecContext avctx)
static

Definition at line 552 of file libzvbi-teletextdec.c.

Variable Documentation

const AVOption options[]
static
Initial value:
= {
{"txt_page", "list of teletext page numbers to decode, * is all", OFFSET(pgno), AV_OPT_TYPE_STRING, {.str = "*"}, 0, 0, SD},
{"txt_chop_top", "discards the top teletext line", OFFSET(chop_top), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, SD},
{"txt_format", "format of the subtitles (bitmap or text)", OFFSET(format_id), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, SD, "txt_format"},
{"bitmap", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0}, 0, 0, SD, "txt_format"},
{"text", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1}, 0, 0, SD, "txt_format"},
{"txt_left", "x offset of generated bitmaps", OFFSET(x_offset), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 65535, SD},
{"txt_top", "y offset of generated bitmaps", OFFSET(y_offset), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 65535, SD},
{"txt_chop_spaces", "chops leading and trailing spaces from text", OFFSET(chop_spaces), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, SD},
{"txt_duration", "display duration of teletext pages in msecs", OFFSET(sub_duration), AV_OPT_TYPE_INT, {.i64 = 30000}, 0, 86400000, SD},
{"txt_transparent", "force transparent background of the teletext", OFFSET(transparent_bg), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, SD},
{"txt_opacity", "set opacity of the transparent background", OFFSET(opacity), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 255, SD},
{ NULL },
}
#define NULL
Definition: coverity.c:32
#define OFFSET(x)
#define SD

Definition at line 559 of file libzvbi-teletextdec.c.

const AVClass teletext_class
static
Initial value:
= {
.class_name = "libzvbi_teletextdec",
.item_name = av_default_item_name,
.option = options,
}
#define LIBAVUTIL_VERSION_INT
Definition: version.h:70
av_default_item_name
static const AVOption options[]

Definition at line 574 of file libzvbi-teletextdec.c.

AVCodec ff_libzvbi_teletext_decoder
Initial value:
= {
.name = "libzvbi_teletextdec",
.long_name = NULL_IF_CONFIG_SMALL("Libzvbi DVB teletext decoder"),
.priv_data_size = sizeof(TeletextContext),
.capabilities = AV_CODEC_CAP_DELAY,
.priv_class= &teletext_class,
}
static void flush(AVCodecContext *avctx)
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
#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: avcodec.h:881
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static void teletext_flush(AVCodecContext *avctx)
static int teletext_close_decoder(AVCodecContext *avctx)
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
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:572

Definition at line 581 of file libzvbi-teletextdec.c.