]> git.sesse.net Git - ffmpeg/blob - libavformat/mp3dec.c
Remove return statements following infinite loops without break
[ffmpeg] / libavformat / mp3dec.c
1 /*
2  * MP3 demuxer
3  * Copyright (c) 2003 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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 "avformat.h"
26 #include "id3v2.h"
27 #include "id3v1.h"
28 #include "libavcodec/mpegaudiodecheader.h"
29
30 /* mp3 read */
31
32 static int mp3_read_probe(AVProbeData *p)
33 {
34     int max_frames, first_frames = 0;
35     int fsize, frames, sample_rate;
36     uint32_t header;
37     uint8_t *buf, *buf0, *buf2, *end;
38     AVCodecContext avctx;
39
40     buf0 = p->buf;
41     end = p->buf + p->buf_size - sizeof(uint32_t);
42     while(buf0 < end && !*buf0)
43         buf0++;
44
45     max_frames = 0;
46     buf = buf0;
47
48     for(; buf < end; buf= buf2+1) {
49         buf2 = buf;
50
51         for(frames = 0; buf2 < end; frames++) {
52             header = AV_RB32(buf2);
53             fsize = ff_mpa_decode_header(&avctx, header, &sample_rate, &sample_rate, &sample_rate, &sample_rate);
54             if(fsize < 0)
55                 break;
56             buf2 += fsize;
57         }
58         max_frames = FFMAX(max_frames, frames);
59         if(buf == buf0)
60             first_frames= frames;
61     }
62     // keep this in sync with ac3 probe, both need to avoid
63     // issues with MPEG-files!
64     if   (first_frames>=4) return AVPROBE_SCORE_MAX/2+1;
65     else if(max_frames>500)return AVPROBE_SCORE_MAX/2;
66     else if(max_frames>=4) return AVPROBE_SCORE_MAX/4;
67     else if(max_frames>=1) return 1;
68     else                   return 0;
69 //mpegps_mp3_unrecognized_format.mpg has max_frames=3
70 }
71
72 /**
73  * Try to find Xing/Info/VBRI tags and compute duration from info therein
74  */
75 static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
76 {
77     uint32_t v, spf;
78     unsigned frames = 0; /* Total number of frames in file */
79     unsigned size = 0; /* Total number of bytes in the stream */
80     const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
81     MPADecodeHeader c;
82     int vbrtag_size = 0;
83
84     v = avio_rb32(s->pb);
85     if(ff_mpa_check_header(v) < 0)
86       return -1;
87
88     if (ff_mpegaudio_decode_header(&c, v) == 0)
89         vbrtag_size = c.frame_size;
90     if(c.layer != 3)
91         return -1;
92
93     /* Check for Xing / Info tag */
94     avio_skip(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1]);
95     v = avio_rb32(s->pb);
96     if(v == MKBETAG('X', 'i', 'n', 'g') || v == MKBETAG('I', 'n', 'f', 'o')) {
97         v = avio_rb32(s->pb);
98         if(v & 0x1)
99             frames = avio_rb32(s->pb);
100         if(v & 0x2)
101             size = avio_rb32(s->pb);
102     }
103
104     /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
105     avio_seek(s->pb, base + 4 + 32, SEEK_SET);
106     v = avio_rb32(s->pb);
107     if(v == MKBETAG('V', 'B', 'R', 'I')) {
108         /* Check tag version */
109         if(avio_rb16(s->pb) == 1) {
110             /* skip delay and quality */
111             avio_skip(s->pb, 4);
112             frames = avio_rb32(s->pb);
113             size = avio_rb32(s->pb);
114         }
115     }
116
117     if(!frames && !size)
118         return -1;
119
120     /* Skip the vbr tag frame */
121     avio_seek(s->pb, base + vbrtag_size, SEEK_SET);
122
123     spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
124     if(frames)
125         st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
126                                     st->time_base);
127     if(size && frames)
128         st->codec->bit_rate = av_rescale(size, 8 * c.sample_rate, frames * (int64_t)spf);
129
130     return 0;
131 }
132
133 static int mp3_read_header(AVFormatContext *s,
134                            AVFormatParameters *ap)
135 {
136     AVStream *st;
137     int64_t off;
138
139     st = av_new_stream(s, 0);
140     if (!st)
141         return AVERROR(ENOMEM);
142
143     st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
144     st->codec->codec_id = CODEC_ID_MP3;
145     st->need_parsing = AVSTREAM_PARSE_FULL;
146     st->start_time = 0;
147
148     // lcm of all mp3 sample rates
149     av_set_pts_info(st, 64, 1, 14112000);
150
151     off = avio_tell(s->pb);
152
153     if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
154         ff_id3v1_read(s);
155
156     if (mp3_parse_vbr_tags(s, st, off) < 0)
157         avio_seek(s->pb, off, SEEK_SET);
158
159     /* the parameters will be extracted from the compressed bitstream */
160     return 0;
161 }
162
163 #define MP3_PACKET_SIZE 1024
164
165 static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
166 {
167     int ret, size;
168     //    AVStream *st = s->streams[0];
169
170     size= MP3_PACKET_SIZE;
171
172     ret= av_get_packet(s->pb, pkt, size);
173
174     pkt->stream_index = 0;
175     if (ret <= 0) {
176         return AVERROR(EIO);
177     }
178
179     if (ret > ID3v1_TAG_SIZE &&
180         memcmp(&pkt->data[ret - ID3v1_TAG_SIZE], "TAG", 3) == 0)
181         ret -= ID3v1_TAG_SIZE;
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 ff_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 };