38 #define IS_MARKER(state, i, buf, buf_size) \
39 ((state == DCA_SYNCWORD_CORE_14B_LE && (i < buf_size - 2) && (buf[i + 1] & 0xF0) == 0xF0 && buf[i + 2] == 0x07) || \
40 (state == DCA_SYNCWORD_CORE_14B_BE && (i < buf_size - 2) && buf[i + 1] == 0x07 && (buf[i + 2] & 0xF0) == 0xF0) || \
41 state == DCA_SYNCWORD_CORE_LE || state == DCA_SYNCWORD_CORE_BE || state == DCA_SYNCWORD_SUBSTREAM)
59 for (i = 0; i < buf_size; i++) {
60 state = (state << 8) | buf[i];
72 for (; i < buf_size; i++) {
74 state = (state << 8) | buf[i];
105 int ret, sample_blocks, sr_code;
116 sample_blocks =
get_bits(&gb, 7) + 1;
117 if (sample_blocks < 8)
119 *duration = 256 * (sample_blocks / 8);
128 if (*sample_rate == 0)
135 const uint8_t **poutbuf,
int *poutbuf_size,
162 *poutbuf_size = buf_size;
static av_cold int dca_parse_init(AVCodecParserContext *s)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
static void skip_bits_long(GetBitContext *s, int n)
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 duration
Duration of the current frame.
bitstream reader API header.
AVCodecParser ff_dca_parser
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
Combine the (truncated) bitstream to a complete frame.
#define PARSER_FLAG_COMPLETE_FRAMES
#define IS_MARKER(state, i, buf, buf_size)
void ff_parse_close(AVCodecParserContext *s)
#define FF_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
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.
const uint32_t avpriv_dca_sample_rates[16]
static int dca_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
int sample_rate
samples per second
main external API structure.
uint32_t state
contains the last few bytes in MSB order
static void skip_bits(GetBitContext *s, int n)
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
static int dca_parse_params(const uint8_t *buf, int buf_size, int *duration, int *sample_rate, int *framesize)