3 * Copyright (C) 2004 Gildas Bazin
4 * Copyright (C) 2004 Benjamin Zores
5 * Copyright (C) 2006 Benjamin Larsson
6 * Copyright (C) 2007 Konstantin Shishkov
8 * This file is part of FFmpeg.
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.
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.
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
26 #include "dca_syncwords.h"
30 typedef struct DCAParseContext {
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)
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
54 static int dca_find_frame_end(DCAParseContext *pc1, const uint8_t *buf,
59 ParseContext *pc = &pc1->pc;
61 start_found = pc->frame_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) ||
71 pc1->lastmarker == DCA_SYNCWORD_SUBSTREAM) {
73 if (IS_EXSS_MARKER(state))
74 pc1->lastmarker = EXSS_MARKER(state);
76 pc1->lastmarker = CORE_MARKER(state);
84 for (; i < buf_size; i++) {
86 state = (state << 8) | buf[i];
87 if (IS_MARKER(state) &&
88 (pc1->lastmarker == CORE_MARKER(state) ||
89 pc1->lastmarker == DCA_SYNCWORD_SUBSTREAM)) {
90 if (pc1->framesize > pc1->size)
92 pc->frame_start_found = 0;
95 return IS_EXSS_MARKER(state) ? i - 3 : i - 5;
99 pc->frame_start_found = start_found;
101 return END_NOT_FOUND;
104 static av_cold int dca_parse_init(AVCodecParserContext *s)
106 DCAParseContext *pc1 = s->priv_data;
112 static int dca_parse_params(const uint8_t *buf, int buf_size, int *duration,
113 int *sample_rate, int *framesize)
116 uint8_t hdr[12 + AV_INPUT_BUFFER_PADDING_SIZE] = { 0 };
117 int ret, sample_blocks, sr_code;
120 return AVERROR_INVALIDDATA;
122 if ((ret = avpriv_dca_convert_bitstream(buf, 12, hdr, 12)) < 0)
125 init_get_bits(&gb, hdr, 96);
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);
133 *framesize = get_bits(&gb, 14) + 1;
135 return AVERROR_INVALIDDATA;
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;
146 static int dca_parse(AVCodecParserContext *s, AVCodecContext *avctx,
147 const uint8_t **poutbuf, int *poutbuf_size,
148 const uint8_t *buf, int buf_size)
150 DCAParseContext *pc1 = s->priv_data;
151 ParseContext *pc = &pc1->pc;
152 int next, duration, sample_rate;
154 if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
157 next = dca_find_frame_end(pc1, buf, buf_size);
159 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
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);
175 *poutbuf_size = buf_size;
179 AVCodecParser ff_dca_parser = {
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,