]> git.sesse.net Git - ffmpeg/blob - libavformat/mp3.c
ceba2ce50640c3a225335a0a00a70ca1ae94a282
[ffmpeg] / libavformat / mp3.c
1 /*
2  * MP3 muxer and demuxer
3  * Copyright (c) 2003 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include <strings.h>
23 #include "libavutil/avstring.h"
24 #include "libavutil/intreadwrite.h"
25 #include "avformat.h"
26 #include "id3v2.h"
27 #include "id3v1.h"
28
29 #if CONFIG_MP3_DEMUXER
30
31 #include "libavcodec/mpegaudio.h"
32 #include "libavcodec/mpegaudiodecheader.h"
33
34 /* mp3 read */
35
36 static int mp3_read_probe(AVProbeData *p)
37 {
38     int max_frames, first_frames = 0;
39     int fsize, frames, sample_rate;
40     uint32_t header;
41     uint8_t *buf, *buf0, *buf2, *end;
42     AVCodecContext avctx;
43
44     buf0 = p->buf;
45     end = p->buf + p->buf_size - sizeof(uint32_t);
46     while(buf0 < end && !*buf0)
47         buf0++;
48
49     max_frames = 0;
50     buf = buf0;
51
52     for(; buf < end; buf= buf2+1) {
53         buf2 = buf;
54
55         for(frames = 0; buf2 < end; frames++) {
56             header = AV_RB32(buf2);
57             fsize = ff_mpa_decode_header(&avctx, header, &sample_rate, &sample_rate, &sample_rate, &sample_rate);
58             if(fsize < 0)
59                 break;
60             buf2 += fsize;
61         }
62         max_frames = FFMAX(max_frames, frames);
63         if(buf == buf0)
64             first_frames= frames;
65     }
66     // keep this in sync with ac3 probe, both need to avoid
67     // issues with MPEG-files!
68     if   (first_frames>=4) return AVPROBE_SCORE_MAX/2+1;
69     else if(max_frames>500)return AVPROBE_SCORE_MAX/2;
70     else if(max_frames>=4) return AVPROBE_SCORE_MAX/4;
71     else if(buf0!=p->buf)  return AVPROBE_SCORE_MAX/4-1;
72     else if(max_frames>=1) return 1;
73     else                   return 0;
74 //mpegps_mp3_unrecognized_format.mpg has max_frames=3
75 }
76
77 /**
78  * Try to find Xing/Info/VBRI tags and compute duration from info therein
79  */
80 static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
81 {
82     uint32_t v, spf;
83     unsigned frames = 0; /* Total number of frames in file */
84     unsigned size = 0; /* Total number of bytes in the stream */
85     const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
86     MPADecodeHeader c;
87     int vbrtag_size = 0;
88
89     v = get_be32(s->pb);
90     if(ff_mpa_check_header(v) < 0)
91       return -1;
92
93     if (ff_mpegaudio_decode_header(&c, v) == 0)
94         vbrtag_size = c.frame_size;
95     if(c.layer != 3)
96         return -1;
97
98     /* Check for Xing / Info tag */
99     url_fseek(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1], SEEK_CUR);
100     v = get_be32(s->pb);
101     if(v == MKBETAG('X', 'i', 'n', 'g') || v == MKBETAG('I', 'n', 'f', 'o')) {
102         v = get_be32(s->pb);
103         if(v & 0x1)
104             frames = get_be32(s->pb);
105         if(v & 0x2)
106             size = get_be32(s->pb);
107     }
108
109     /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
110     url_fseek(s->pb, base + 4 + 32, SEEK_SET);
111     v = get_be32(s->pb);
112     if(v == MKBETAG('V', 'B', 'R', 'I')) {
113         /* Check tag version */
114         if(get_be16(s->pb) == 1) {
115             /* skip delay and quality */
116             url_fseek(s->pb, 4, SEEK_CUR);
117             frames = get_be32(s->pb);
118             size = get_be32(s->pb);
119         }
120     }
121
122     if(!frames && !size)
123         return -1;
124
125     /* Skip the vbr tag frame */
126     url_fseek(s->pb, base + vbrtag_size, SEEK_SET);
127
128     spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
129     if(frames)
130         st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
131                                     st->time_base);
132     if(size)
133         st->codec->bit_rate = av_rescale(size, 8 * c.sample_rate, frames * (int64_t)spf);
134
135     return 0;
136 }
137
138 static int mp3_read_header(AVFormatContext *s,
139                            AVFormatParameters *ap)
140 {
141     AVStream *st;
142     int64_t off;
143
144     st = av_new_stream(s, 0);
145     if (!st)
146         return AVERROR(ENOMEM);
147
148     st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
149     st->codec->codec_id = CODEC_ID_MP3;
150     st->need_parsing = AVSTREAM_PARSE_FULL;
151     st->start_time = 0;
152
153     // lcm of all mp3 sample rates
154     av_set_pts_info(st, 64, 1, 14112000);
155
156     off = url_ftell(s->pb);
157
158     if (!av_metadata_get(s->metadata, "", NULL, AV_METADATA_IGNORE_SUFFIX))
159         ff_id3v1_read(s);
160
161     if (mp3_parse_vbr_tags(s, st, off) < 0)
162         url_fseek(s->pb, off, SEEK_SET);
163
164     /* the parameters will be extracted from the compressed bitstream */
165     return 0;
166 }
167
168 #define MP3_PACKET_SIZE 1024
169
170 static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
171 {
172     int ret, size;
173     //    AVStream *st = s->streams[0];
174
175     size= MP3_PACKET_SIZE;
176
177     ret= av_get_packet(s->pb, pkt, size);
178
179     pkt->stream_index = 0;
180     if (ret <= 0) {
181         return AVERROR(EIO);
182     }
183     /* note: we need to modify the packet size here to handle the last
184        packet */
185     pkt->size = ret;
186     return ret;
187 }
188
189 AVInputFormat mp3_demuxer = {
190     "mp3",
191     NULL_IF_CONFIG_SMALL("MPEG audio layer 2/3"),
192     0,
193     mp3_read_probe,
194     mp3_read_header,
195     mp3_read_packet,
196     .flags= AVFMT_GENERIC_INDEX,
197     .extensions = "mp2,mp3,m2a", /* XXX: use probe */
198 };
199 #endif
200
201 #if CONFIG_MP2_MUXER || CONFIG_MP3_MUXER
202 static int id3v1_set_string(AVFormatContext *s, const char *key,
203                             uint8_t *buf, int buf_size)
204 {
205     AVMetadataTag *tag;
206     if ((tag = av_metadata_get(s->metadata, key, NULL, 0)))
207         strncpy(buf, tag->value, buf_size);
208     return !!tag;
209 }
210
211 static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
212 {
213     AVMetadataTag *tag;
214     int i, count = 0;
215
216     memset(buf, 0, ID3v1_TAG_SIZE); /* fail safe */
217     buf[0] = 'T';
218     buf[1] = 'A';
219     buf[2] = 'G';
220     count += id3v1_set_string(s, "TIT2",    buf +  3, 30);       //title
221     count += id3v1_set_string(s, "TPE1",    buf + 33, 30);       //author|artist
222     count += id3v1_set_string(s, "TALB",    buf + 63, 30);       //album
223     count += id3v1_set_string(s, "TDRL",    buf + 93,  4);       //date
224     count += id3v1_set_string(s, "comment", buf + 97, 30);
225     if ((tag = av_metadata_get(s->metadata, "TRCK", NULL, 0))) { //track
226         buf[125] = 0;
227         buf[126] = atoi(tag->value);
228         count++;
229     }
230     buf[127] = 0xFF; /* default to unknown genre */
231     if ((tag = av_metadata_get(s->metadata, "TCON", NULL, 0))) { //genre
232         for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
233             if (!strcasecmp(tag->value, ff_id3v1_genre_str[i])) {
234                 buf[127] = i;
235                 count++;
236                 break;
237             }
238         }
239     }
240     return count;
241 }
242
243 /* simple formats */
244
245 static void id3v2_put_size(AVFormatContext *s, int size)
246 {
247     put_byte(s->pb, size >> 21 & 0x7f);
248     put_byte(s->pb, size >> 14 & 0x7f);
249     put_byte(s->pb, size >> 7  & 0x7f);
250     put_byte(s->pb, size       & 0x7f);
251 }
252
253 static void id3v2_put_ttag(AVFormatContext *s, const char *buf, int len,
254                            uint32_t tag)
255 {
256     put_be32(s->pb, tag);
257     id3v2_put_size(s, len + 1);
258     put_be16(s->pb, 0);
259     put_byte(s->pb, 3); /* UTF-8 */
260     put_buffer(s->pb, buf, len);
261 }
262
263
264 static int mp3_write_packet(struct AVFormatContext *s, AVPacket *pkt)
265 {
266     put_buffer(s->pb, pkt->data, pkt->size);
267     put_flush_packet(s->pb);
268     return 0;
269 }
270
271 static int mp3_write_trailer(struct AVFormatContext *s)
272 {
273     uint8_t buf[ID3v1_TAG_SIZE];
274
275     /* write the id3v1 tag */
276     if (id3v1_create_tag(s, buf) > 0) {
277         put_buffer(s->pb, buf, ID3v1_TAG_SIZE);
278         put_flush_packet(s->pb);
279     }
280     return 0;
281 }
282 #endif /* CONFIG_MP2_MUXER || CONFIG_MP3_MUXER */
283
284 #if CONFIG_MP2_MUXER
285 AVOutputFormat mp2_muxer = {
286     "mp2",
287     NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
288     "audio/x-mpeg",
289     "mp2,m2a",
290     0,
291     CODEC_ID_MP2,
292     CODEC_ID_NONE,
293     NULL,
294     mp3_write_packet,
295     mp3_write_trailer,
296 };
297 #endif
298
299 #if CONFIG_MP3_MUXER
300 /**
301  * Write an ID3v2.4 header at beginning of stream
302  */
303
304 static int mp3_write_header(struct AVFormatContext *s)
305 {
306     AVMetadataTag *t = NULL;
307     int totlen = 0;
308     int64_t size_pos, cur_pos;
309
310     put_be32(s->pb, MKBETAG('I', 'D', '3', 0x04)); /* ID3v2.4 */
311     put_byte(s->pb, 0);
312     put_byte(s->pb, 0); /* flags */
313
314     /* reserve space for size */
315     size_pos = url_ftell(s->pb);
316     put_be32(s->pb, 0);
317
318     ff_metadata_conv(&s->metadata, ff_id3v2_metadata_conv, NULL);
319     while ((t = av_metadata_get(s->metadata, "", t, AV_METADATA_IGNORE_SUFFIX))) {
320         uint32_t tag = 0;
321
322         if (t->key[0] == 'T' && strlen(t->key) == 4) {
323             int i;
324             for (i = 0; *ff_id3v2_tags[i]; i++)
325                 if (AV_RB32(t->key) == AV_RB32(ff_id3v2_tags[i])) {
326                     int len = strlen(t->value);
327                     tag = AV_RB32(t->key);
328                     totlen += len + ID3v2_HEADER_SIZE + 2;
329                     id3v2_put_ttag(s, t->value, len + 1, tag);
330                     break;
331                 }
332         }
333
334         if (!tag) { /* unknown tag, write as TXXX frame */
335             int   len = strlen(t->key), len1 = strlen(t->value);
336             char *buf = av_malloc(len + len1 + 2);
337             if (!buf)
338                 return AVERROR(ENOMEM);
339             tag = MKBETAG('T', 'X', 'X', 'X');
340             strcpy(buf,           t->key);
341             strcpy(buf + len + 1, t->value);
342             id3v2_put_ttag(s, buf, len + len1 + 2, tag);
343             totlen += len + len1 + ID3v2_HEADER_SIZE + 3;
344             av_free(buf);
345         }
346     }
347
348     cur_pos = url_ftell(s->pb);
349     url_fseek(s->pb, size_pos, SEEK_SET);
350     id3v2_put_size(s, totlen);
351     url_fseek(s->pb, cur_pos, SEEK_SET);
352
353     return 0;
354 }
355
356 AVOutputFormat mp3_muxer = {
357     "mp3",
358     NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
359     "audio/x-mpeg",
360     "mp3",
361     0,
362     CODEC_ID_MP3,
363     CODEC_ID_NONE,
364     mp3_write_header,
365     mp3_write_packet,
366     mp3_write_trailer,
367     AVFMT_NOTIMESTAMPS,
368 };
369 #endif