FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
dnxhd_parser.c File Reference

DNxHD/VC-3 parser. More...

#include "parser.h"
#include "dnxhddata.h"

Go to the source code of this file.

Data Structures

struct  DNXHDParserContext
 

Functions

static int dnxhd_find_frame_end (DNXHDParserContext *dctx, const uint8_t *buf, int buf_size)
 
static int dnxhd_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
 

Variables

AVCodecParser ff_dnxhd_parser
 

Detailed Description

DNxHD/VC-3 parser.

Definition in file dnxhd_parser.c.

Function Documentation

static int dnxhd_find_frame_end ( DNXHDParserContext dctx,
const uint8_t buf,
int  buf_size 
)
static

Definition at line 36 of file dnxhd_parser.c.

Referenced by dnxhd_parse().

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

Definition at line 86 of file dnxhd_parser.c.

Variable Documentation

AVCodecParser ff_dnxhd_parser
Initial value:
= {
.codec_ids = { AV_CODEC_ID_DNXHD },
.priv_data_size = sizeof(DNXHDParserContext),
.parser_parse = dnxhd_parse,
.parser_close = ff_parse_close,
}
static int dnxhd_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition: dnxhd_parser.c:86
void ff_parse_close(AVCodecParserContext *s)
Definition: parser.c:326

Definition at line 110 of file dnxhd_parser.c.