37 #define IS_CORE_MARKER(state) \ 
   38     (((state & 0xFFFFFFFFF0FF) == (((uint64_t)DCA_SYNCWORD_CORE_14B_LE << 16) | 0xF007)) || \ 
   39      ((state & 0xFFFFFFFFFFF0) == (((uint64_t)DCA_SYNCWORD_CORE_14B_BE << 16) | 0x07F0)) || \ 
   40      ((state & 0xFFFFFFFF00FC) == (((uint64_t)DCA_SYNCWORD_CORE_LE     << 16) | 0x00FC)) || \ 
   41      ((state & 0xFFFFFFFFFC00) == (((uint64_t)DCA_SYNCWORD_CORE_BE     << 16) | 0xFC00))) 
   43 #define IS_EXSS_MARKER(state)   ((state & 0xFFFFFFFF) == DCA_SYNCWORD_SUBSTREAM) 
   45 #define IS_MARKER(state)        (IS_CORE_MARKER(state) || IS_EXSS_MARKER(state)) 
   47 #define CORE_MARKER(state)      ((state >> 16) & 0xFFFFFFFF) 
   48 #define EXSS_MARKER(state)      (state & 0xFFFFFFFF) 
   66         for (i = 0; i < buf_size; i++) {
 
   67             state = (state << 8) | buf[i];
 
   84         for (; i < buf_size; i++) {
 
   86             state = (state << 8) | buf[i];
 
  117     int ret, sample_blocks, sr_code;
 
  128     sample_blocks = 
get_bits(&gb, 7) + 1;
 
  129     if (sample_blocks < 8)
 
  131     *duration = 256 * (sample_blocks / 8);
 
  140     if (*sample_rate == 0)
 
  147                      const uint8_t **poutbuf, 
int *poutbuf_size,
 
  174     *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. 
#define IS_EXSS_MARKER(state)
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
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]
#define EXSS_MARKER(state)
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. 
static void skip_bits(GetBitContext *s, int n)
uint64_t state64
contains the last 8 bytes in MSB order 
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext. 
#define CORE_MARKER(state)
static int dca_parse_params(const uint8_t *buf, int buf_size, int *duration, int *sample_rate, int *framesize)