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_syncwords.h"
27 #include "get_bits.h"
28 #include "parser.h"
29 
30 typedef struct DCAParseContext {
32  uint32_t lastmarker;
33  int size;
34  int framesize;
36 
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)))
42 
43 #define IS_EXSS_MARKER(state) ((state & 0xFFFFFFFF) == DCA_SYNCWORD_SUBSTREAM)
44 
45 #define IS_MARKER(state) (IS_CORE_MARKER(state) || IS_EXSS_MARKER(state))
46 
47 #define CORE_MARKER(state) ((state >> 16) & 0xFFFFFFFF)
48 #define EXSS_MARKER(state) (state & 0xFFFFFFFF)
49 
50 /**
51  * Find the end of the current frame in the bitstream.
52  * @return the position of the first byte of the next frame, or -1
53  */
55  int buf_size)
56 {
57  int start_found, i;
58  uint64_t state;
59  ParseContext *pc = &pc1->pc;
60 
61  start_found = pc->frame_start_found;
62  state = pc->state64;
63 
64  i = 0;
65  if (!start_found) {
66  for (i = 0; i < buf_size; i++) {
67  state = (state << 8) | buf[i];
68  if (IS_MARKER(state)) {
69  if (!pc1->lastmarker ||
70  pc1->lastmarker == CORE_MARKER(state) ||
72  start_found = 1;
73  if (IS_EXSS_MARKER(state))
74  pc1->lastmarker = EXSS_MARKER(state);
75  else
76  pc1->lastmarker = CORE_MARKER(state);
77  i++;
78  break;
79  }
80  }
81  }
82  }
83  if (start_found) {
84  for (; i < buf_size; i++) {
85  pc1->size++;
86  state = (state << 8) | buf[i];
87  if (IS_MARKER(state) &&
88  (pc1->lastmarker == CORE_MARKER(state) ||
90  if (pc1->framesize > pc1->size)
91  continue;
92  pc->frame_start_found = 0;
93  pc->state64 = -1;
94  pc1->size = 0;
95  return IS_EXSS_MARKER(state) ? i - 3 : i - 5;
96  }
97  }
98  }
99  pc->frame_start_found = start_found;
100  pc->state64 = state;
101  return END_NOT_FOUND;
102 }
103 
105 {
106  DCAParseContext *pc1 = s->priv_data;
107 
108  pc1->lastmarker = 0;
109  return 0;
110 }
111 
112 static int dca_parse_params(const uint8_t *buf, int buf_size, int *duration,
113  int *sample_rate, int *framesize)
114 {
115  GetBitContext gb;
116  uint8_t hdr[12 + AV_INPUT_BUFFER_PADDING_SIZE] = { 0 };
117  int ret, sample_blocks, sr_code;
118 
119  if (buf_size < 12)
120  return AVERROR_INVALIDDATA;
121 
122  if ((ret = avpriv_dca_convert_bitstream(buf, 12, hdr, 12)) < 0)
123  return ret;
124 
125  init_get_bits(&gb, hdr, 96);
126 
127  skip_bits_long(&gb, 39);
128  sample_blocks = get_bits(&gb, 7) + 1;
129  if (sample_blocks < 8)
130  return AVERROR_INVALIDDATA;
131  *duration = 256 * (sample_blocks / 8);
132 
133  *framesize = get_bits(&gb, 14) + 1;
134  if (*framesize < 95)
135  return AVERROR_INVALIDDATA;
136 
137  skip_bits(&gb, 6);
138  sr_code = get_bits(&gb, 4);
139  *sample_rate = avpriv_dca_sample_rates[sr_code];
140  if (*sample_rate == 0)
141  return AVERROR_INVALIDDATA;
142 
143  return 0;
144 }
145 
147  const uint8_t **poutbuf, int *poutbuf_size,
148  const uint8_t *buf, int buf_size)
149 {
150  DCAParseContext *pc1 = s->priv_data;
151  ParseContext *pc = &pc1->pc;
152  int next, duration, sample_rate;
153 
155  next = buf_size;
156  } else {
157  next = dca_find_frame_end(pc1, buf, buf_size);
158 
159  if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
160  *poutbuf = NULL;
161  *poutbuf_size = 0;
162  return buf_size;
163  }
164  }
165 
166  /* read the duration and sample rate from the frame header */
167  if (!dca_parse_params(buf, buf_size, &duration, &sample_rate, &pc1->framesize)) {
168  if (!avctx->sample_rate)
169  avctx->sample_rate = sample_rate;
170  s->duration = av_rescale(duration, avctx->sample_rate, sample_rate);
171  } else
172  s->duration = 0;
173 
174  *poutbuf = buf;
175  *poutbuf_size = buf_size;
176  return next;
177 }
178 
180  .codec_ids = { AV_CODEC_ID_DTS },
181  .priv_data_size = sizeof(DCAParseContext),
182  .parser_init = dca_parse_init,
183  .parser_parse = dca_parse,
184  .parser_close = ff_parse_close,
185 };
#define NULL
Definition: coverity.c:32
static av_cold int dca_parse_init(AVCodecParserContext *s)
Definition: dca_parser.c:104
const char * s
Definition: avisynth_c.h:631
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
ParseContext pc
Definition: dca_parser.c:31
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:260
static void skip_bits_long(GetBitContext *s, int n)
Definition: get_bits.h:217
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:54
int codec_ids[5]
Definition: avcodec.h:4589
int duration
Duration of the current frame.
Definition: avcodec.h:4543
int frame_start_found
Definition: parser.h:34
#define IS_EXSS_MARKER(state)
Definition: dca_parser.c:43
uint8_t
#define av_cold
Definition: attributes.h:82
bitstream reader API header.
AVCodecParser ff_dca_parser
Definition: dca_parser.c:179
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:243
#define IS_MARKER(state)
Definition: dca_parser.c:45
void ff_parse_close(AVCodecParserContext *s)
Definition: parser.c:319
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
int64_t duration
Definition: movenc-test.c:63
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:39
const uint32_t avpriv_dca_sample_rates[16]
Definition: dca.c:34
#define EXSS_MARKER(state)
Definition: dca_parser.c:48
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:146
sample_rate
int sample_rate
samples per second
Definition: avcodec.h:2287
main external API structure.
Definition: avcodec.h:1532
void * buf
Definition: avisynth_c.h:553
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:305
uint64_t state64
contains the last 8 bytes in MSB order
Definition: parser.h:37
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:418
#define CORE_MARKER(state)
Definition: dca_parser.c:47
#define END_NOT_FOUND
Definition: parser.h:40
uint32_t lastmarker
Definition: dca_parser.c:32
#define PARSER_FLAG_COMPLETE_FRAMES
Definition: avcodec.h:4455
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:635
#define DCA_SYNCWORD_SUBSTREAM
Definition: dca_syncwords.h:32
static struct @205 state
static int dca_parse_params(const uint8_t *buf, int buf_size, int *duration, int *sample_rate, int *framesize)
Definition: dca_parser.c:112