#include "libavutil/intreadwrite.h"
#include "avcodec.h"
Go to the source code of this file.
Data Structures | |
struct | 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 | dvdsub_parser |
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.
Initial value:
{ { CODEC_ID_DVD_SUBTITLE }, sizeof(DVDSubParseContext), dvdsub_parse_init, dvdsub_parse, dvdsub_parse_close, }
Definition at line 79 of file dvdsub_parser.c.