#include "parser.h"
#include "dca.h"
Go to the source code of this file.
Data Structures | |
struct | DCAParseContext |
Defines | |
#define | IS_MARKER(state, i, buf, buf_size) |
Functions | |
static int | dca_find_frame_end (DCAParseContext *pc1, const uint8_t *buf, int buf_size) |
finds the end of the current frame in the bitstream. | |
static av_cold int | dca_parse_init (AVCodecParserContext *s) |
static int | dca_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) |
Variables | |
AVCodecParser | ff_dca_parser |
#define IS_MARKER | ( | state, | |||
i, | |||||
buf, | |||||
buf_size | ) |
Value:
((state == DCA_MARKER_14B_LE && (i < buf_size-2) && (buf[i+1] & 0xF0) == 0xF0 && buf[i+2] == 0x07) \ || (state == DCA_MARKER_14B_BE && (i < buf_size-2) && buf[i+1] == 0x07 && (buf[i+2] & 0xF0) == 0xF0) \ || state == DCA_MARKER_RAW_LE || state == DCA_MARKER_RAW_BE || state == DCA_HD_MARKER)
Definition at line 36 of file dca_parser.c.
Referenced by dca_find_frame_end(), decode_slice(), find_next_marker(), vaapi_vc1_decode_slice(), vc1_decode_frame(), vc1_find_frame_end(), and vc1_split().
static int dca_find_frame_end | ( | DCAParseContext * | pc1, | |
const uint8_t * | buf, | |||
int | buf_size | |||
) | [static] |
finds the end of the current frame in the bitstream.
Definition at line 45 of file dca_parser.c.
Referenced by dca_parse().
static int dca_parse | ( | AVCodecParserContext * | s, | |
AVCodecContext * | avctx, | |||
const uint8_t ** | poutbuf, | |||
int * | poutbuf_size, | |||
const uint8_t * | buf, | |||
int | buf_size | |||
) | [static] |
Definition at line 101 of file dca_parser.c.
static av_cold int dca_parse_init | ( | AVCodecParserContext * | s | ) | [static] |
Definition at line 93 of file dca_parser.c.
Initial value:
{ .codec_ids = { CODEC_ID_DTS }, .priv_data_size = sizeof(DCAParseContext), .parser_init = dca_parse_init, .parser_parse = dca_parse, .parser_close = ff_parse_close, }
Definition at line 126 of file dca_parser.c.