Go to the source code of this file.
Data Structures | |
struct | DVDSubParseContext |
Typedefs | |
typedef struct DVDSubParseContext | DVDSubParseContext |
Functions | |
static av_cold int | dvdsub_parse_init (AVCodecParserContext *s) |
static int | dvdsub_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) |
static av_cold void | dvdsub_parse_close (AVCodecParserContext *s) |
Variables | |
AVCodecParser | ff_dvdsub_parser |
typedef struct DVDSubParseContext DVDSubParseContext |
static int dvdsub_parse | ( | AVCodecParserContext * | s, |
AVCodecContext * | avctx, | ||
const uint8_t ** | poutbuf, | ||
int * | poutbuf_size, | ||
const uint8_t * | buf, | ||
int | buf_size | ||
) | [static] |
Definition at line 37 of file dvdsub_parser.c.
static av_cold void dvdsub_parse_close | ( | AVCodecParserContext * | s | ) | [static] |
Definition at line 73 of file dvdsub_parser.c.
static av_cold int dvdsub_parse_init | ( | AVCodecParserContext * | s | ) | [static] |
Definition at line 32 of file dvdsub_parser.c.
{ .codec_ids = { CODEC_ID_DVD_SUBTITLE }, .priv_data_size = sizeof(DVDSubParseContext), .parser_init = dvdsub_parse_init, .parser_parse = dvdsub_parse, .parser_close = dvdsub_parse_close, }
Definition at line 79 of file dvdsub_parser.c.