1 /* GStreamer DCA parser
2 * Copyright (C) 2010 Tim-Philipp Müller <tim centricular net>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * SECTION:element-dcaparse
22 * @short_description: DCA (DTS Coherent Acoustics) parser
23 * @see_also: #GstAmrParse, #GstAACParse, #GstAc3Parse
25 * This is a DCA (DTS Coherent Acoustics) parser.
28 * <title>Example launch line</title>
30 * gst-launch filesrc location=abc.dts ! dcaparse ! dtsdec ! audioresample ! audioconvert ! autoaudiosink
36 * - should accept framed and unframed input (needs decodebin fixes first)
37 * - seeking in raw .dts files doesn't seem to work, but duration estimate ok
39 * - if frames have 'odd' durations, the frame durations (plus timestamps)
40 * aren't adjusted up occasionally to make up for rounding error gaps.
41 * (e.g. if 512 samples per frame @ 48kHz = 10.666666667 ms/frame)
50 #include "gstdcaparse.h"
51 #include <gst/base/gstbytereader.h>
52 #include <gst/base/gstbitreader.h>
54 GST_DEBUG_CATEGORY_STATIC (dca_parse_debug);
55 #define GST_CAT_DEFAULT dca_parse_debug
57 static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
60 GST_STATIC_CAPS ("audio/x-dts,"
61 " framed = (boolean) true,"
62 " channels = (int) [ 1, 8 ],"
63 " rate = (int) [ 8000, 192000 ],"
64 " depth = (int) { 14, 16 },"
65 " endianness = (int) { LITTLE_ENDIAN, BIG_ENDIAN }"));
67 static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
70 GST_STATIC_CAPS ("audio/x-dts, framed = (boolean) false"));
72 static void gst_dca_parse_finalize (GObject * object);
74 static gboolean gst_dca_parse_start (GstBaseParse * parse);
75 static gboolean gst_dca_parse_stop (GstBaseParse * parse);
76 static gboolean gst_dca_parse_check_valid_frame (GstBaseParse * parse,
77 GstBaseParseFrame * frame, guint * size, gint * skipsize);
78 static GstFlowReturn gst_dca_parse_parse_frame (GstBaseParse * parse,
79 GstBaseParseFrame * frame);
81 #define gst_dca_parse_parent_class parent_class
82 G_DEFINE_TYPE (GstDcaParse, gst_dca_parse, GST_TYPE_BASE_PARSE);
85 gst_dca_parse_class_init (GstDcaParseClass * klass)
87 GstBaseParseClass *parse_class = GST_BASE_PARSE_CLASS (klass);
88 GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
89 GObjectClass *object_class = G_OBJECT_CLASS (klass);
91 GST_DEBUG_CATEGORY_INIT (dca_parse_debug, "dcaparse", 0,
92 "DCA audio stream parser");
94 object_class->finalize = gst_dca_parse_finalize;
96 parse_class->start = GST_DEBUG_FUNCPTR (gst_dca_parse_start);
97 parse_class->stop = GST_DEBUG_FUNCPTR (gst_dca_parse_stop);
98 parse_class->check_valid_frame =
99 GST_DEBUG_FUNCPTR (gst_dca_parse_check_valid_frame);
100 parse_class->parse_frame = GST_DEBUG_FUNCPTR (gst_dca_parse_parse_frame);
102 gst_element_class_add_pad_template (element_class,
103 gst_static_pad_template_get (&sink_template));
104 gst_element_class_add_pad_template (element_class,
105 gst_static_pad_template_get (&src_template));
107 gst_element_class_set_details_simple (element_class,
108 "DTS Coherent Acoustics audio stream parser", "Codec/Parser/Audio",
109 "DCA parser", "Tim-Philipp Müller <tim centricular net>");
113 gst_dca_parse_reset (GstDcaParse * dcaparse)
115 dcaparse->channels = -1;
117 dcaparse->depth = -1;
118 dcaparse->endianness = -1;
119 dcaparse->block_size = -1;
120 dcaparse->frame_size = -1;
121 dcaparse->last_sync = 0;
125 gst_dca_parse_init (GstDcaParse * dcaparse)
127 gst_base_parse_set_min_frame_size (GST_BASE_PARSE (dcaparse),
129 gst_dca_parse_reset (dcaparse);
133 gst_dca_parse_finalize (GObject * object)
135 G_OBJECT_CLASS (parent_class)->finalize (object);
139 gst_dca_parse_start (GstBaseParse * parse)
141 GstDcaParse *dcaparse = GST_DCA_PARSE (parse);
143 GST_DEBUG_OBJECT (parse, "starting");
145 gst_dca_parse_reset (dcaparse);
151 gst_dca_parse_stop (GstBaseParse * parse)
153 GST_DEBUG_OBJECT (parse, "stopping");
159 gst_dca_parse_parse_header (GstDcaParse * dcaparse,
160 const GstByteReader * reader, guint * frame_size,
161 guint * sample_rate, guint * channels, guint * depth,
162 gint * endianness, guint * num_blocks, guint * samples_per_block,
163 gboolean * terminator)
165 static const int sample_rates[16] = { 0, 8000, 16000, 32000, 0, 0, 11025,
166 22050, 44100, 0, 0, 12000, 24000, 48000, 96000, 192000
168 static const guint8 channels_table[16] = { 1, 2, 2, 2, 2, 3, 3, 4, 4, 5,
171 GstByteReader r = *reader;
176 if (gst_byte_reader_get_remaining (&r) < (4 + sizeof (hdr)))
179 marker = gst_byte_reader_peek_uint32_be_unchecked (&r);
181 /* raw big endian or 14-bit big endian */
182 if (marker == 0x7FFE8001 || marker == 0x1FFFE800) {
183 for (i = 0; i < G_N_ELEMENTS (hdr); ++i)
184 hdr[i] = gst_byte_reader_get_uint16_be_unchecked (&r);
186 /* raw little endian or 14-bit little endian */
187 if (marker == 0xFE7F0180 || marker == 0xFF1F00E8) {
188 for (i = 0; i < G_N_ELEMENTS (hdr); ++i)
189 hdr[i] = gst_byte_reader_get_uint16_le_unchecked (&r);
194 GST_LOG_OBJECT (dcaparse, "dts sync marker 0x%08x at offset %u", marker,
195 gst_byte_reader_get_pos (reader));
198 if (marker == 0x1FFFE800 || marker == 0xFF1F00E8) {
199 if ((hdr[2] & 0xFFF0) != 0x07F0)
201 /* discard top 2 bits (2 void), shift in 2 */
202 hdr[0] = (hdr[0] << 2) | ((hdr[1] >> 12) & 0x0003);
203 /* discard top 4 bits (2 void, 2 shifted into hdr[0]), shift in 4 etc. */
204 hdr[1] = (hdr[1] << 4) | ((hdr[2] >> 10) & 0x000F);
205 hdr[2] = (hdr[2] << 6) | ((hdr[3] >> 8) & 0x003F);
206 hdr[3] = (hdr[3] << 8) | ((hdr[4] >> 6) & 0x00FF);
207 hdr[4] = (hdr[4] << 10) | ((hdr[5] >> 4) & 0x03FF);
208 hdr[5] = (hdr[5] << 12) | ((hdr[6] >> 2) & 0x0FFF);
209 hdr[6] = (hdr[6] << 14) | ((hdr[7] >> 0) & 0x3FFF);
210 g_assert (hdr[0] == 0x7FFE && hdr[1] == 0x8001);
213 GST_LOG_OBJECT (dcaparse, "frame header: %04x%04x%04x%04x",
214 hdr[2], hdr[3], hdr[4], hdr[5]);
216 *terminator = (hdr[2] & 0x80) ? FALSE : TRUE;
217 *samples_per_block = ((hdr[2] >> 10) & 0x1f) + 1;
218 *num_blocks = ((hdr[2] >> 2) & 0x7F) + 1;
219 *frame_size = (((hdr[2] & 0x03) << 12) | (hdr[3] >> 4)) + 1;
220 chans = ((hdr[3] & 0x0F) << 2) | (hdr[4] >> 14);
221 *sample_rate = sample_rates[(hdr[4] >> 10) & 0x0F];
222 lfe = (hdr[5] >> 9) & 0x03;
224 GST_TRACE_OBJECT (dcaparse, "frame size %u, num_blocks %u, rate %u, "
225 "samples per block %u", *frame_size, *num_blocks, *sample_rate,
228 if (*num_blocks < 6 || *frame_size < 96 || *sample_rate == 0)
231 if (marker == 0x1FFFE800 || marker == 0xFF1F00E8)
232 *frame_size = (*frame_size * 16) / 14; /* FIXME: round up? */
234 if (chans < G_N_ELEMENTS (channels_table))
235 *channels = channels_table[chans] + ((lfe) ? 1 : 0);
240 *depth = (marker == 0x1FFFE800 || marker == 0xFF1F00E8) ? 14 : 16;
242 *endianness = (marker == 0xFE7F0180 || marker == 0xFF1F00E8) ?
243 G_LITTLE_ENDIAN : G_BIG_ENDIAN;
245 GST_TRACE_OBJECT (dcaparse, "frame size %u, channels %u, rate %u, "
246 "num_blocks %u, samples_per_block %u", *frame_size, *channels,
247 *sample_rate, *num_blocks, *samples_per_block);
253 gst_dca_parse_find_sync (GstDcaParse * dcaparse, GstByteReader * reader,
254 gsize bufsize, guint32 * sync)
256 guint32 best_sync = 0;
257 guint best_offset = G_MAXUINT;
260 /* FIXME: verify syncs via _parse_header() here already */
262 /* Raw little endian */
263 off = gst_byte_reader_masked_scan_uint32 (reader, 0xffffffff, 0xfe7f0180,
265 if (off >= 0 && off < best_offset) {
267 best_sync = 0xfe7f0180;
271 off = gst_byte_reader_masked_scan_uint32 (reader, 0xffffffff, 0x7ffe8001,
273 if (off >= 0 && off < best_offset) {
275 best_sync = 0x7ffe8001;
278 /* FIXME: check next 2 bytes as well for 14-bit formats (but then don't
279 * forget to adjust the *skipsize= in _check_valid_frame() */
281 /* 14-bit little endian */
282 off = gst_byte_reader_masked_scan_uint32 (reader, 0xffffffff, 0xff1f00e8,
284 if (off >= 0 && off < best_offset) {
286 best_sync = 0xff1f00e8;
289 /* 14-bit big endian */
290 off = gst_byte_reader_masked_scan_uint32 (reader, 0xffffffff, 0x1fffe800,
292 if (off >= 0 && off < best_offset) {
294 best_sync = 0x1fffe800;
297 if (best_offset == G_MAXUINT)
305 gst_dca_parse_check_valid_frame (GstBaseParse * parse,
306 GstBaseParseFrame * frame, guint * framesize, gint * skipsize)
308 GstDcaParse *dcaparse = GST_DCA_PARSE (parse);
309 GstBuffer *buf = frame->buffer;
311 gboolean parser_draining;
312 gboolean parser_in_sync;
315 guint size, rate, chans, num_blocks, samples_per_block;
319 gboolean ret = FALSE;
321 data = gst_buffer_map (buf, &bufsize, NULL, GST_MAP_READ);
323 if (G_UNLIKELY (bufsize < 16))
326 parser_in_sync = !GST_BASE_PARSE_LOST_SYNC (parse);
328 gst_byte_reader_init (&r, data, bufsize);
330 if (G_LIKELY (parser_in_sync && dcaparse->last_sync != 0)) {
331 off = gst_byte_reader_masked_scan_uint32 (&r, 0xffffffff,
332 dcaparse->last_sync, 0, size);
335 if (G_UNLIKELY (off < 0)) {
336 off = gst_dca_parse_find_sync (dcaparse, &r, bufsize, &sync);
339 /* didn't find anything that looks like a sync word, skip */
341 *skipsize = bufsize - 3;
342 GST_DEBUG_OBJECT (dcaparse, "no sync, skipping %d bytes", *skipsize);
346 GST_LOG_OBJECT (parse, "possible sync %08x at buffer offset %d", sync, off);
348 /* possible frame header, but not at offset 0? skip bytes before sync */
354 /* make sure the values in the frame header look sane */
355 if (!gst_dca_parse_parse_header (dcaparse, &r, &size, &rate, &chans, NULL,
356 NULL, &num_blocks, &samples_per_block, &terminator)) {
361 GST_LOG_OBJECT (parse, "got frame, sync %08x, size %u, rate %d, channels %d",
362 sync, size, rate, chans);
366 dcaparse->last_sync = sync;
368 parser_draining = GST_BASE_PARSE_DRAINING (parse);
370 if (!parser_in_sync && !parser_draining) {
371 /* check for second frame to be sure */
372 GST_DEBUG_OBJECT (dcaparse, "resyncing; checking next frame syncword");
373 if (bufsize >= (size + 16)) {
374 guint s2, r2, c2, n2, s3;
377 GST_MEMDUMP ("buf", data, size + 16);
378 gst_byte_reader_init (&r, data, bufsize);
379 gst_byte_reader_skip_unchecked (&r, size);
381 if (!gst_dca_parse_parse_header (dcaparse, &r, &s2, &r2, &c2, NULL, NULL,
383 GST_DEBUG_OBJECT (dcaparse, "didn't find second syncword");
388 /* ok, got sync now, let's assume constant frame size */
389 gst_base_parse_set_min_frame_size (parse, size);
391 /* FIXME: baseparse always seems to hand us buffers of min_frame_size
392 * bytes, which is unhelpful here */
393 GST_LOG_OBJECT (dcaparse, "next sync out of reach (%u < %u)",
403 gst_buffer_unmap (buf, data, bufsize);
408 gst_dca_parse_parse_frame (GstBaseParse * parse, GstBaseParseFrame * frame)
410 GstDcaParse *dcaparse = GST_DCA_PARSE (parse);
411 GstBuffer *buf = frame->buffer;
413 guint size, rate, chans, depth, block_size, num_blocks, samples_per_block;
419 data = gst_buffer_map (buf, &bufsize, NULL, GST_MAP_READ);
420 gst_byte_reader_init (&r, data, bufsize);
422 if (!gst_dca_parse_parse_header (dcaparse, &r, &size, &rate, &chans, &depth,
423 &endianness, &num_blocks, &samples_per_block, &terminator))
426 block_size = num_blocks * samples_per_block;
428 if (G_UNLIKELY (dcaparse->rate != rate || dcaparse->channels != chans
429 || dcaparse->depth != depth || dcaparse->endianness != endianness
430 || (!terminator && dcaparse->block_size != block_size)
431 || (size != dcaparse->frame_size))) {
434 caps = gst_caps_new_simple ("audio/x-dts",
435 "framed", G_TYPE_BOOLEAN, TRUE,
436 "rate", G_TYPE_INT, rate, "channels", G_TYPE_INT, chans,
437 "endianness", G_TYPE_INT, endianness, "depth", G_TYPE_INT, depth,
438 "block-size", G_TYPE_INT, block_size, "frame-size", G_TYPE_INT, size,
440 gst_pad_set_caps (GST_BASE_PARSE_SRC_PAD (parse), caps);
441 gst_caps_unref (caps);
443 dcaparse->rate = rate;
444 dcaparse->channels = chans;
445 dcaparse->depth = depth;
446 dcaparse->endianness = endianness;
447 dcaparse->block_size = block_size;
448 dcaparse->frame_size = size;
450 gst_base_parse_set_frame_rate (parse, rate, block_size, 0, 0);
453 gst_buffer_unmap (buf, data, bufsize);
459 /* this really shouldn't ever happen */
460 GST_ELEMENT_ERROR (parse, STREAM, DECODE, (NULL), (NULL));
461 gst_buffer_unmap (buf, data, bufsize);
462 return GST_FLOW_ERROR;