]> git.sesse.net Git - ffmpeg/blob - libavformat/mp3.c
Sync AC3 probe values with MP3 probe values, they have to avoid similar issues.
[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 "avformat.h"
25 #include "id3v2.h"
26 #include "id3v1.h"
27
28 #if CONFIG_MP3_DEMUXER
29
30 #include "libavcodec/mpegaudio.h"
31 #include "libavcodec/mpegaudiodecheader.h"
32
33 /* mp3 read */
34
35 static int mp3_read_probe(AVProbeData *p)
36 {
37     int max_frames, first_frames = 0;
38     int fsize, frames, sample_rate;
39     uint32_t header;
40     uint8_t *buf, *buf0, *buf2, *end;
41     AVCodecContext avctx;
42
43     buf0 = p->buf;
44     if(ff_id3v2_match(buf0)) {
45         buf0 += ff_id3v2_tag_len(buf0);
46     }
47
48     max_frames = 0;
49     buf = buf0;
50     end = p->buf + p->buf_size - sizeof(uint32_t);
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     int frames = -1; /* Total number of frames in file */
84     const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
85     MPADecodeHeader c;
86     int vbrtag_size = 0;
87
88     v = get_be32(s->pb);
89     if(ff_mpa_check_header(v) < 0)
90       return -1;
91
92     if (ff_mpegaudio_decode_header(&c, v) == 0)
93         vbrtag_size = c.frame_size;
94     if(c.layer != 3)
95         return -1;
96
97     /* Check for Xing / Info tag */
98     url_fseek(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1], SEEK_CUR);
99     v = get_be32(s->pb);
100     if(v == MKBETAG('X', 'i', 'n', 'g') || v == MKBETAG('I', 'n', 'f', 'o')) {
101         v = get_be32(s->pb);
102         if(v & 0x1)
103             frames = get_be32(s->pb);
104     }
105
106     /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
107     url_fseek(s->pb, base + 4 + 32, SEEK_SET);
108     v = get_be32(s->pb);
109     if(v == MKBETAG('V', 'B', 'R', 'I')) {
110         /* Check tag version */
111         if(get_be16(s->pb) == 1) {
112             /* skip delay, quality and total bytes */
113             url_fseek(s->pb, 8, SEEK_CUR);
114             frames = get_be32(s->pb);
115         }
116     }
117
118     if(frames < 0)
119         return -1;
120
121     /* Skip the vbr tag frame */
122     url_fseek(s->pb, base + vbrtag_size, SEEK_SET);
123
124     spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
125     st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
126                                 st->time_base);
127     return 0;
128 }
129
130 static int mp3_read_header(AVFormatContext *s,
131                            AVFormatParameters *ap)
132 {
133     AVStream *st;
134     int64_t off;
135
136     st = av_new_stream(s, 0);
137     if (!st)
138         return AVERROR(ENOMEM);
139
140     st->codec->codec_type = CODEC_TYPE_AUDIO;
141     st->codec->codec_id = CODEC_ID_MP3;
142     st->need_parsing = AVSTREAM_PARSE_FULL;
143     st->start_time = 0;
144
145     ff_id3v1_read(s);
146     ff_id3v2_read(s);
147
148     off = url_ftell(s->pb);
149     if (mp3_parse_vbr_tags(s, st, off) < 0)
150         url_fseek(s->pb, off, SEEK_SET);
151
152     /* the parameters will be extracted from the compressed bitstream */
153     return 0;
154 }
155
156 #define MP3_PACKET_SIZE 1024
157
158 static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
159 {
160     int ret, size;
161     //    AVStream *st = s->streams[0];
162
163     size= MP3_PACKET_SIZE;
164
165     ret= av_get_packet(s->pb, pkt, size);
166
167     pkt->stream_index = 0;
168     if (ret <= 0) {
169         return AVERROR(EIO);
170     }
171     /* note: we need to modify the packet size here to handle the last
172        packet */
173     pkt->size = ret;
174     return ret;
175 }
176
177 AVInputFormat mp3_demuxer = {
178     "mp3",
179     NULL_IF_CONFIG_SMALL("MPEG audio layer 2/3"),
180     0,
181     mp3_read_probe,
182     mp3_read_header,
183     mp3_read_packet,
184     .flags= AVFMT_GENERIC_INDEX,
185     .extensions = "mp2,mp3,m2a", /* XXX: use probe */
186 };
187 #endif
188
189 #if CONFIG_MP2_MUXER || CONFIG_MP3_MUXER
190 static int id3v1_set_string(AVFormatContext *s, const char *key,
191                             uint8_t *buf, int buf_size)
192 {
193     AVMetadataTag *tag;
194     if ((tag = av_metadata_get(s->metadata, key, NULL, 0)))
195         strncpy(buf, tag->value, buf_size);
196     return !!tag;
197 }
198
199 static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
200 {
201     AVMetadataTag *tag;
202     int i, count = 0;
203
204     memset(buf, 0, ID3v1_TAG_SIZE); /* fail safe */
205     buf[0] = 'T';
206     buf[1] = 'A';
207     buf[2] = 'G';
208     count += id3v1_set_string(s, "title",   buf +  3, 30);
209     count += id3v1_set_string(s, "author",  buf + 33, 30);
210     count += id3v1_set_string(s, "album",   buf + 63, 30);
211     count += id3v1_set_string(s, "year",    buf + 93,  4);
212     count += id3v1_set_string(s, "comment", buf + 97, 30);
213     if ((tag = av_metadata_get(s->metadata, "track", NULL, 0))) {
214         buf[125] = 0;
215         buf[126] = atoi(tag->value);
216         count++;
217     }
218     buf[127] = 0xFF; /* default to unknown genre */
219     if ((tag = av_metadata_get(s->metadata, "genre", NULL, 0))) {
220         for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
221             if (!strcasecmp(tag->value, ff_id3v1_genre_str[i])) {
222                 buf[127] = i;
223                 count++;
224                 break;
225             }
226         }
227     }
228     return count;
229 }
230
231 /* simple formats */
232
233 static void id3v2_put_size(AVFormatContext *s, int size)
234 {
235     put_byte(s->pb, size >> 21 & 0x7f);
236     put_byte(s->pb, size >> 14 & 0x7f);
237     put_byte(s->pb, size >> 7  & 0x7f);
238     put_byte(s->pb, size       & 0x7f);
239 }
240
241 static void id3v2_put_ttag(AVFormatContext *s, const char *string, uint32_t tag)
242 {
243     int len = strlen(string);
244     put_be32(s->pb, tag);
245     id3v2_put_size(s, len + 1);
246     put_be16(s->pb, 0);
247     put_byte(s->pb, 3); /* UTF-8 */
248     put_buffer(s->pb, string, len);
249 }
250
251
252 /**
253  * Write an ID3v2.4 header at beginning of stream
254  */
255
256 static int mp3_write_header(struct AVFormatContext *s)
257 {
258     AVMetadataTag *title, *author, *album, *genre, *copyright, *track, *year;
259     int totlen = 0;
260
261     title     = av_metadata_get(s->metadata, "title",     NULL, 0);
262     author    = av_metadata_get(s->metadata, "author",    NULL, 0);
263     album     = av_metadata_get(s->metadata, "album",     NULL, 0);
264     genre     = av_metadata_get(s->metadata, "genre",     NULL, 0);
265     copyright = av_metadata_get(s->metadata, "copyright", NULL, 0);
266     track     = av_metadata_get(s->metadata, "track",     NULL, 0);
267     year      = av_metadata_get(s->metadata, "year",      NULL, 0);
268
269     if(title)     totlen += 11 + strlen(title->value);
270     if(author)    totlen += 11 + strlen(author->value);
271     if(album)     totlen += 11 + strlen(album->value);
272     if(genre)     totlen += 11 + strlen(genre->value);
273     if(copyright) totlen += 11 + strlen(copyright->value);
274     if(track)     totlen += 11 + strlen(track->value);
275     if(year)      totlen += 11 + strlen(year->value);
276     if(!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT))
277         totlen += strlen(LIBAVFORMAT_IDENT) + 11;
278
279     if(totlen == 0)
280         return 0;
281
282     put_be32(s->pb, MKBETAG('I', 'D', '3', 0x04)); /* ID3v2.4 */
283     put_byte(s->pb, 0);
284     put_byte(s->pb, 0); /* flags */
285
286     id3v2_put_size(s, totlen);
287
288     if(title)     id3v2_put_ttag(s, title->value,     MKBETAG('T', 'I', 'T', '2'));
289     if(author)    id3v2_put_ttag(s, author->value,    MKBETAG('T', 'P', 'E', '1'));
290     if(album)     id3v2_put_ttag(s, album->value,     MKBETAG('T', 'A', 'L', 'B'));
291     if(genre)     id3v2_put_ttag(s, genre->value,     MKBETAG('T', 'C', 'O', 'N'));
292     if(copyright) id3v2_put_ttag(s, copyright->value, MKBETAG('T', 'C', 'O', 'P'));
293     if(track)     id3v2_put_ttag(s, track->value,     MKBETAG('T', 'R', 'C', 'K'));
294     if(year)      id3v2_put_ttag(s, year->value,      MKBETAG('T', 'Y', 'E', 'R'));
295     if(!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT))
296         id3v2_put_ttag(s, LIBAVFORMAT_IDENT,            MKBETAG('T', 'E', 'N', 'C'));
297     return 0;
298 }
299
300 static int mp3_write_packet(struct AVFormatContext *s, AVPacket *pkt)
301 {
302     put_buffer(s->pb, pkt->data, pkt->size);
303     put_flush_packet(s->pb);
304     return 0;
305 }
306
307 static int mp3_write_trailer(struct AVFormatContext *s)
308 {
309     uint8_t buf[ID3v1_TAG_SIZE];
310
311     /* write the id3v1 tag */
312     if (id3v1_create_tag(s, buf) > 0) {
313         put_buffer(s->pb, buf, ID3v1_TAG_SIZE);
314         put_flush_packet(s->pb);
315     }
316     return 0;
317 }
318 #endif /* CONFIG_MP2_MUXER || CONFIG_MP3_MUXER */
319
320 #if CONFIG_MP2_MUXER
321 AVOutputFormat mp2_muxer = {
322     "mp2",
323     NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
324     "audio/x-mpeg",
325     "mp2,m2a",
326     0,
327     CODEC_ID_MP2,
328     CODEC_ID_NONE,
329     NULL,
330     mp3_write_packet,
331     mp3_write_trailer,
332 };
333 #endif
334 #if CONFIG_MP3_MUXER
335 AVOutputFormat mp3_muxer = {
336     "mp3",
337     NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
338     "audio/x-mpeg",
339     "mp3",
340     0,
341     CODEC_ID_MP3,
342     CODEC_ID_NONE,
343     mp3_write_header,
344     mp3_write_packet,
345     mp3_write_trailer,
346     .metadata_conv = ff_id3v2_metadata_conv,
347 };
348 #endif