]> git.sesse.net Git - ffmpeg/blob - libavcodec/dca_parser.c
Merge commit '1bd2646a6da808f6f9881525771db098c54bc3d2'
[ffmpeg] / libavcodec / dca_parser.c
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 {
31     ParseContext pc;
32     uint32_t lastmarker;
33     int size;
34     int framesize;
35     int hd_pos;
36 } DCAParseContext;
37
38 #define IS_MARKER(state, i, buf, buf_size) \
39     ((state == DCA_SYNCWORD_CORE_14B_LE && (i < buf_size - 2) && (buf[i + 1] & 0xF0) == 0xF0 &&  buf[i + 2]         == 0x07) || \
40      (state == DCA_SYNCWORD_CORE_14B_BE && (i < buf_size - 2) &&  buf[i + 1]         == 0x07 && (buf[i + 2] & 0xF0) == 0xF0) || \
41       state == DCA_SYNCWORD_CORE_LE || state == DCA_SYNCWORD_CORE_BE || state == DCA_SYNCWORD_SUBSTREAM)
42
43 /**
44  * Find the end of the current frame in the bitstream.
45  * @return the position of the first byte of the next frame, or -1
46  */
47 static int dca_find_frame_end(DCAParseContext *pc1, const uint8_t *buf,
48                               int buf_size)
49 {
50     int start_found, i;
51     uint32_t state;
52     ParseContext *pc = &pc1->pc;
53
54     start_found = pc->frame_start_found;
55     state       = pc->state;
56
57     i = 0;
58     if (!start_found) {
59         for (i = 0; i < buf_size; i++) {
60             state = (state << 8) | buf[i];
61             if (IS_MARKER(state, i, buf, buf_size)) {
62                 if (!pc1->lastmarker || state == pc1->lastmarker || pc1->lastmarker == DCA_SYNCWORD_SUBSTREAM) {
63                     start_found     = 1;
64                     pc1->lastmarker = state;
65                     i++;
66                     break;
67                 }
68             }
69         }
70     }
71     if (start_found) {
72         for (; i < buf_size; i++) {
73             pc1->size++;
74             state = (state << 8) | buf[i];
75             if (state == DCA_SYNCWORD_SUBSTREAM && !pc1->hd_pos)
76                 pc1->hd_pos = pc1->size;
77             if (IS_MARKER(state, i, buf, buf_size) && (state == pc1->lastmarker || pc1->lastmarker == DCA_SYNCWORD_SUBSTREAM)) {
78                 if (pc1->framesize > pc1->size)
79                     continue;
80                 pc->frame_start_found = 0;
81                 pc->state             = -1;
82                 pc1->size             = 0;
83                 return i - 3;
84             }
85         }
86     }
87     pc->frame_start_found = start_found;
88     pc->state             = state;
89     return END_NOT_FOUND;
90 }
91
92 static av_cold int dca_parse_init(AVCodecParserContext *s)
93 {
94     DCAParseContext *pc1 = s->priv_data;
95
96     pc1->lastmarker = 0;
97     return 0;
98 }
99
100 static int dca_parse_params(const uint8_t *buf, int buf_size, int *duration,
101                             int *sample_rate, int *framesize)
102 {
103     GetBitContext gb;
104     uint8_t hdr[12 + FF_INPUT_BUFFER_PADDING_SIZE] = { 0 };
105     int ret, sample_blocks, sr_code;
106
107     if (buf_size < 12)
108         return AVERROR_INVALIDDATA;
109
110     if ((ret = avpriv_dca_convert_bitstream(buf, 12, hdr, 12)) < 0)
111         return ret;
112
113     init_get_bits(&gb, hdr, 96);
114
115     skip_bits_long(&gb, 39);
116     sample_blocks = get_bits(&gb, 7) + 1;
117     if (sample_blocks < 8)
118         return AVERROR_INVALIDDATA;
119     *duration = 256 * (sample_blocks / 8);
120
121     *framesize = get_bits(&gb, 14) + 1;
122     if (*framesize < 95)
123         return AVERROR_INVALIDDATA;
124
125     skip_bits(&gb, 6);
126     sr_code      = get_bits(&gb, 4);
127     *sample_rate = avpriv_dca_sample_rates[sr_code];
128     if (*sample_rate == 0)
129         return AVERROR_INVALIDDATA;
130
131     return 0;
132 }
133
134 static int dca_parse(AVCodecParserContext *s, AVCodecContext *avctx,
135                      const uint8_t **poutbuf, int *poutbuf_size,
136                      const uint8_t *buf, int buf_size)
137 {
138     DCAParseContext *pc1 = s->priv_data;
139     ParseContext *pc = &pc1->pc;
140     int next, duration, sample_rate;
141
142     if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
143         next = buf_size;
144     } else {
145         next = dca_find_frame_end(pc1, buf, buf_size);
146
147         if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
148             *poutbuf      = NULL;
149             *poutbuf_size = 0;
150             return buf_size;
151         }
152     }
153
154     /* read the duration and sample rate from the frame header */
155     if (!dca_parse_params(buf, buf_size, &duration, &sample_rate, &pc1->framesize)) {
156         s->duration        = duration;
157         avctx->sample_rate = sample_rate;
158     } else
159         s->duration = 0;
160
161     *poutbuf      = buf;
162     *poutbuf_size = buf_size;
163     return next;
164 }
165
166 AVCodecParser ff_dca_parser = {
167     .codec_ids      = { AV_CODEC_ID_DTS },
168     .priv_data_size = sizeof(DCAParseContext),
169     .parser_init    = dca_parse_init,
170     .parser_parse   = dca_parse,
171     .parser_close   = ff_parse_close,
172 };