#include "avcodec.h"
#include "dsputil.h"
#include "get_bits.h"
Go to the source code of this file.
Data Structures | |
struct | DVBSubParseContext |
Defines | |
#define | PARSE_BUF_SIZE (65536) |
Functions | |
static av_cold int | dvbsub_parse_init (AVCodecParserContext *s) |
static int | dvbsub_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) |
static av_cold void | dvbsub_parse_close (AVCodecParserContext *s) |
Variables | |
AVCodecParser | ff_dvbsub_parser |
#define PARSE_BUF_SIZE (65536) |
Definition at line 27 of file dvbsub_parser.c.
Referenced by dvbsub_parse(), and dvbsub_parse_init().
static int dvbsub_parse | ( | AVCodecParserContext * | s, | |
AVCodecContext * | avctx, | |||
const uint8_t ** | poutbuf, | |||
int * | poutbuf_size, | |||
const uint8_t * | buf, | |||
int | buf_size | |||
) | [static] |
Definition at line 46 of file dvbsub_parser.c.
static av_cold void dvbsub_parse_close | ( | AVCodecParserContext * | s | ) | [static] |
Definition at line 168 of file dvbsub_parser.c.
static av_cold int dvbsub_parse_init | ( | AVCodecParserContext * | s | ) | [static] |
Definition at line 38 of file dvbsub_parser.c.
Initial value:
{ .codec_ids = { CODEC_ID_DVB_SUBTITLE }, .priv_data_size = sizeof(DVBSubParseContext), .parser_init = dvbsub_parse_init, .parser_parse = dvbsub_parse, .parser_close = dvbsub_parse_close, }
Definition at line 174 of file dvbsub_parser.c.