Mercurial > libavcodec.hg
annotate mpegaudio_parser.c @ 8602:d90dec69b2a2 libavcodec
12l: Fix compilation with --disable-vdpau.
author | cehoyos |
---|---|
date | Fri, 16 Jan 2009 02:50:20 +0000 |
parents | b3f3d9ffab1c |
children | 04423b2f6e0b |
rev | line source |
---|---|
1613 | 1 /* |
4913 | 2 * MPEG Audio parser |
1613 | 3 * Copyright (c) 2003 Fabrice Bellard. |
4 * Copyright (c) 2003 Michael Niedermayer. | |
5 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
6 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
7 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
1613 | 9 * modify it under the terms of the GNU Lesser General Public |
10 * License as published by the Free Software Foundation; either | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
11 * version 2.1 of the License, or (at your option) any later version. |
1613 | 12 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
1613 | 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 | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
19 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
1613 | 21 */ |
2967 | 22 |
4913 | 23 #include "parser.h" |
24 #include "mpegaudio.h" | |
5050 | 25 #include "mpegaudiodecheader.h" |
2386 | 26 |
27 | |
1613 | 28 typedef struct MpegAudioParseContext { |
2979 | 29 uint8_t inbuf[MPA_MAX_CODED_FRAME_SIZE]; /* input buffer */ |
1613 | 30 uint8_t *inbuf_ptr; |
31 int frame_size; | |
32 int free_format_frame_size; | |
33 int free_format_next_header; | |
2470
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
34 uint32_t header; |
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
35 int header_count; |
1613 | 36 } MpegAudioParseContext; |
37 | |
38 #define MPA_HEADER_SIZE 4 | |
39 | |
40 /* header + layer + bitrate + freq + lsf/mpeg25 */ | |
2522
e25782262d7d
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2486
diff
changeset
|
41 #undef SAME_HEADER_MASK /* mpegaudio.h defines different version */ |
1613 | 42 #define SAME_HEADER_MASK \ |
2480 | 43 (0xffe00000 | (3 << 17) | (3 << 10) | (3 << 19)) |
1613 | 44 |
5050 | 45 /* useful helper to get mpeg audio stream infos. Return -1 if error in |
46 header, otherwise the coded frame size in bytes */ | |
8420
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
47 int ff_mpa_decode_header(AVCodecContext *avctx, uint32_t head, int *sample_rate, int *channels, int *frame_size, int *bit_rate) |
5050 | 48 { |
49 MPADecodeContext s1, *s = &s1; | |
50 s1.avctx = avctx; | |
51 | |
52 if (ff_mpa_check_header(head) != 0) | |
53 return -1; | |
54 | |
5051 | 55 if (ff_mpegaudio_decode_header(s, head) != 0) { |
5050 | 56 return -1; |
57 } | |
58 | |
59 switch(s->layer) { | |
60 case 1: | |
8587 | 61 avctx->codec_id = CODEC_ID_MP1; |
8420
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
62 *frame_size = 384; |
5050 | 63 break; |
64 case 2: | |
8587 | 65 avctx->codec_id = CODEC_ID_MP2; |
8420
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
66 *frame_size = 1152; |
5050 | 67 break; |
68 default: | |
69 case 3: | |
8587 | 70 avctx->codec_id = CODEC_ID_MP3; |
5050 | 71 if (s->lsf) |
8420
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
72 *frame_size = 576; |
5050 | 73 else |
8420
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
74 *frame_size = 1152; |
5050 | 75 break; |
76 } | |
77 | |
78 *sample_rate = s->sample_rate; | |
8420
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
79 *channels = s->nb_channels; |
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
80 *bit_rate = s->bit_rate; |
5050 | 81 avctx->sub_id = s->layer; |
82 return s->frame_size; | |
83 } | |
84 | |
1613 | 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, | |
4931
0d1cc37d9430
make some parser parameters const to avoid casting const to non-const
aurel
parents:
4914
diff
changeset
|
94 const uint8_t **poutbuf, int *poutbuf_size, |
1613 | 95 const uint8_t *buf, int buf_size) |
96 { | |
97 MpegAudioParseContext *s = s1->priv_data; | |
8420
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
98 int len, ret, sr, channels, bit_rate, frame_size; |
1613 | 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) { | |
2979 | 106 len = s->inbuf_ptr - s->inbuf; |
107 if (s->frame_size == 0) { | |
1613 | 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) { | |
5089 | 111 AV_WB32(s->inbuf, s->free_format_next_header); |
1613 | 112 s->inbuf_ptr = s->inbuf + 4; |
113 s->free_format_next_header = 0; | |
114 goto got_header; | |
115 } | |
2979 | 116 /* no header seen : find one. We need at least MPA_HEADER_SIZE |
1613 | 117 bytes to parse it */ |
3639
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
118 len = FFMIN(MPA_HEADER_SIZE - len, buf_size); |
2979 | 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) { | |
1613 | 126 got_header: |
5089 | 127 header = AV_RB32(s->inbuf); |
1613 | 128 |
8420
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
129 ret = ff_mpa_decode_header(avctx, header, &sr, &channels, &frame_size, &bit_rate); |
1613 | 130 if (ret < 0) { |
2470
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
131 s->header_count= -2; |
2979 | 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--; | |
4652 | 135 dprintf(avctx, "skip %x\n", header); |
1613 | 136 /* reset free format frame size to give a chance |
137 to get a new bitrate */ | |
138 s->free_format_frame_size = 0; | |
2979 | 139 } else { |
2470
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
140 if((header&SAME_HEADER_MASK) != (s->header&SAME_HEADER_MASK) && s->header) |
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
141 s->header_count= -3; |
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
142 s->header= header; |
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
143 s->header_count++; |
1613 | 144 s->frame_size = ret; |
2967 | 145 |
1613 | 146 #if 0 |
147 /* free format: prepare to compute frame size */ | |
5051 | 148 if (ff_mpegaudio_decode_header(s, header) == 1) { |
2979 | 149 s->frame_size = -1; |
1613 | 150 } |
151 #endif | |
8420
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
152 if(s->header_count > 1){ |
5260 | 153 avctx->sample_rate= sr; |
8420
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
154 avctx->channels = channels; |
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
155 avctx->frame_size = frame_size; |
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
156 avctx->bit_rate = bit_rate; |
2b0d01be134f
Change mpeg audio parser so it only sets frame_size, channels and bit_rate
michael
parents:
5260
diff
changeset
|
157 } |
5259 | 158 } |
2979 | 159 } |
2967 | 160 } else |
1613 | 161 #if 0 |
162 if (s->frame_size == -1) { | |
163 /* free format : find next sync to compute frame size */ | |
2979 | 164 len = MPA_MAX_CODED_FRAME_SIZE - len; |
165 if (len > buf_size) | |
166 len = buf_size; | |
1613 | 167 if (len == 0) { |
2979 | 168 /* frame too long: resync */ |
1613 | 169 s->frame_size = 0; |
2979 | 170 memmove(s->inbuf, s->inbuf + 1, s->inbuf_ptr - s->inbuf - 1); |
171 s->inbuf_ptr--; | |
1613 | 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) { | |
5089 | 182 header = AV_RB32(p); |
183 header1 = AV_RB32(s->inbuf); | |
1613 | 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; | |
4652 | 201 dprintf(avctx, "free frame size=%d padding=%d\n", |
1613 | 202 s->free_format_frame_size, padding); |
5051 | 203 ff_mpegaudio_decode_header(s, header1); |
1613 | 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 } | |
2979 | 213 } else |
1613 | 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; | |
3639
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
218 len = FFMIN(s->frame_size - len, buf_size); |
2979 | 219 memcpy(s->inbuf_ptr, buf_ptr, len); |
220 buf_ptr += len; | |
221 s->inbuf_ptr += len; | |
222 buf_size -= len; | |
223 } | |
3639
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
224 |
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
225 if(s->frame_size > 0 && buf_ptr - buf == s->inbuf_ptr - s->inbuf |
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
226 && buf_size + buf_ptr - buf >= s->frame_size){ |
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
227 if(s->header_count > 0){ |
4931
0d1cc37d9430
make some parser parameters const to avoid casting const to non-const
aurel
parents:
4914
diff
changeset
|
228 *poutbuf = buf; |
3639
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
229 *poutbuf_size = s->frame_size; |
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
230 } |
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
231 buf_ptr = buf + s->frame_size; |
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
232 s->inbuf_ptr = s->inbuf; |
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
233 s->frame_size = 0; |
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
234 break; |
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
235 } |
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
236 |
1613 | 237 // next_data: |
2967 | 238 if (s->frame_size > 0 && |
1613 | 239 (s->inbuf_ptr - s->inbuf) >= s->frame_size) { |
2470
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
240 if(s->header_count > 0){ |
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
241 *poutbuf = s->inbuf; |
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
242 *poutbuf_size = s->inbuf_ptr - s->inbuf; |
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
243 } |
2979 | 244 s->inbuf_ptr = s->inbuf; |
245 s->frame_size = 0; | |
246 break; | |
247 } | |
1613 | 248 } |
249 return buf_ptr - buf; | |
250 } | |
4397
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
251 |
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
252 |
1613 | 253 AVCodecParser mpegaudio_parser = { |
8586
d7d0cde5f308
Add dummy mp1_decoder to complement the existing dummy mp2/mp3 decoders.
michael
parents:
8420
diff
changeset
|
254 { CODEC_ID_MP1, CODEC_ID_MP2, CODEC_ID_MP3 }, |
1613 | 255 sizeof(MpegAudioParseContext), |
256 mpegaudio_parse_init, | |
257 mpegaudio_parse, | |
258 NULL, | |
259 }; |