#include "libavutil/intreadwrite.h"
#include "parser.h"
Go to the source code of this file.
Data Structures | |
struct | DiracParseContext |
Find the end of the current frame in the bitstream. More... | |
struct | DiracParseUnit |
Defines | |
#define | DIRAC_PARSE_INFO_PREFIX 0x42424344 |
Functions | |
static int | find_frame_end (DiracParseContext *pc, const uint8_t *buf, int buf_size) |
static int | unpack_parse_unit (DiracParseUnit *pu, DiracParseContext *pc, int offset) |
static int | dirac_combine_frame (AVCodecParserContext *s, AVCodecContext *avctx, int next, const uint8_t **buf, int *buf_size) |
static int | dirac_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) |
static void | dirac_parse_close (AVCodecParserContext *s) |
Variables | |
AVCodecParser | ff_dirac_parser |
Definition in file dirac_parser.c.
#define DIRAC_PARSE_INFO_PREFIX 0x42424344 |
static int dirac_combine_frame | ( | AVCodecParserContext * | s, | |
AVCodecContext * | avctx, | |||
int | next, | |||
const uint8_t ** | buf, | |||
int * | buf_size | |||
) | [static] |
static int dirac_parse | ( | AVCodecParserContext * | s, | |
AVCodecContext * | avctx, | |||
const uint8_t ** | poutbuf, | |||
int * | poutbuf_size, | |||
const uint8_t * | buf, | |||
int | buf_size | |||
) | [static] |
static void dirac_parse_close | ( | AVCodecParserContext * | s | ) | [static] |
Definition at line 242 of file dirac_parser.c.
static int find_frame_end | ( | DiracParseContext * | pc, | |
const uint8_t * | buf, | |||
int | buf_size | |||
) | [static] |
static int unpack_parse_unit | ( | DiracParseUnit * | pu, | |
DiracParseContext * | pc, | |||
int | offset | |||
) | [static] |
Initial value:
{ { CODEC_ID_DIRAC }, sizeof(DiracParseContext), NULL, dirac_parse, dirac_parse_close, }
Definition at line 250 of file dirac_parser.c.