]> git.sesse.net Git - ffmpeg/blob - libavformat/mp3dec.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / mp3dec.c
1 /*
2  * MP3 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 "libavutil/avstring.h"
23 #include "libavutil/intreadwrite.h"
24 #include "libavutil/dict.h"
25 #include "libavutil/mathematics.h"
26 #include "avformat.h"
27 #include "internal.h"
28 #include "id3v2.h"
29 #include "id3v1.h"
30 #include "libavcodec/mpegaudiodecheader.h"
31
32 typedef struct {
33     int64_t filesize;
34 } MP3Context;
35
36 /* mp3 read */
37
38 static int mp3_read_probe(AVProbeData *p)
39 {
40     int max_frames, first_frames = 0;
41     int fsize, frames, sample_rate;
42     uint32_t header;
43     uint8_t *buf, *buf0, *buf2, *end;
44     AVCodecContext avctx;
45
46     buf0 = p->buf;
47     end = p->buf + p->buf_size - sizeof(uint32_t);
48     while(buf0 < end && !*buf0)
49         buf0++;
50
51     max_frames = 0;
52     buf = buf0;
53
54     for(; buf < end; buf= buf2+1) {
55         buf2 = buf;
56
57         for(frames = 0; buf2 < end; frames++) {
58             header = AV_RB32(buf2);
59             fsize = avpriv_mpa_decode_header(&avctx, header, &sample_rate, &sample_rate, &sample_rate, &sample_rate);
60             if(fsize < 0)
61                 break;
62             buf2 += fsize;
63         }
64         max_frames = FFMAX(max_frames, frames);
65         if(buf == buf0)
66             first_frames= frames;
67     }
68     // keep this in sync with ac3 probe, both need to avoid
69     // issues with MPEG-files!
70     if   (first_frames>=4) return AVPROBE_SCORE_MAX/2+1;
71     else if(max_frames>200)return AVPROBE_SCORE_MAX/2;
72     else if(max_frames>=4) return AVPROBE_SCORE_MAX/4;
73     else if(ff_id3v2_match(buf0, ID3v2_DEFAULT_MAGIC) && 2*ff_id3v2_tag_len(buf0) >= p->buf_size)
74                            return AVPROBE_SCORE_MAX/8;
75     else if(max_frames>=1) return 1;
76     else                   return 0;
77 //mpegps_mp3_unrecognized_format.mpg has max_frames=3
78 }
79
80 /**
81  * Try to find Xing/Info/VBRI tags and compute duration from info therein
82  */
83 static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
84 {
85     uint32_t v, spf;
86     unsigned frames = 0; /* Total number of frames in file */
87     unsigned size = 0; /* Total number of bytes in the stream */
88     const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
89     MPADecodeHeader c;
90     int vbrtag_size = 0;
91
92     v = avio_rb32(s->pb);
93     if(ff_mpa_check_header(v) < 0)
94       return -1;
95
96     if (avpriv_mpegaudio_decode_header(&c, v) == 0)
97         vbrtag_size = c.frame_size;
98     if(c.layer != 3)
99         return -1;
100
101     /* Check for Xing / Info tag */
102     avio_skip(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1]);
103     v = avio_rb32(s->pb);
104     if(v == MKBETAG('X', 'i', 'n', 'g') || v == MKBETAG('I', 'n', 'f', 'o')) {
105         v = avio_rb32(s->pb);
106         if(v & 0x1)
107             frames = avio_rb32(s->pb);
108         if(v & 0x2)
109             size = avio_rb32(s->pb);
110     }
111
112     /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
113     avio_seek(s->pb, base + 4 + 32, SEEK_SET);
114     v = avio_rb32(s->pb);
115     if(v == MKBETAG('V', 'B', 'R', 'I')) {
116         /* Check tag version */
117         if(avio_rb16(s->pb) == 1) {
118             /* skip delay and quality */
119             avio_skip(s->pb, 4);
120             size = avio_rb32(s->pb);
121             frames = avio_rb32(s->pb);
122         }
123     }
124
125     if(!frames && !size)
126         return -1;
127
128     /* Skip the vbr tag frame */
129     avio_seek(s->pb, base + vbrtag_size, SEEK_SET);
130
131     spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
132     if(frames)
133         st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
134                                     st->time_base);
135     if(size && frames)
136         st->codec->bit_rate = av_rescale(size, 8 * c.sample_rate, frames * (int64_t)spf);
137
138     return 0;
139 }
140
141 static int mp3_read_header(AVFormatContext *s)
142 {
143     MP3Context *mp3 = s->priv_data;
144     AVStream *st;
145     int64_t off;
146
147     st = avformat_new_stream(s, NULL);
148     if (!st)
149         return AVERROR(ENOMEM);
150
151     st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
152     st->codec->codec_id = CODEC_ID_MP3;
153     st->need_parsing = AVSTREAM_PARSE_FULL;
154     st->start_time = 0;
155
156     // lcm of all mp3 sample rates
157     avpriv_set_pts_info(st, 64, 1, 14112000);
158
159     s->pb->maxsize = -1;
160     off = avio_tell(s->pb);
161
162     if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
163         ff_id3v1_read(s);
164
165     if(s->pb->seekable)
166         mp3->filesize = avio_size(s->pb);
167
168     if (mp3_parse_vbr_tags(s, st, off) < 0)
169         avio_seek(s->pb, off, SEEK_SET);
170
171     /* the parameters will be extracted from the compressed bitstream */
172     return 0;
173 }
174
175 #define MP3_PACKET_SIZE 1024
176
177 static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
178 {
179     MP3Context *mp3 = s->priv_data;
180     int ret, size;
181     int64_t pos;
182     //    AVStream *st = s->streams[0];
183
184     size= MP3_PACKET_SIZE;
185     pos = avio_tell(s->pb);
186     if(mp3->filesize > ID3v1_TAG_SIZE && pos < mp3->filesize)
187         size= FFMIN(size, mp3->filesize - pos);
188
189     ret= av_get_packet(s->pb, pkt, size);
190
191     pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
192     pkt->stream_index = 0;
193     if (ret <= 0) {
194         if(ret<0)
195             return ret;
196         return AVERROR_EOF;
197     }
198
199     if (ret >= ID3v1_TAG_SIZE &&
200         memcmp(&pkt->data[ret - ID3v1_TAG_SIZE], "TAG", 3) == 0)
201         ret -= ID3v1_TAG_SIZE;
202
203     /* note: we need to modify the packet size here to handle the last
204        packet */
205     pkt->size = ret;
206     return ret;
207 }
208
209 AVInputFormat ff_mp3_demuxer = {
210     .name           = "mp3",
211     .long_name      = NULL_IF_CONFIG_SMALL("MPEG audio layer 2/3"),
212     .priv_data_size = sizeof(MP3Context),
213     .read_probe     = mp3_read_probe,
214     .read_header    = mp3_read_header,
215     .read_packet    = mp3_read_packet,
216     .flags          = AVFMT_GENERIC_INDEX,
217     .extensions     = "mp2,mp3,m2a", /* XXX: use probe */
218 };