#include "libavutil/common.h"
#include "libavutil/lfg.h"
#include "avcodec.h"
#include "cga_data.h"
Go to the source code of this file.
Data Structures | |
struct | AnsiContext |
Defines | |
#define | ATTR_BOLD 0x01 |
Bold/Bright-foreground (mode 1). | |
#define | ATTR_FAINT 0x02 |
Faint (mode 2). | |
#define | ATTR_UNDERLINE 0x08 |
Underline (mode 4). | |
#define | ATTR_BLINK 0x10 |
Blink/Bright-background (mode 5). | |
#define | ATTR_REVERSE 0x40 |
Reverse (mode 7). | |
#define | ATTR_CONCEALED 0x80 |
Concealed (mode 8). | |
#define | DEFAULT_FG_COLOR 7 |
CGA color index. | |
#define | DEFAULT_BG_COLOR 0 |
#define | DEFAULT_SCREEN_MODE 3 |
80x25 | |
#define | FONT_WIDTH 8 |
Font width. | |
#define | MAX_NB_ARGS 4 |
#define | COLOR(x) ((x) * 40 + 55) |
#define | GRAY(x) ((x) * 10 + 8) |
Functions | |
static av_cold int | decode_init (AVCodecContext *avctx) |
static void | set_palette (uint32_t *pal) |
static void | hscroll (AVCodecContext *avctx) |
static void | erase_line (AVCodecContext *avctx, int xoffset, int xlength) |
static void | erase_screen (AVCodecContext *avctx) |
static void | draw_char (AVCodecContext *avctx, int c) |
Draw character to screen. | |
static int | execute_code (AVCodecContext *avctx, int c) |
Execute ANSI escape code. | |
static int | decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
static av_cold int | decode_close (AVCodecContext *avctx) |
Variables | |
static const uint8_t | ansi_to_cga [16] |
map ansi color index to cga palette index | |
AVCodec | ff_ansi_decoder |
Definition in file ansi.c.
#define ATTR_BLINK 0x10 |
#define ATTR_BOLD 0x01 |
#define ATTR_CONCEALED 0x80 |
#define ATTR_REVERSE 0x40 |
#define COLOR | ( | x | ) | ((x) * 40 + 55) |
Referenced by avfilter_register_all(), ff_print_debug_info(), and set_palette().
#define DEFAULT_BG_COLOR 0 |
Definition at line 40 of file ansi.c.
Referenced by decode_init(), erase_line(), erase_screen(), execute_code(), and hscroll().
#define DEFAULT_FG_COLOR 7 |
CGA color index.
Definition at line 39 of file ansi.c.
Referenced by decode_init(), and execute_code().
#define DEFAULT_SCREEN_MODE 3 |
#define FONT_WIDTH 8 |
Font width.
Definition at line 43 of file ansi.c.
Referenced by decode_frame(), draw_char(), and execute_code().
#define GRAY | ( | x | ) | ((x) * 10 + 8) |
Referenced by set_palette().
#define MAX_NB_ARGS 4 |
static av_cold int decode_close | ( | AVCodecContext * | avctx | ) | [static] |
static int decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | data_size, | |||
AVPacket * | avpkt | |||
) | [static] |
static av_cold int decode_init | ( | AVCodecContext * | avctx | ) | [static] |
static void draw_char | ( | AVCodecContext * | avctx, | |
int | c | |||
) | [static] |
static void erase_line | ( | AVCodecContext * | avctx, | |
int | xoffset, | |||
int | xlength | |||
) | [static] |
static void erase_screen | ( | AVCodecContext * | avctx | ) | [static] |
static int execute_code | ( | AVCodecContext * | avctx, | |
int | c | |||
) | [static] |
Execute ANSI escape code.
Definition at line 176 of file ansi.c.
Referenced by decode_frame().
static void hscroll | ( | AVCodecContext * | avctx | ) | [static] |
static void set_palette | ( | uint32_t * | pal | ) | [static] |
Definition at line 93 of file ansi.c.
Referenced by bethsoftvid_decode_frame(), decode_frame(), and execute_code().
const uint8_t ansi_to_cga[16] [static] |
Initial value:
{ 0, 4, 2, 6, 1, 5, 3, 7, 8, 12, 10, 14, 9, 13, 11, 15 }
Definition at line 46 of file ansi.c.
Referenced by execute_code().
Initial value:
{ .name = "ansi", .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_ANSI, .priv_data_size = sizeof(AnsiContext), .init = decode_init, .close = decode_close, .decode = decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("ASCII/ANSI art"), }