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

Go to the source code of this file.

Data Structures

struct  SBCParseContext
 

Functions

static int sbc_parse_header (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t *data, size_t len)
 
static int sbc_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
 

Variables

AVCodecParser ff_sbc_parser
 

Function Documentation

static int sbc_parse_header ( AVCodecParserContext s,
AVCodecContext avctx,
const uint8_t data,
size_t  len 
)
static

Definition at line 33 of file sbc_parser.c.

Referenced by sbc_parse().

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

Definition at line 76 of file sbc_parser.c.

Variable Documentation

AVCodecParser ff_sbc_parser
Initial value:
= {
.codec_ids = { AV_CODEC_ID_SBC },
.priv_data_size = sizeof(SBCParseContext),
.parser_parse = sbc_parse,
.parser_close = ff_parse_close,
}
static int sbc_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition: sbc_parser.c:76
void ff_parse_close(AVCodecParserContext *s)
Definition: parser.c:312

Definition at line 117 of file sbc_parser.c.