2 * MP3 muxer and demuxer
3 * Copyright (c) 2003 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include "libavutil/avstring.h"
24 #include "libavcodec/mpegaudio.h"
25 #include "libavcodec/mpegaudiodecheader.h"
32 static int mp3_read_probe(AVProbeData
*p
)
34 int max_frames
, first_frames
= 0;
35 int fsize
, frames
, sample_rate
;
37 uint8_t *buf
, *buf0
, *buf2
, *end
;
41 if(ff_id3v2_match(buf0
)) {
42 buf0
+= ff_id3v2_tag_len(buf0
);
47 end
= p
->buf
+ p
->buf_size
- sizeof(uint32_t);
49 for(; buf
< end
; buf
= buf2
+1) {
52 for(frames
= 0; buf2
< end
; frames
++) {
53 header
= AV_RB32(buf2
);
54 fsize
= ff_mpa_decode_header(&avctx
, header
, &sample_rate
, &sample_rate
, &sample_rate
, &sample_rate
);
59 max_frames
= FFMAX(max_frames
, frames
);
63 if (first_frames
>=3) return AVPROBE_SCORE_MAX
/2+1;
64 else if(max_frames
>500)return AVPROBE_SCORE_MAX
/2;
65 else if(max_frames
>=4) return AVPROBE_SCORE_MAX
/4;
66 else if(buf0
!=p
->buf
) return AVPROBE_SCORE_MAX
/4-1;
67 else if(max_frames
>=1) return 1;
69 //mpegps_mp3_unrecognized_format.mpg has max_frames=3
73 * Try to find Xing/Info/VBRI tags and compute duration from info therein
75 static int mp3_parse_vbr_tags(AVFormatContext
*s
, AVStream
*st
, int64_t base
)
78 int frames
= -1; /* Total number of frames in file */
79 const int64_t xing_offtbl
[2][2] = {{32, 17}, {17,9}};
84 if(ff_mpa_check_header(v
) < 0)
87 if (ff_mpegaudio_decode_header(&c
, v
) == 0)
88 vbrtag_size
= c
.frame_size
;
92 /* Check for Xing / Info tag */
93 url_fseek(s
->pb
, xing_offtbl
[c
.lsf
== 1][c
.nb_channels
== 1], SEEK_CUR
);
95 if(v
== MKBETAG('X', 'i', 'n', 'g') || v
== MKBETAG('I', 'n', 'f', 'o')) {
98 frames
= get_be32(s
->pb
);
101 /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
102 url_fseek(s
->pb
, base
+ 4 + 32, SEEK_SET
);
104 if(v
== MKBETAG('V', 'B', 'R', 'I')) {
105 /* Check tag version */
106 if(get_be16(s
->pb
) == 1) {
107 /* skip delay, quality and total bytes */
108 url_fseek(s
->pb
, 8, SEEK_CUR
);
109 frames
= get_be32(s
->pb
);
116 /* Skip the vbr tag frame */
117 url_fseek(s
->pb
, base
+ vbrtag_size
, SEEK_SET
);
119 spf
= c
.lsf
? 576 : 1152; /* Samples per frame, layer 3 */
120 st
->duration
= av_rescale_q(frames
, (AVRational
){spf
, c
.sample_rate
},
125 static int mp3_read_header(AVFormatContext
*s
,
126 AVFormatParameters
*ap
)
131 st
= av_new_stream(s
, 0);
133 return AVERROR(ENOMEM
);
135 st
->codec
->codec_type
= CODEC_TYPE_AUDIO
;
136 st
->codec
->codec_id
= CODEC_ID_MP3
;
137 st
->need_parsing
= AVSTREAM_PARSE_FULL
;
143 off
= url_ftell(s
->pb
);
144 if (mp3_parse_vbr_tags(s
, st
, off
) < 0)
145 url_fseek(s
->pb
, off
, SEEK_SET
);
147 /* the parameters will be extracted from the compressed bitstream */
151 #define MP3_PACKET_SIZE 1024
153 static int mp3_read_packet(AVFormatContext
*s
, AVPacket
*pkt
)
156 // AVStream *st = s->streams[0];
158 size
= MP3_PACKET_SIZE
;
160 ret
= av_get_packet(s
->pb
, pkt
, size
);
162 pkt
->stream_index
= 0;
166 /* note: we need to modify the packet size here to handle the last
172 #if CONFIG_MP2_MUXER || CONFIG_MP3_MUXER
173 static int id3v1_set_string(AVFormatContext
*s
, const char *key
,
174 uint8_t *buf
, int buf_size
)
177 if ((tag
= av_metadata_get(s
->metadata
, key
, NULL
, 0)))
178 strncpy(buf
, tag
->value
, buf_size
);
182 static int id3v1_create_tag(AVFormatContext
*s
, uint8_t *buf
)
187 memset(buf
, 0, ID3v1_TAG_SIZE
); /* fail safe */
191 count
+= id3v1_set_string(s
, "title", buf
+ 3, 30);
192 count
+= id3v1_set_string(s
, "author", buf
+ 33, 30);
193 count
+= id3v1_set_string(s
, "album", buf
+ 63, 30);
194 count
+= id3v1_set_string(s
, "year", buf
+ 93, 4);
195 count
+= id3v1_set_string(s
, "comment", buf
+ 97, 30);
196 if ((tag
= av_metadata_get(s
->metadata
, "track", NULL
, 0))) {
198 buf
[126] = atoi(tag
->value
);
201 if ((tag
= av_metadata_get(s
->metadata
, "genre", NULL
, 0))) {
202 for(i
= 0; i
<= ID3v1_GENRE_MAX
; i
++) {
203 if (!strcasecmp(tag
->value
, ff_id3v1_genre_str
[i
])) {
215 static void id3v2_put_size(AVFormatContext
*s
, int size
)
217 put_byte(s
->pb
, size
>> 21 & 0x7f);
218 put_byte(s
->pb
, size
>> 14 & 0x7f);
219 put_byte(s
->pb
, size
>> 7 & 0x7f);
220 put_byte(s
->pb
, size
& 0x7f);
223 static void id3v2_put_ttag(AVFormatContext
*s
, const char *string
, uint32_t tag
)
225 int len
= strlen(string
);
226 put_be32(s
->pb
, tag
);
227 id3v2_put_size(s
, len
+ 1);
229 put_byte(s
->pb
, 3); /* UTF-8 */
230 put_buffer(s
->pb
, string
, len
);
235 * Write an ID3v2.4 header at beginning of stream
238 static int mp3_write_header(struct AVFormatContext
*s
)
240 AVMetadataTag
*title
, *author
, *album
, *genre
, *copyright
, *track
, *year
;
243 title
= av_metadata_get(s
->metadata
, "title", NULL
, 0);
244 author
= av_metadata_get(s
->metadata
, "author", NULL
, 0);
245 album
= av_metadata_get(s
->metadata
, "album", NULL
, 0);
246 genre
= av_metadata_get(s
->metadata
, "genre", NULL
, 0);
247 copyright
= av_metadata_get(s
->metadata
, "copyright", NULL
, 0);
248 track
= av_metadata_get(s
->metadata
, "track", NULL
, 0);
249 year
= av_metadata_get(s
->metadata
, "year", NULL
, 0);
251 if(title
) totlen
+= 11 + strlen(title
->value
);
252 if(author
) totlen
+= 11 + strlen(author
->value
);
253 if(album
) totlen
+= 11 + strlen(album
->value
);
254 if(genre
) totlen
+= 11 + strlen(genre
->value
);
255 if(copyright
) totlen
+= 11 + strlen(copyright
->value
);
256 if(track
) totlen
+= 11 + strlen(track
->value
);
257 if(year
) totlen
+= 11 + strlen(year
->value
);
258 if(!(s
->streams
[0]->codec
->flags
& CODEC_FLAG_BITEXACT
))
259 totlen
+= strlen(LIBAVFORMAT_IDENT
) + 11;
264 put_be32(s
->pb
, MKBETAG('I', 'D', '3', 0x04)); /* ID3v2.4 */
266 put_byte(s
->pb
, 0); /* flags */
268 id3v2_put_size(s
, totlen
);
270 if(title
) id3v2_put_ttag(s
, title
->value
, MKBETAG('T', 'I', 'T', '2'));
271 if(author
) id3v2_put_ttag(s
, author
->value
, MKBETAG('T', 'P', 'E', '1'));
272 if(album
) id3v2_put_ttag(s
, album
->value
, MKBETAG('T', 'A', 'L', 'B'));
273 if(genre
) id3v2_put_ttag(s
, genre
->value
, MKBETAG('T', 'C', 'O', 'N'));
274 if(copyright
) id3v2_put_ttag(s
, copyright
->value
, MKBETAG('T', 'C', 'O', 'P'));
275 if(track
) id3v2_put_ttag(s
, track
->value
, MKBETAG('T', 'R', 'C', 'K'));
276 if(year
) id3v2_put_ttag(s
, year
->value
, MKBETAG('T', 'Y', 'E', 'R'));
277 if(!(s
->streams
[0]->codec
->flags
& CODEC_FLAG_BITEXACT
))
278 id3v2_put_ttag(s
, LIBAVFORMAT_IDENT
, MKBETAG('T', 'E', 'N', 'C'));
282 static int mp3_write_packet(struct AVFormatContext
*s
, AVPacket
*pkt
)
284 put_buffer(s
->pb
, pkt
->data
, pkt
->size
);
285 put_flush_packet(s
->pb
);
289 static int mp3_write_trailer(struct AVFormatContext
*s
)
291 uint8_t buf
[ID3v1_TAG_SIZE
];
293 /* write the id3v1 tag */
294 if (id3v1_create_tag(s
, buf
) > 0) {
295 put_buffer(s
->pb
, buf
, ID3v1_TAG_SIZE
);
296 put_flush_packet(s
->pb
);
300 #endif /* CONFIG_MP2_MUXER || CONFIG_MP3_MUXER */
302 #if CONFIG_MP3_DEMUXER
303 AVInputFormat mp3_demuxer
= {
305 NULL_IF_CONFIG_SMALL("MPEG audio layer 2/3"),
310 .flags
= AVFMT_GENERIC_INDEX
,
311 .extensions
= "mp2,mp3,m2a", /* XXX: use probe */
315 AVOutputFormat mp2_muxer
= {
317 NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
329 AVOutputFormat mp3_muxer
= {
331 NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),