]> git.sesse.net Git - ffmpeg/blob - libavcodec/mpegaudio_parser.c
55d865f26694404893f82f5f6f10f8efe81d6463
[ffmpeg] / libavcodec / mpegaudio_parser.c
1 /*
2  * MPEG Audio parser
3  * Copyright (c) 2003 Fabrice Bellard.
4  * Copyright (c) 2003 Michael Niedermayer.
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include "parser.h"
24 #include "mpegaudio.h"
25 #include "mpegaudiodecheader.h"
26
27
28 typedef struct MpegAudioParseContext {
29     uint8_t inbuf[MPA_MAX_CODED_FRAME_SIZE];    /* input buffer */
30     uint8_t *inbuf_ptr;
31     int frame_size;
32     int free_format_frame_size;
33     int free_format_next_header;
34     uint32_t header;
35     int header_count;
36 } MpegAudioParseContext;
37
38 #define MPA_HEADER_SIZE 4
39
40 /* header + layer + bitrate + freq + lsf/mpeg25 */
41 #undef SAME_HEADER_MASK /* mpegaudio.h defines different version */
42 #define SAME_HEADER_MASK \
43    (0xffe00000 | (3 << 17) | (3 << 10) | (3 << 19))
44
45 /* useful helper to get mpeg audio stream infos. Return -1 if error in
46    header, otherwise the coded frame size in bytes */
47 int ff_mpa_decode_header(AVCodecContext *avctx, uint32_t head, int *sample_rate, int *channels, int *frame_size, int *bit_rate)
48 {
49     MPADecodeContext s1, *s = &s1;
50     s1.avctx = avctx;
51
52     if (ff_mpa_check_header(head) != 0)
53         return -1;
54
55     if (ff_mpegaudio_decode_header(s, head) != 0) {
56         return -1;
57     }
58
59     switch(s->layer) {
60     case 1:
61         avctx->codec_id = CODEC_ID_MP1;
62         *frame_size = 384;
63         break;
64     case 2:
65         avctx->codec_id = CODEC_ID_MP2;
66         *frame_size = 1152;
67         break;
68     default:
69     case 3:
70         avctx->codec_id = CODEC_ID_MP3;
71         if (s->lsf)
72             *frame_size = 576;
73         else
74             *frame_size = 1152;
75         break;
76     }
77
78     *sample_rate = s->sample_rate;
79     *channels = s->nb_channels;
80     *bit_rate = s->bit_rate;
81     avctx->sub_id = s->layer;
82     return s->frame_size;
83 }
84
85 static int mpegaudio_parse_init(AVCodecParserContext *s1)
86 {
87     MpegAudioParseContext *s = s1->priv_data;
88     s->inbuf_ptr = s->inbuf;
89     return 0;
90 }
91
92 static int mpegaudio_parse(AVCodecParserContext *s1,
93                            AVCodecContext *avctx,
94                            const uint8_t **poutbuf, int *poutbuf_size,
95                            const uint8_t *buf, int buf_size)
96 {
97     MpegAudioParseContext *s = s1->priv_data;
98     int len, ret, sr, channels, bit_rate, frame_size;
99     uint32_t header;
100     const uint8_t *buf_ptr;
101
102     *poutbuf = NULL;
103     *poutbuf_size = 0;
104     buf_ptr = buf;
105     while (buf_size > 0) {
106         len = s->inbuf_ptr - s->inbuf;
107         if (s->frame_size == 0) {
108             /* special case for next header for first frame in free
109                format case (XXX: find a simpler method) */
110             if (s->free_format_next_header != 0) {
111                 AV_WB32(s->inbuf, s->free_format_next_header);
112                 s->inbuf_ptr = s->inbuf + 4;
113                 s->free_format_next_header = 0;
114                 goto got_header;
115             }
116             /* no header seen : find one. We need at least MPA_HEADER_SIZE
117                bytes to parse it */
118             len = FFMIN(MPA_HEADER_SIZE - len, buf_size);
119             if (len > 0) {
120                 memcpy(s->inbuf_ptr, buf_ptr, len);
121                 buf_ptr += len;
122                 buf_size -= len;
123                 s->inbuf_ptr += len;
124             }
125             if ((s->inbuf_ptr - s->inbuf) >= MPA_HEADER_SIZE) {
126             got_header:
127                 header = AV_RB32(s->inbuf);
128
129                 ret = ff_mpa_decode_header(avctx, header, &sr, &channels, &frame_size, &bit_rate);
130                 if (ret < 0) {
131                     s->header_count= -2;
132                     /* no sync found : move by one byte (inefficient, but simple!) */
133                     memmove(s->inbuf, s->inbuf + 1, s->inbuf_ptr - s->inbuf - 1);
134                     s->inbuf_ptr--;
135                     dprintf(avctx, "skip %x\n", header);
136                     /* reset free format frame size to give a chance
137                        to get a new bitrate */
138                     s->free_format_frame_size = 0;
139                 } else {
140                     if((header&SAME_HEADER_MASK) != (s->header&SAME_HEADER_MASK) && s->header)
141                         s->header_count= -3;
142                     s->header= header;
143                     s->header_count++;
144                     s->frame_size = ret;
145
146 #if 0
147                     /* free format: prepare to compute frame size */
148                     if (ff_mpegaudio_decode_header(s, header) == 1) {
149                         s->frame_size = -1;
150                     }
151 #endif
152                     if(s->header_count > 1){
153                         avctx->sample_rate= sr;
154                         avctx->channels   = channels;
155                         avctx->frame_size = frame_size;
156                         avctx->bit_rate   = bit_rate;
157                     }
158                 }
159             }
160         } else
161 #if 0
162         if (s->frame_size == -1) {
163             /* free format : find next sync to compute frame size */
164             len = MPA_MAX_CODED_FRAME_SIZE - len;
165             if (len > buf_size)
166                 len = buf_size;
167             if (len == 0) {
168                 /* frame too long: resync */
169                 s->frame_size = 0;
170                 memmove(s->inbuf, s->inbuf + 1, s->inbuf_ptr - s->inbuf - 1);
171                 s->inbuf_ptr--;
172             } else {
173                 uint8_t *p, *pend;
174                 uint32_t header1;
175                 int padding;
176
177                 memcpy(s->inbuf_ptr, buf_ptr, len);
178                 /* check for header */
179                 p = s->inbuf_ptr - 3;
180                 pend = s->inbuf_ptr + len - 4;
181                 while (p <= pend) {
182                     header = AV_RB32(p);
183                     header1 = AV_RB32(s->inbuf);
184                     /* check with high probability that we have a
185                        valid header */
186                     if ((header & SAME_HEADER_MASK) ==
187                         (header1 & SAME_HEADER_MASK)) {
188                         /* header found: update pointers */
189                         len = (p + 4) - s->inbuf_ptr;
190                         buf_ptr += len;
191                         buf_size -= len;
192                         s->inbuf_ptr = p;
193                         /* compute frame size */
194                         s->free_format_next_header = header;
195                         s->free_format_frame_size = s->inbuf_ptr - s->inbuf;
196                         padding = (header1 >> 9) & 1;
197                         if (s->layer == 1)
198                             s->free_format_frame_size -= padding * 4;
199                         else
200                             s->free_format_frame_size -= padding;
201                         dprintf(avctx, "free frame size=%d padding=%d\n",
202                                 s->free_format_frame_size, padding);
203                         ff_mpegaudio_decode_header(s, header1);
204                         goto next_data;
205                     }
206                     p++;
207                 }
208                 /* not found: simply increase pointers */
209                 buf_ptr += len;
210                 s->inbuf_ptr += len;
211                 buf_size -= len;
212             }
213         } else
214 #endif
215         if (len < s->frame_size) {
216             if (s->frame_size > MPA_MAX_CODED_FRAME_SIZE)
217                 s->frame_size = MPA_MAX_CODED_FRAME_SIZE;
218             len = FFMIN(s->frame_size - len, buf_size);
219             memcpy(s->inbuf_ptr, buf_ptr, len);
220             buf_ptr += len;
221             s->inbuf_ptr += len;
222             buf_size -= len;
223         }
224
225         if(s->frame_size > 0 && buf_ptr - buf == s->inbuf_ptr - s->inbuf
226            && buf_size + buf_ptr - buf >= s->frame_size){
227             if(s->header_count > 0){
228                 *poutbuf = buf;
229                 *poutbuf_size = s->frame_size;
230             }
231             buf_ptr = buf + s->frame_size;
232             s->inbuf_ptr = s->inbuf;
233             s->frame_size = 0;
234             break;
235         }
236
237         //    next_data:
238         if (s->frame_size > 0 &&
239             (s->inbuf_ptr - s->inbuf) >= s->frame_size) {
240             if(s->header_count > 0){
241                 *poutbuf = s->inbuf;
242                 *poutbuf_size = s->inbuf_ptr - s->inbuf;
243             }
244             s->inbuf_ptr = s->inbuf;
245             s->frame_size = 0;
246             break;
247         }
248     }
249     return buf_ptr - buf;
250 }
251
252
253 AVCodecParser mpegaudio_parser = {
254     { CODEC_ID_MP1, CODEC_ID_MP2, CODEC_ID_MP3 },
255     sizeof(MpegAudioParseContext),
256     mpegaudio_parse_init,
257     mpegaudio_parse,
258     NULL,
259 };