Go to the documentation of this file.
43 #define IS_CORE_MARKER(state) \
44 (((state & 0xFFFFFFFFF0FF) == (((uint64_t)DCA_SYNCWORD_CORE_14B_LE << 16) | 0xF007)) || \
45 ((state & 0xFFFFFFFFFFF0) == (((uint64_t)DCA_SYNCWORD_CORE_14B_BE << 16) | 0x07F0)) || \
46 ((state & 0xFFFFFFFF00FC) == (((uint64_t)DCA_SYNCWORD_CORE_LE << 16) | 0x00FC)) || \
47 ((state & 0xFFFFFFFFFC00) == (((uint64_t)DCA_SYNCWORD_CORE_BE << 16) | 0xFC00)))
49 #define IS_EXSS_MARKER(state) ((state & 0xFFFFFFFF) == DCA_SYNCWORD_SUBSTREAM)
51 #define IS_MARKER(state) (IS_CORE_MARKER(state) || IS_EXSS_MARKER(state))
53 #define CORE_MARKER(state) ((state >> 16) & 0xFFFFFFFF)
54 #define EXSS_MARKER(state) (state & 0xFFFFFFFF)
56 #define STATE_LE(state) (((state & 0xFF00FF00) >> 8) | ((state & 0x00FF00FF) << 8))
57 #define STATE_14(state) (((state & 0x3FFF0000) >> 8) | ((state & 0x00003FFF) >> 6))
59 #define CORE_FRAMESIZE(state) (((state >> 4) & 0x3FFF) + 1)
60 #define EXSS_FRAMESIZE(state) ((state & 0x2000000000) ? \
61 ((state >> 5) & 0xFFFFF) + 1 : \
62 ((state >> 13) & 0x0FFFF) + 1)
71 int start_found,
size,
i;
81 for (;
i < buf_size;
i++) {
107 for (;
i < buf_size;
i++) {
111 if (start_found == 1) {
156 if (start_found == 3) {
251 if (nsamples_log2 > 24)
275 if (
h.ext_audio_present) {
276 switch (
h.ext_audio_type) {
307 const uint8_t **poutbuf,
int *poutbuf_size,
308 const uint8_t *buf,
int buf_size)
342 *poutbuf_size = buf_size;
static void skip_bits_long(GetBitContext *s, int n)
Skips the specified number of bits.
int sample_rate
samples per second
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
#define DCA_SYNCWORD_CORE_14B_BE
void ff_parse_close(AVCodecParserContext *s)
int xll_size
Size of XLL data in extension substream.
static void skip_bits(GetBitContext *s, int n)
int lbr_offset
Offset to LBR component from start of substream.
#define CORE_MARKER(state)
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
int avpriv_dca_convert_bitstream(const uint8_t *src, int src_size, uint8_t *dst, int max_size)
Convert bitstream to one representation based on sync marker.
#define FF_PROFILE_DTS_HD_HRA
AVCodecParser ff_dca_parser
#define IS_EXSS_MARKER(state)
#define FF_ARRAY_ELEMS(a)
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
static int dca_parse_params(DCAParseContext *pc1, const uint8_t *buf, int buf_size, int *duration, int *sample_rate, int *profile)
#define FF_PROFILE_UNKNOWN
#define av_assert0(cond)
assert() equivalent, that is always enabled.
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.
int lbr_size
Size of LBR component in extension substream.
#define EXSS_MARKER(state)
#define FF_PROFILE_DTS_ES
int xll_offset
Offset to XLL data from start of substream.
@ DCA_LBR_HEADER_SYNC_ONLY
#define DCA_SYNCWORD_CORE_BE
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
#define DCA_SYNCWORD_CORE_14B_LE
int max_sample_rate
Maximum sample rate.
@ DCA_LBR_HEADER_DECODER_INIT
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
Combine the (truncated) bitstream to a complete frame.
int ff_dca_exss_parse(DCAExssParser *s, const uint8_t *data, int size)
#define PARSER_FLAG_COMPLETE_FRAMES
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
#define DCA_SYNCWORD_SUBSTREAM
DCAExssAsset assets[1]
Audio asset descriptors.
static int dca_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
#define DCA_PCMBLOCK_SAMPLES
#define DCA_CORE_FRAME_HEADER_SIZE
#define FF_PROFILE_DTS_96_24
#define AV_INPUT_BUFFER_PADDING_SIZE
main external API structure.
const uint32_t ff_dca_sampling_freqs[16]
uint64_t state64
contains the last 8 bytes in MSB order
#define DCA_SYNCWORD_CORE_LE
int avpriv_dca_parse_core_frame_header(DCACoreFrameHeader *h, const uint8_t *buf, int size)
Parse and validate core frame header.
const uint8_t ff_dca_freq_ranges[16]
#define FF_PROFILE_DTS_HD_MA
int extension_mask
Coding components used in asset.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define EXSS_FRAMESIZE(state)
static av_cold int dca_parse_init(AVCodecParserContext *s)
const uint32_t avpriv_dca_sample_rates[16]
#define CORE_FRAMESIZE(state)
#define FF_PROFILE_DTS_EXPRESS