FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
dca_parser.c
Go to the documentation of this file.
1 /*
2  * DCA parser
3  * Copyright (C) 2004 Gildas Bazin
4  * Copyright (C) 2004 Benjamin Zores
5  * Copyright (C) 2006 Benjamin Larsson
6  * Copyright (C) 2007 Konstantin Shishkov
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with FFmpeg; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24 
25 #include "dca.h"
26 #include "dca_core.h"
27 #include "dca_exss.h"
28 #include "dca_lbr.h"
29 #include "dca_syncwords.h"
30 #include "get_bits.h"
31 #include "parser.h"
32 
33 typedef struct DCAParseContext {
35  uint32_t lastmarker;
36  int size;
37  int framesize;
38  unsigned int startpos;
40  unsigned int sr_code;
42 
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)))
48 
49 #define IS_EXSS_MARKER(state) ((state & 0xFFFFFFFF) == DCA_SYNCWORD_SUBSTREAM)
50 
51 #define IS_MARKER(state) (IS_CORE_MARKER(state) || IS_EXSS_MARKER(state))
52 
53 #define CORE_MARKER(state) ((state >> 16) & 0xFFFFFFFF)
54 #define EXSS_MARKER(state) (state & 0xFFFFFFFF)
55 
56 #define STATE_LE(state) (((state & 0xFF00FF00) >> 8) | ((state & 0x00FF00FF) << 8))
57 #define STATE_14(state) (((state & 0x3FFF0000) >> 8) | ((state & 0x00003FFF) >> 6))
58 
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)
63 
64 /**
65  * Find the end of the current frame in the bitstream.
66  * @return the position of the first byte of the next frame, or -1
67  */
69  int buf_size)
70 {
71  int start_found, size, i;
72  uint64_t state;
73  ParseContext *pc = &pc1->pc;
74 
75  start_found = pc->frame_start_found;
76  state = pc->state64;
77  size = pc1->size;
78 
79  i = 0;
80  if (!start_found) {
81  for (; i < buf_size; i++) {
82  size++;
83  state = (state << 8) | buf[i];
84 
85  if (IS_MARKER(state) &&
86  (!pc1->lastmarker ||
87  pc1->lastmarker == CORE_MARKER(state) ||
89  if (!pc1->lastmarker)
90  pc1->startpos = IS_EXSS_MARKER(state) ? size - 4 : size - 6;
91 
92  if (IS_EXSS_MARKER(state))
93  pc1->lastmarker = EXSS_MARKER(state);
94  else
95  pc1->lastmarker = CORE_MARKER(state);
96 
97  start_found = 1;
98  size = 0;
99 
100  i++;
101  break;
102  }
103  }
104  }
105 
106  if (start_found) {
107  for (; i < buf_size; i++) {
108  size++;
109  state = (state << 8) | buf[i];
110 
111  if (start_found == 1) {
112  switch (pc1->lastmarker) {
114  if (size == 2) {
115  pc1->framesize = CORE_FRAMESIZE(state);
116  start_found = 2;
117  }
118  break;
120  if (size == 2) {
121  pc1->framesize = CORE_FRAMESIZE(STATE_LE(state));
122  start_found = 4;
123  }
124  break;
126  if (size == 4) {
127  pc1->framesize = CORE_FRAMESIZE(STATE_14(state));
128  start_found = 4;
129  }
130  break;
132  if (size == 4) {
133  pc1->framesize = CORE_FRAMESIZE(STATE_14(STATE_LE(state)));
134  start_found = 4;
135  }
136  break;
138  if (size == 6) {
139  pc1->framesize = EXSS_FRAMESIZE(state);
140  start_found = 4;
141  }
142  break;
143  default:
144  av_assert0(0);
145  }
146  continue;
147  }
148 
149  if (start_found == 2 && IS_EXSS_MARKER(state) &&
150  pc1->framesize <= size + 2) {
151  pc1->framesize = size + 2;
152  start_found = 3;
153  continue;
154  }
155 
156  if (start_found == 3) {
157  if (size == pc1->framesize + 4) {
158  pc1->framesize += EXSS_FRAMESIZE(state);
159  start_found = 4;
160  }
161  continue;
162  }
163 
164  if (pc1->framesize > size)
165  continue;
166 
167  if (IS_MARKER(state) &&
168  (pc1->lastmarker == CORE_MARKER(state) ||
170  pc->frame_start_found = 0;
171  pc->state64 = -1;
172  pc1->size = 0;
173  return IS_EXSS_MARKER(state) ? i - 3 : i - 5;
174  }
175  }
176  }
177 
178  pc->frame_start_found = start_found;
179  pc->state64 = state;
180  pc1->size = size;
181  return END_NOT_FOUND;
182 }
183 
185 {
186  DCAParseContext *pc1 = s->priv_data;
187 
188  pc1->lastmarker = 0;
189  pc1->sr_code = -1;
190  return 0;
191 }
192 
193 static int dca_parse_params(DCAParseContext *pc1, const uint8_t *buf,
194  int buf_size, int *duration, int *sample_rate,
195  int *profile)
196 {
197  DCAExssAsset *asset = &pc1->exss.assets[0];
198  GetBitContext gb;
201  int ret, frame_size;
202 
203  if (buf_size < DCA_CORE_FRAME_HEADER_SIZE)
204  return AVERROR_INVALIDDATA;
205 
206  if (AV_RB32(buf) == DCA_SYNCWORD_SUBSTREAM) {
207  if ((ret = ff_dca_exss_parse(&pc1->exss, buf, buf_size)) < 0)
208  return ret;
209 
210  if (asset->extension_mask & DCA_EXSS_LBR) {
211  if ((ret = init_get_bits8(&gb, buf + asset->lbr_offset, asset->lbr_size)) < 0)
212  return ret;
213 
214  if (get_bits_long(&gb, 32) != DCA_SYNCWORD_LBR)
215  return AVERROR_INVALIDDATA;
216 
217  switch (get_bits(&gb, 8)) {
219  pc1->sr_code = get_bits(&gb, 8);
221  break;
222  default:
223  return AVERROR_INVALIDDATA;
224  }
225 
227  return AVERROR_INVALIDDATA;
228 
229  *sample_rate = ff_dca_sampling_freqs[pc1->sr_code];
230  *duration = 1024 << ff_dca_freq_ranges[pc1->sr_code];
231  *profile = FF_PROFILE_DTS_EXPRESS;
232  return 0;
233  }
234 
235  if (asset->extension_mask & DCA_EXSS_XLL) {
236  int nsamples_log2;
237 
238  if ((ret = init_get_bits8(&gb, buf + asset->xll_offset, asset->xll_size)) < 0)
239  return ret;
240 
241  if (get_bits_long(&gb, 32) != DCA_SYNCWORD_XLL)
242  return AVERROR_INVALIDDATA;
243 
244  if (get_bits(&gb, 4))
245  return AVERROR_INVALIDDATA;
246 
247  skip_bits(&gb, 8);
248  skip_bits_long(&gb, get_bits(&gb, 5) + 1);
249  skip_bits(&gb, 4);
250  nsamples_log2 = get_bits(&gb, 4) + get_bits(&gb, 4);
251  if (nsamples_log2 > 24)
252  return AVERROR_INVALIDDATA;
253 
254  *sample_rate = asset->max_sample_rate;
255  *duration = (1 + (*sample_rate > 96000)) << nsamples_log2;
256  *profile = FF_PROFILE_DTS_HD_MA;
257  return 0;
258  }
259 
260  return AVERROR_INVALIDDATA;
261  }
262 
264  hdr, DCA_CORE_FRAME_HEADER_SIZE)) < 0)
265  return ret;
266  if (avpriv_dca_parse_core_frame_header(&h, hdr, ret) < 0)
267  return AVERROR_INVALIDDATA;
268 
269  *duration = h.npcmblocks * DCA_PCMBLOCK_SAMPLES;
270  *sample_rate = avpriv_dca_sample_rates[h.sr_code];
271  if (*profile != FF_PROFILE_UNKNOWN)
272  return 0;
273 
274  *profile = FF_PROFILE_DTS;
275  if (h.ext_audio_present) {
276  switch (h.ext_audio_type) {
277  case DCA_EXT_AUDIO_XCH:
278  case DCA_EXT_AUDIO_XXCH:
279  *profile = FF_PROFILE_DTS_ES;
280  break;
281  case DCA_EXT_AUDIO_X96:
282  *profile = FF_PROFILE_DTS_96_24;
283  break;
284  }
285  }
286 
287  frame_size = FFALIGN(h.frame_size, 4);
288  if (buf_size - 4 < frame_size)
289  return 0;
290 
291  buf += frame_size;
292  buf_size -= frame_size;
293  if (AV_RB32(buf) != DCA_SYNCWORD_SUBSTREAM)
294  return 0;
295  if (ff_dca_exss_parse(&pc1->exss, buf, buf_size) < 0)
296  return 0;
297 
298  if (asset->extension_mask & DCA_EXSS_XLL)
299  *profile = FF_PROFILE_DTS_HD_MA;
300  else if (asset->extension_mask & (DCA_EXSS_XBR | DCA_EXSS_XXCH | DCA_EXSS_X96))
301  *profile = FF_PROFILE_DTS_HD_HRA;
302 
303  return 0;
304 }
305 
307  const uint8_t **poutbuf, int *poutbuf_size,
308  const uint8_t *buf, int buf_size)
309 {
310  DCAParseContext *pc1 = s->priv_data;
311  ParseContext *pc = &pc1->pc;
312  int next, duration, sample_rate;
313 
315  next = buf_size;
316  } else {
317  next = dca_find_frame_end(pc1, buf, buf_size);
318 
319  if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
320  *poutbuf = NULL;
321  *poutbuf_size = 0;
322  return buf_size;
323  }
324 
325  /* skip initial padding */
326  if (buf_size > pc1->startpos) {
327  buf += pc1->startpos;
328  buf_size -= pc1->startpos;
329  }
330  pc1->startpos = 0;
331  }
332 
333  /* read the duration and sample rate from the frame header */
334  if (!dca_parse_params(pc1, buf, buf_size, &duration, &sample_rate, &avctx->profile)) {
335  if (!avctx->sample_rate)
336  avctx->sample_rate = sample_rate;
337  s->duration = av_rescale(duration, avctx->sample_rate, sample_rate);
338  } else
339  s->duration = 0;
340 
341  *poutbuf = buf;
342  *poutbuf_size = buf_size;
343  return next;
344 }
345 
347  .codec_ids = { AV_CODEC_ID_DTS },
348  .priv_data_size = sizeof(DCAParseContext),
349  .parser_init = dca_parse_init,
350  .parser_parse = dca_parse,
351  .parser_close = ff_parse_close,
352 };
#define NULL
Definition: coverity.c:32
static av_cold int dca_parse_init(AVCodecParserContext *s)
Definition: dca_parser.c:184
const char * s
Definition: avisynth_c.h:768
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
ParseContext pc
Definition: dca_parser.c:34
static struct @260 state
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:261
static void skip_bits_long(GetBitContext *s, int n)
Definition: get_bits.h:204
#define FF_PROFILE_DTS_HD_HRA
Definition: avcodec.h:3291
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.
Definition: dca_parser.c:68
uint8_t npcmblocks
Number of PCM sample blocks.
Definition: dca.h:56
int codec_ids[5]
Definition: avcodec.h:5335
unsigned int sr_code
Definition: dca_parser.c:40
#define FF_PROFILE_DTS_EXPRESS
Definition: avcodec.h:3293
DCAExssParser exss
Definition: dca_parser.c:39
int duration
Duration of the current frame.
Definition: avcodec.h:5289
int profile
profile
Definition: avcodec.h:3266
int frame_start_found
Definition: parser.h:34
const uint8_t ff_dca_freq_ranges[16]
Definition: dca.c:46
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
#define IS_EXSS_MARKER(state)
Definition: dca_parser.c:49
uint8_t
#define av_cold
Definition: attributes.h:82
#define DCA_SYNCWORD_CORE_14B_BE
Definition: dca_syncwords.h:24
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
Definition: bytestream.h:87
int64_t duration
Definition: movenc.c:63
int extension_mask
Coding components used in asset.
Definition: dca_exss.h:45
bitstream reader API header.
ptrdiff_t size
Definition: opengl_enc.c:101
#define FFALIGN(x, a)
Definition: macros.h:48
AVCodecParser ff_dca_parser
Definition: dca_parser.c:346
#define DCA_SYNCWORD_CORE_BE
Definition: dca_syncwords.h:22
uint8_t ext_audio_type
Extension audio descriptor flag.
Definition: dca.h:65
#define DCA_PCMBLOCK_SAMPLES
Definition: dca_core.h:46
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
Combine the (truncated) bitstream to a complete frame.
Definition: parser.c:251
#define IS_MARKER(state)
Definition: dca_parser.c:51
#define FF_PROFILE_DTS_ES
Definition: avcodec.h:3289
const uint32_t ff_dca_sampling_freqs[16]
Definition: dca.c:41
#define STATE_14(state)
Definition: dca_parser.c:57
int lbr_offset
Offset to LBR component from start of substream.
Definition: dca_exss.h:59
#define DCA_SYNCWORD_CORE_14B_LE
Definition: dca_syncwords.h:25
int avpriv_dca_parse_core_frame_header(DCACoreFrameHeader *h, uint8_t *buf, int size)
Parse and validate core frame header.
Definition: dca.c:149
unsigned int startpos
Definition: dca_parser.c:38
void ff_parse_close(AVCodecParserContext *s)
Definition: parser.c:329
static int dca_parse_params(DCAParseContext *pc1, const uint8_t *buf, int buf_size, int *duration, int *sample_rate, int *profile)
Definition: dca_parser.c:193
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
Definition: mathematics.c:129
int xll_offset
Offset to XLL data from start of substream.
Definition: dca_exss.h:62
#define DCA_SYNCWORD_XLL
Definition: dca_syncwords.h:31
#define FF_PROFILE_UNKNOWN
Definition: avcodec.h:3267
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.
Definition: dca.c:54
#define DCA_SYNCWORD_LBR
Definition: dca_syncwords.h:30
#define FF_PROFILE_DTS
Definition: avcodec.h:3288
const uint32_t avpriv_dca_sample_rates[16]
Definition: dca.c:36
DCAExssAsset assets[1]
Audio asset descriptors.
Definition: dca_exss.h:87
int xll_size
Size of XLL data in extension substream.
Definition: dca_exss.h:63
#define FF_ARRAY_ELEMS(a)
#define EXSS_MARKER(state)
Definition: dca_parser.c:54
int max_sample_rate
Maximum sample rate.
Definition: dca_exss.h:35
static int dca_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition: dca_parser.c:306
#define FF_PROFILE_DTS_96_24
Definition: avcodec.h:3290
sample_rate
int frame_size
Definition: mxfenc.c:1896
#define DCA_CORE_FRAME_HEADER_SIZE
Definition: dca.h:37
int sample_rate
samples per second
Definition: avcodec.h:2523
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:456
#define DCA_SYNCWORD_CORE_LE
Definition: dca_syncwords.h:23
main external API structure.
Definition: avcodec.h:1761
#define CORE_FRAMESIZE(state)
Definition: dca_parser.c:59
int lbr_size
Size of LBR component in extension substream.
Definition: dca_exss.h:60
void * buf
Definition: avisynth_c.h:690
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:306
uint64_t state64
contains the last 8 bytes in MSB order
Definition: parser.h:37
#define CORE_MARKER(state)
Definition: dca_parser.c:53
#define END_NOT_FOUND
Definition: parser.h:40
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
Definition: get_bits.h:346
mfxU16 profile
Definition: qsvenc.c:44
uint16_t frame_size
Primary frame byte size.
Definition: dca.h:57
#define EXSS_FRAMESIZE(state)
Definition: dca_parser.c:60
uint8_t sr_code
Core audio sampling frequency.
Definition: dca.h:59
uint32_t lastmarker
Definition: dca_parser.c:35
#define PARSER_FLAG_COMPLETE_FRAMES
Definition: avcodec.h:5201
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:777
#define DCA_SYNCWORD_SUBSTREAM
Definition: dca_syncwords.h:32
int ff_dca_exss_parse(DCAExssParser *s, const uint8_t *data, int size)
Definition: dca_exss.c:378
#define FF_PROFILE_DTS_HD_MA
Definition: avcodec.h:3292
uint8_t ext_audio_present
Extended coding flag.
Definition: dca.h:66
#define STATE_LE(state)
Definition: dca_parser.c:56