|
FFmpeg
|
#include "avcodec.h"#include "libavcodec/ass.h"#include "libavutil/opt.h"#include "libavutil/bprint.h"#include "libavutil/intreadwrite.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 | 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 | 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, uint8_t transparent_color, 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 | 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 |
| #define TEXT_MAXSZ (25 * (56 + 1) * 4 + 2) |
Definition at line 29 of file libzvbi-teletextdec.c.
Referenced by gen_sub_text().
| #define VBI_NB_COLORS 40 |
Definition at line 30 of file libzvbi-teletextdec.c.
Referenced by gen_sub_bitmap().
Definition at line 31 of file libzvbi-teletextdec.c.
Referenced by gen_sub_bitmap().
| #define VBI_R | ( | rgba | ) | (((rgba) >> 0) & 0xFF) |
Definition at line 32 of file libzvbi-teletextdec.c.
Referenced by gen_sub_bitmap().
| #define VBI_G | ( | rgba | ) | (((rgba) >> 8) & 0xFF) |
Definition at line 33 of file libzvbi-teletextdec.c.
Referenced by gen_sub_bitmap().
| #define VBI_B | ( | rgba | ) | (((rgba) >> 16) & 0xFF) |
Definition at line 34 of file libzvbi-teletextdec.c.
Referenced by gen_sub_bitmap().
| #define VBI_A | ( | rgba | ) | (((rgba) >> 24) & 0xFF) |
Definition at line 35 of file libzvbi-teletextdec.c.
Referenced by gen_sub_bitmap().
| #define MAX_BUFFERED_PAGES 25 |
Definition at line 36 of file libzvbi-teletextdec.c.
Referenced by handler().
| #define BITMAP_CHAR_WIDTH 12 |
Definition at line 37 of file libzvbi-teletextdec.c.
Referenced by fix_transparency(), gen_sub_bitmap(), and teletext_init_decoder().
| #define BITMAP_CHAR_HEIGHT 10 |
Definition at line 38 of file libzvbi-teletextdec.c.
Referenced by fix_transparency(), gen_sub_bitmap(), and teletext_init_decoder().
| #define OFFSET | ( | x | ) | offsetof(TeletextContext, x) |
Definition at line 520 of file libzvbi-teletextdec.c.
| #define SD AV_OPT_FLAG_SUBTITLE_PARAM | AV_OPT_FLAG_DECODING_PARAM |
Definition at line 521 of file libzvbi-teletextdec.c.
|
static |
Definition at line 74 of file libzvbi-teletextdec.c.
Referenced by gen_sub_text().
|
static |
Definition at line 85 of file libzvbi-teletextdec.c.
Referenced by teletext_close_decoder(), and teletext_decode_frame().
|
static |
Definition at line 93 of file libzvbi-teletextdec.c.
Referenced by gen_sub_text().
|
static |
Definition at line 126 of file libzvbi-teletextdec.c.
Referenced by handler().
|
static |
Definition at line 192 of file libzvbi-teletextdec.c.
Referenced by gen_sub_bitmap().
|
static |
Definition at line 224 of file libzvbi-teletextdec.c.
Referenced by handler().
Definition at line 285 of file libzvbi-teletextdec.c.
Referenced by avi_read_header(), ff_register_dynamic_payload_handler(), ff_rtp_handler_find_by_id(), ff_rtp_handler_find_by_name(), ff_rtp_parse_set_dynamic_protocol(), and teletext_decode_frame().
|
static |
Definition at line 363 of file libzvbi-teletextdec.c.
|
static |
Definition at line 466 of file libzvbi-teletextdec.c.
|
static |
Definition at line 496 of file libzvbi-teletextdec.c.
Referenced by teletext_flush().
|
static |
Definition at line 515 of file libzvbi-teletextdec.c.
|
static |
Definition at line 522 of file libzvbi-teletextdec.c.
|
static |
Definition at line 536 of file libzvbi-teletextdec.c.
| AVCodec ff_libzvbi_teletext_decoder |
Definition at line 543 of file libzvbi-teletextdec.c.
1.8.2