FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
mpegvideo_parser.c File Reference
#include "parser.h"
#include "mpeg12.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  MpvParseContext
 

Functions

static void mpegvideo_extract_headers (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t *buf, int buf_size)
 
static int mpegvideo_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
 
static int mpegvideo_split (AVCodecContext *avctx, const uint8_t *buf, int buf_size)
 
static int mpegvideo_parse_init (AVCodecParserContext *s)
 

Variables

AVCodecParser ff_mpegvideo_parser
 

Function Documentation

static void mpegvideo_extract_headers ( AVCodecParserContext s,
AVCodecContext avctx,
const uint8_t buf,
int  buf_size 
)
static

Definition at line 35 of file mpegvideo_parser.c.

Referenced by mpegvideo_parse().

static int mpegvideo_parse ( AVCodecParserContext s,
AVCodecContext avctx,
const uint8_t **  poutbuf,
int *  poutbuf_size,
const uint8_t buf,
int  buf_size 
)
static

Definition at line 154 of file mpegvideo_parser.c.

static int mpegvideo_split ( AVCodecContext avctx,
const uint8_t buf,
int  buf_size 
)
static

Definition at line 187 of file mpegvideo_parser.c.

static int mpegvideo_parse_init ( AVCodecParserContext s)
static

Definition at line 204 of file mpegvideo_parser.c.

Variable Documentation

AVCodecParser ff_mpegvideo_parser
Initial value:
= {
.priv_data_size = sizeof(struct MpvParseContext),
.parser_init = mpegvideo_parse_init,
.parser_parse = mpegvideo_parse,
.parser_close = ff_parse_close,
.split = mpegvideo_split,
}

Definition at line 210 of file mpegvideo_parser.c.