|
FFmpeg
|
#include "dca.h"#include "dca_core.h"#include "dca_exss.h"#include "dca_lbr.h"#include "dca_syncwords.h"#include "get_bits.h"#include "parser.h"#include "parser_internal.h"Go to the source code of this file.
Data Structures | |
| struct | DCAParseContext |
Macros | |
| #define | IS_CORE_MARKER(state) |
| #define | IS_EXSS_MARKER(state) |
| #define | IS_MARKER(state) |
| #define | CORE_MARKER(state) |
| #define | EXSS_MARKER(state) |
| #define | STATE_LE(state) |
| #define | STATE_14(state) |
| #define | CORE_FRAMESIZE(state) |
| #define | EXSS_FRAMESIZE(state) |
Functions | |
| static int | dca_find_frame_end (DCAParseContext *pc1, const uint8_t *buf, int buf_size) |
| Find the end of the current frame in the bitstream. | |
| static av_cold int | dca_parse_init (AVCodecParserContext *s) |
| static int | dca_parse_params (DCAParseContext *pc1, const uint8_t *buf, int buf_size, int *duration, int *sample_rate, int *profile) |
| static int | dca_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) |
Variables | |
| const FFCodecParser | ff_dca_parser |
| #define IS_CORE_MARKER | ( | state | ) |
Definition at line 44 of file dca_parser.c.
| #define IS_EXSS_MARKER | ( | state | ) |
Definition at line 50 of file dca_parser.c.
Referenced by dca_find_frame_end().
| #define IS_MARKER | ( | state | ) |
Definition at line 52 of file dca_parser.c.
Referenced by d3d12va_vc1_decode_slice(), dca_find_frame_end(), dxva2_vc1_decode_slice(), extract_extradata_vc1(), vaapi_vc1_decode_slice(), vc1_decode_frame(), and vc1_split().
| #define CORE_MARKER | ( | state | ) |
Definition at line 54 of file dca_parser.c.
Referenced by dca_find_frame_end().
| #define EXSS_MARKER | ( | state | ) |
Definition at line 55 of file dca_parser.c.
Referenced by dca_find_frame_end().
| #define STATE_LE | ( | state | ) |
Definition at line 57 of file dca_parser.c.
Referenced by dca_find_frame_end().
| #define STATE_14 | ( | state | ) |
Definition at line 58 of file dca_parser.c.
Referenced by dca_find_frame_end().
| #define CORE_FRAMESIZE | ( | state | ) |
Definition at line 60 of file dca_parser.c.
Referenced by dca_find_frame_end().
| #define EXSS_FRAMESIZE | ( | state | ) |
Definition at line 61 of file dca_parser.c.
Referenced by dca_find_frame_end().
|
static |
Find the end of the current frame in the bitstream.
Definition at line 69 of file dca_parser.c.
Referenced by dca_parse().
|
static |
Definition at line 185 of file dca_parser.c.
|
static |
Definition at line 194 of file dca_parser.c.
Referenced by dca_parse().
|
static |
Definition at line 308 of file dca_parser.c.
| const FFCodecParser ff_dca_parser |
Definition at line 348 of file dca_parser.c.