2005-12-17 20:14:38 +02:00
|
|
|
/*
|
2011-01-21 15:53:46 +02:00
|
|
|
* MP3 demuxer
|
2009-01-19 17:46:40 +02:00
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
2003-09-09 01:34:28 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2006-10-07 18:30:46 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2003-09-09 01:34:28 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-09-09 01:34:28 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2003-09-09 01:34:28 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 19:35:10 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-09-09 01:34:28 +03:00
|
|
|
*/
|
2008-05-09 14:56:36 +03:00
|
|
|
|
|
|
|
#include "libavutil/avstring.h"
|
2009-10-20 01:36:57 +03:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2011-05-22 13:46:29 +03:00
|
|
|
#include "libavutil/dict.h"
|
2011-06-04 14:58:23 +03:00
|
|
|
#include "libavutil/mathematics.h"
|
2003-09-09 01:34:28 +03:00
|
|
|
#include "avformat.h"
|
2011-11-29 21:28:15 +03:00
|
|
|
#include "internal.h"
|
2009-01-15 14:23:03 +02:00
|
|
|
#include "id3v2.h"
|
2009-06-11 18:26:57 +03:00
|
|
|
#include "id3v1.h"
|
2009-09-22 15:39:19 +03:00
|
|
|
#include "libavcodec/mpegaudiodecheader.h"
|
|
|
|
|
2003-09-09 01:34:28 +03:00
|
|
|
/* mp3 read */
|
2006-06-06 01:41:14 +03:00
|
|
|
|
|
|
|
static int mp3_read_probe(AVProbeData *p)
|
|
|
|
{
|
2007-07-08 16:42:46 +03:00
|
|
|
int max_frames, first_frames = 0;
|
2006-10-30 04:19:55 +02:00
|
|
|
int fsize, frames, sample_rate;
|
2006-09-10 23:31:58 +03:00
|
|
|
uint32_t header;
|
2009-01-19 23:54:06 +02:00
|
|
|
uint8_t *buf, *buf0, *buf2, *end;
|
2006-09-10 23:31:58 +03:00
|
|
|
AVCodecContext avctx;
|
2006-06-06 01:41:14 +03:00
|
|
|
|
2009-01-19 23:54:06 +02:00
|
|
|
buf0 = p->buf;
|
2010-02-28 18:40:17 +02:00
|
|
|
end = p->buf + p->buf_size - sizeof(uint32_t);
|
|
|
|
while(buf0 < end && !*buf0)
|
|
|
|
buf0++;
|
2006-06-06 01:41:14 +03:00
|
|
|
|
2006-09-10 23:31:58 +03:00
|
|
|
max_frames = 0;
|
2009-01-19 23:54:06 +02:00
|
|
|
buf = buf0;
|
2006-06-06 01:41:14 +03:00
|
|
|
|
2007-12-03 10:27:04 +02:00
|
|
|
for(; buf < end; buf= buf2+1) {
|
2006-09-10 23:31:58 +03:00
|
|
|
buf2 = buf;
|
2006-06-06 01:41:14 +03:00
|
|
|
|
2006-09-12 17:16:48 +03:00
|
|
|
for(frames = 0; buf2 < end; frames++) {
|
2007-07-06 12:32:34 +03:00
|
|
|
header = AV_RB32(buf2);
|
2011-10-17 10:28:53 +03:00
|
|
|
fsize = avpriv_mpa_decode_header(&avctx, header, &sample_rate, &sample_rate, &sample_rate, &sample_rate);
|
2006-09-10 23:31:58 +03:00
|
|
|
if(fsize < 0)
|
|
|
|
break;
|
|
|
|
buf2 += fsize;
|
|
|
|
}
|
|
|
|
max_frames = FFMAX(max_frames, frames);
|
2009-01-19 23:54:06 +02:00
|
|
|
if(buf == buf0)
|
2006-09-21 00:23:32 +03:00
|
|
|
first_frames= frames;
|
2006-09-10 23:31:58 +03:00
|
|
|
}
|
2009-09-29 13:23:47 +03:00
|
|
|
// keep this in sync with ac3 probe, both need to avoid
|
|
|
|
// issues with MPEG-files!
|
2012-05-03 01:45:18 +03:00
|
|
|
if (first_frames >= 4) return AVPROBE_SCORE_MAX / 2 + 1;
|
|
|
|
|
|
|
|
if (max_frames) {
|
|
|
|
int pes = 0, i;
|
|
|
|
unsigned int code = -1;
|
|
|
|
|
|
|
|
#define VIDEO_ID 0x000001e0
|
|
|
|
#define AUDIO_ID 0x000001c0
|
|
|
|
/* do a search for mpegps headers to be able to properly bias
|
|
|
|
* towards mpegps if we detect this stream as both. */
|
|
|
|
for (i = 0; i<p->buf_size; i++) {
|
|
|
|
code = (code << 8) + p->buf[i];
|
|
|
|
if ((code & 0xffffff00) == 0x100) {
|
|
|
|
if ((code & 0x1f0) == VIDEO_ID) pes++;
|
|
|
|
else if((code & 0x1e0) == AUDIO_ID) pes++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pes)
|
|
|
|
max_frames = (max_frames + pes - 1) / pes;
|
|
|
|
}
|
|
|
|
if (max_frames > 500) return AVPROBE_SCORE_MAX / 2;
|
|
|
|
else if (max_frames >= 4) return AVPROBE_SCORE_MAX / 4;
|
|
|
|
else if (max_frames >= 1) return 1;
|
|
|
|
else return 0;
|
2009-04-22 05:58:20 +03:00
|
|
|
//mpegps_mp3_unrecognized_format.mpg has max_frames=3
|
2006-06-06 01:41:14 +03:00
|
|
|
}
|
|
|
|
|
2007-10-23 16:35:20 +03:00
|
|
|
/**
|
2007-10-24 07:56:22 +03:00
|
|
|
* Try to find Xing/Info/VBRI tags and compute duration from info therein
|
2007-10-23 16:35:20 +03:00
|
|
|
*/
|
2009-01-04 18:23:18 +02:00
|
|
|
static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
|
2007-10-23 16:35:20 +03:00
|
|
|
{
|
2007-10-23 20:10:41 +03:00
|
|
|
uint32_t v, spf;
|
2010-07-27 13:11:05 +03:00
|
|
|
unsigned frames = 0; /* Total number of frames in file */
|
2010-07-27 13:08:34 +03:00
|
|
|
unsigned size = 0; /* Total number of bytes in the stream */
|
2008-10-03 13:16:29 +03:00
|
|
|
const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
|
2009-01-23 14:09:32 +02:00
|
|
|
MPADecodeHeader c;
|
2009-01-04 18:23:18 +02:00
|
|
|
int vbrtag_size = 0;
|
2007-10-23 16:35:20 +03:00
|
|
|
|
2011-02-21 17:43:01 +02:00
|
|
|
v = avio_rb32(s->pb);
|
2007-11-04 21:52:08 +02:00
|
|
|
if(ff_mpa_check_header(v) < 0)
|
2009-01-04 18:23:18 +02:00
|
|
|
return -1;
|
2007-11-04 21:52:08 +02:00
|
|
|
|
2011-10-17 10:28:53 +03:00
|
|
|
if (avpriv_mpegaudio_decode_header(&c, v) == 0)
|
2009-01-04 18:23:18 +02:00
|
|
|
vbrtag_size = c.frame_size;
|
2007-10-23 20:10:41 +03:00
|
|
|
if(c.layer != 3)
|
2009-01-04 18:23:18 +02:00
|
|
|
return -1;
|
2007-10-23 16:35:20 +03:00
|
|
|
|
2007-10-23 20:10:41 +03:00
|
|
|
/* Check for Xing / Info tag */
|
2011-03-17 08:35:18 +02:00
|
|
|
avio_skip(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1]);
|
2011-02-21 17:43:01 +02:00
|
|
|
v = avio_rb32(s->pb);
|
2007-10-23 20:10:41 +03:00
|
|
|
if(v == MKBETAG('X', 'i', 'n', 'g') || v == MKBETAG('I', 'n', 'f', 'o')) {
|
2011-02-21 17:43:01 +02:00
|
|
|
v = avio_rb32(s->pb);
|
2007-10-23 20:28:30 +03:00
|
|
|
if(v & 0x1)
|
2011-02-21 17:43:01 +02:00
|
|
|
frames = avio_rb32(s->pb);
|
2010-07-27 13:08:34 +03:00
|
|
|
if(v & 0x2)
|
2011-02-21 17:43:01 +02:00
|
|
|
size = avio_rb32(s->pb);
|
2007-10-23 16:35:20 +03:00
|
|
|
}
|
2007-10-23 20:10:41 +03:00
|
|
|
|
2007-10-24 07:56:22 +03:00
|
|
|
/* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
|
2011-02-28 15:57:54 +02:00
|
|
|
avio_seek(s->pb, base + 4 + 32, SEEK_SET);
|
2011-02-21 17:43:01 +02:00
|
|
|
v = avio_rb32(s->pb);
|
2007-10-24 07:56:22 +03:00
|
|
|
if(v == MKBETAG('V', 'B', 'R', 'I')) {
|
|
|
|
/* Check tag version */
|
2011-02-21 17:43:01 +02:00
|
|
|
if(avio_rb16(s->pb) == 1) {
|
2010-07-27 13:08:34 +03:00
|
|
|
/* skip delay and quality */
|
2011-03-15 10:14:38 +02:00
|
|
|
avio_skip(s->pb, 4);
|
2011-02-21 17:43:01 +02:00
|
|
|
size = avio_rb32(s->pb);
|
2011-09-17 01:00:19 +03:00
|
|
|
frames = avio_rb32(s->pb);
|
2007-10-24 07:56:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:11:05 +03:00
|
|
|
if(!frames && !size)
|
2009-01-04 18:23:18 +02:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Skip the vbr tag frame */
|
2011-02-28 15:57:54 +02:00
|
|
|
avio_seek(s->pb, base + vbrtag_size, SEEK_SET);
|
2007-10-23 20:10:41 +03:00
|
|
|
|
|
|
|
spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
|
2010-07-27 13:11:05 +03:00
|
|
|
if(frames)
|
2010-07-27 13:08:34 +03:00
|
|
|
st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
|
|
|
|
st->time_base);
|
2010-12-29 03:33:36 +02:00
|
|
|
if(size && frames)
|
2010-07-27 13:08:34 +03:00
|
|
|
st->codec->bit_rate = av_rescale(size, 8 * c.sample_rate, frames * (int64_t)spf);
|
|
|
|
|
2009-01-04 18:23:18 +02:00
|
|
|
return 0;
|
2007-10-23 16:35:20 +03:00
|
|
|
}
|
|
|
|
|
2012-01-12 15:20:36 +03:00
|
|
|
static int mp3_read_header(AVFormatContext *s)
|
2003-09-09 01:34:28 +03:00
|
|
|
{
|
|
|
|
AVStream *st;
|
2008-10-03 13:16:29 +03:00
|
|
|
int64_t off;
|
2003-09-09 01:34:28 +03:00
|
|
|
|
2011-06-18 12:43:24 +03:00
|
|
|
st = avformat_new_stream(s, NULL);
|
2003-09-09 01:34:28 +03:00
|
|
|
if (!st)
|
2007-07-19 18:21:30 +03:00
|
|
|
return AVERROR(ENOMEM);
|
2003-09-09 01:34:28 +03:00
|
|
|
|
2010-03-31 02:30:55 +03:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2012-08-05 12:11:04 +03:00
|
|
|
st->codec->codec_id = AV_CODEC_ID_MP3;
|
2007-04-15 16:51:57 +03:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2007-10-18 18:02:34 +03:00
|
|
|
st->start_time = 0;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2009-11-22 23:04:18 +02:00
|
|
|
// lcm of all mp3 sample rates
|
2011-11-29 21:28:15 +03:00
|
|
|
avpriv_set_pts_info(st, 64, 1, 14112000);
|
2009-11-22 23:04:18 +02:00
|
|
|
|
2011-03-03 21:11:45 +02:00
|
|
|
off = avio_tell(s->pb);
|
2010-02-10 14:44:16 +02:00
|
|
|
|
2011-05-22 13:46:29 +03:00
|
|
|
if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
|
2009-10-06 00:36:56 +03:00
|
|
|
ff_id3v1_read(s);
|
2003-09-09 01:34:28 +03:00
|
|
|
|
2009-01-04 18:23:18 +02:00
|
|
|
if (mp3_parse_vbr_tags(s, st, off) < 0)
|
2011-02-28 15:57:54 +02:00
|
|
|
avio_seek(s->pb, off, SEEK_SET);
|
2007-10-23 16:35:20 +03:00
|
|
|
|
2003-09-09 01:34:28 +03:00
|
|
|
/* the parameters will be extracted from the compressed bitstream */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MP3_PACKET_SIZE 1024
|
|
|
|
|
|
|
|
static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|
|
|
{
|
2012-07-28 13:20:08 +03:00
|
|
|
int ret;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2012-07-28 13:20:08 +03:00
|
|
|
ret = av_get_packet(s->pb, pkt, MP3_PACKET_SIZE);
|
2012-07-28 13:21:21 +03:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2003-09-09 01:34:28 +03:00
|
|
|
|
|
|
|
pkt->stream_index = 0;
|
2011-01-22 00:55:31 +02:00
|
|
|
|
|
|
|
if (ret > ID3v1_TAG_SIZE &&
|
|
|
|
memcmp(&pkt->data[ret - ID3v1_TAG_SIZE], "TAG", 3) == 0)
|
|
|
|
ret -= ID3v1_TAG_SIZE;
|
|
|
|
|
2003-09-09 01:34:28 +03:00
|
|
|
/* note: we need to modify the packet size here to handle the last
|
|
|
|
packet */
|
|
|
|
pkt->size = ret;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-01-26 00:03:28 +02:00
|
|
|
AVInputFormat ff_mp3_demuxer = {
|
2011-07-16 23:18:12 +03:00
|
|
|
.name = "mp3",
|
2012-07-24 04:23:48 +03:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("MP2/3 (MPEG audio layer 2/3)"),
|
2011-07-16 23:18:12 +03:00
|
|
|
.read_probe = mp3_read_probe,
|
|
|
|
.read_header = mp3_read_header,
|
|
|
|
.read_packet = mp3_read_packet,
|
2012-04-06 17:50:48 +03:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "mp2,mp3,m2a", /* XXX: use probe */
|
2009-09-22 15:39:19 +03:00
|
|
|
};
|