3 * Copyright (c) 2003 Fabrice Bellard.
4 * Copyright (c) 2003 Michael Niedermayer.
6 * This file is part of FFmpeg.
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.
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.
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
24 #include "mpegaudio.h"
25 #include "mpegaudiodecheader.h"
28 typedef struct MpegAudioParseContext
{
29 uint8_t inbuf
[MPA_MAX_CODED_FRAME_SIZE
]; /* input buffer */
32 int free_format_frame_size
;
33 int free_format_next_header
;
36 } MpegAudioParseContext
;
38 #define MPA_HEADER_SIZE 4
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))
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
)
49 MPADecodeContext s1
, *s
= &s1
;
52 if (ff_mpa_check_header(head
) != 0)
55 if (ff_mpegaudio_decode_header(s
, head
) != 0) {
61 avctx
->frame_size
= 384;
64 avctx
->frame_size
= 1152;
69 avctx
->frame_size
= 576;
71 avctx
->frame_size
= 1152;
75 *sample_rate
= s
->sample_rate
;
76 avctx
->channels
= s
->nb_channels
;
77 avctx
->bit_rate
= s
->bit_rate
;
78 avctx
->sub_id
= s
->layer
;
82 static int mpegaudio_parse_init(AVCodecParserContext
*s1
)
84 MpegAudioParseContext
*s
= s1
->priv_data
;
85 s
->inbuf_ptr
= s
->inbuf
;
89 static int mpegaudio_parse(AVCodecParserContext
*s1
,
90 AVCodecContext
*avctx
,
91 const uint8_t **poutbuf
, int *poutbuf_size
,
92 const uint8_t *buf
, int buf_size
)
94 MpegAudioParseContext
*s
= s1
->priv_data
;
97 const uint8_t *buf_ptr
;
102 while (buf_size
> 0) {
103 len
= s
->inbuf_ptr
- s
->inbuf
;
104 if (s
->frame_size
== 0) {
105 /* special case for next header for first frame in free
106 format case (XXX: find a simpler method) */
107 if (s
->free_format_next_header
!= 0) {
108 AV_WB32(s
->inbuf
, s
->free_format_next_header
);
109 s
->inbuf_ptr
= s
->inbuf
+ 4;
110 s
->free_format_next_header
= 0;
113 /* no header seen : find one. We need at least MPA_HEADER_SIZE
115 len
= FFMIN(MPA_HEADER_SIZE
- len
, buf_size
);
117 memcpy(s
->inbuf_ptr
, buf_ptr
, len
);
122 if ((s
->inbuf_ptr
- s
->inbuf
) >= MPA_HEADER_SIZE
) {
124 header
= AV_RB32(s
->inbuf
);
126 ret
= ff_mpa_decode_header(avctx
, header
, &sr
);
129 /* no sync found : move by one byte (inefficient, but simple!) */
130 memmove(s
->inbuf
, s
->inbuf
+ 1, s
->inbuf_ptr
- s
->inbuf
- 1);
132 dprintf(avctx
, "skip %x\n", header
);
133 /* reset free format frame size to give a chance
134 to get a new bitrate */
135 s
->free_format_frame_size
= 0;
137 if((header
&SAME_HEADER_MASK
) != (s
->header
&SAME_HEADER_MASK
) && s
->header
)
144 /* free format: prepare to compute frame size */
145 if (ff_mpegaudio_decode_header(s
, header
) == 1) {
149 if(s
->header_count
> 1)
150 avctx
->sample_rate
= sr
;
155 if (s
->frame_size
== -1) {
156 /* free format : find next sync to compute frame size */
157 len
= MPA_MAX_CODED_FRAME_SIZE
- len
;
161 /* frame too long: resync */
163 memmove(s
->inbuf
, s
->inbuf
+ 1, s
->inbuf_ptr
- s
->inbuf
- 1);
170 memcpy(s
->inbuf_ptr
, buf_ptr
, len
);
171 /* check for header */
172 p
= s
->inbuf_ptr
- 3;
173 pend
= s
->inbuf_ptr
+ len
- 4;
176 header1
= AV_RB32(s
->inbuf
);
177 /* check with high probability that we have a
179 if ((header
& SAME_HEADER_MASK
) ==
180 (header1
& SAME_HEADER_MASK
)) {
181 /* header found: update pointers */
182 len
= (p
+ 4) - s
->inbuf_ptr
;
186 /* compute frame size */
187 s
->free_format_next_header
= header
;
188 s
->free_format_frame_size
= s
->inbuf_ptr
- s
->inbuf
;
189 padding
= (header1
>> 9) & 1;
191 s
->free_format_frame_size
-= padding
* 4;
193 s
->free_format_frame_size
-= padding
;
194 dprintf(avctx
, "free frame size=%d padding=%d\n",
195 s
->free_format_frame_size
, padding
);
196 ff_mpegaudio_decode_header(s
, header1
);
201 /* not found: simply increase pointers */
208 if (len
< s
->frame_size
) {
209 if (s
->frame_size
> MPA_MAX_CODED_FRAME_SIZE
)
210 s
->frame_size
= MPA_MAX_CODED_FRAME_SIZE
;
211 len
= FFMIN(s
->frame_size
- len
, buf_size
);
212 memcpy(s
->inbuf_ptr
, buf_ptr
, len
);
218 if(s
->frame_size
> 0 && buf_ptr
- buf
== s
->inbuf_ptr
- s
->inbuf
219 && buf_size
+ buf_ptr
- buf
>= s
->frame_size
){
220 if(s
->header_count
> 0){
222 *poutbuf_size
= s
->frame_size
;
224 buf_ptr
= buf
+ s
->frame_size
;
225 s
->inbuf_ptr
= s
->inbuf
;
231 if (s
->frame_size
> 0 &&
232 (s
->inbuf_ptr
- s
->inbuf
) >= s
->frame_size
) {
233 if(s
->header_count
> 0){
235 *poutbuf_size
= s
->inbuf_ptr
- s
->inbuf
;
237 s
->inbuf_ptr
= s
->inbuf
;
242 return buf_ptr
- buf
;
246 AVCodecParser mpegaudio_parser
= {
247 { CODEC_ID_MP2
, CODEC_ID_MP3
},
248 sizeof(MpegAudioParseContext
),
249 mpegaudio_parse_init
,