2005-12-17 18:14:38 +00:00
|
|
|
/*
|
2011-01-21 13:53:46 +00:00
|
|
|
* MP3 demuxer
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
2003-09-08 22:34:28 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2006-10-07 15:30:46 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2003-09-08 22:34:28 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-09-08 22:34:28 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2003-09-08 22:34:28 +00: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 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-09-08 22:34:28 +00:00
|
|
|
*/
|
2008-05-09 11:56:36 +00:00
|
|
|
|
|
|
|
#include "libavutil/avstring.h"
|
2009-10-19 22:36:57 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2011-05-22 10:46:29 +00:00
|
|
|
#include "libavutil/dict.h"
|
2011-06-04 11:58:23 +00:00
|
|
|
#include "libavutil/mathematics.h"
|
2003-09-08 22:34:28 +00:00
|
|
|
#include "avformat.h"
|
2011-11-29 18:28:15 +00:00
|
|
|
#include "internal.h"
|
2009-01-15 12:23:03 +00:00
|
|
|
#include "id3v2.h"
|
2009-06-11 15:26:57 +00:00
|
|
|
#include "id3v1.h"
|
2009-09-22 12:39:19 +00:00
|
|
|
#include "libavcodec/mpegaudiodecheader.h"
|
|
|
|
|
2012-09-01 22:30:41 +00:00
|
|
|
#define XING_FLAG_FRAMES 0x01
|
|
|
|
#define XING_FLAG_SIZE 0x02
|
2012-09-02 13:36:18 +00:00
|
|
|
#define XING_FLAG_TOC 0x04
|
|
|
|
|
|
|
|
#define XING_TOC_COUNT 100
|
2012-09-01 22:30:41 +00:00
|
|
|
|
2003-09-08 22:34:28 +00:00
|
|
|
/* mp3 read */
|
2006-06-05 22:41:14 +00:00
|
|
|
|
|
|
|
static int mp3_read_probe(AVProbeData *p)
|
|
|
|
{
|
2007-07-08 13:42:46 +00:00
|
|
|
int max_frames, first_frames = 0;
|
2006-10-30 02:19:55 +00:00
|
|
|
int fsize, frames, sample_rate;
|
2006-09-10 20:31:58 +00:00
|
|
|
uint32_t header;
|
2009-01-19 21:54:06 +00:00
|
|
|
uint8_t *buf, *buf0, *buf2, *end;
|
2006-09-10 20:31:58 +00:00
|
|
|
AVCodecContext avctx;
|
2006-06-05 22:41:14 +00:00
|
|
|
|
2009-01-19 21:54:06 +00:00
|
|
|
buf0 = p->buf;
|
2010-02-28 16:40:17 +00:00
|
|
|
end = p->buf + p->buf_size - sizeof(uint32_t);
|
|
|
|
while(buf0 < end && !*buf0)
|
|
|
|
buf0++;
|
2006-06-05 22:41:14 +00:00
|
|
|
|
2006-09-10 20:31:58 +00:00
|
|
|
max_frames = 0;
|
2009-01-19 21:54:06 +00:00
|
|
|
buf = buf0;
|
2006-06-05 22:41:14 +00:00
|
|
|
|
2007-12-03 08:27:04 +00:00
|
|
|
for(; buf < end; buf= buf2+1) {
|
2006-09-10 20:31:58 +00:00
|
|
|
buf2 = buf;
|
2006-06-05 22:41:14 +00:00
|
|
|
|
2006-09-12 14:16:48 +00:00
|
|
|
for(frames = 0; buf2 < end; frames++) {
|
2007-07-06 09:32:34 +00:00
|
|
|
header = AV_RB32(buf2);
|
2011-10-17 07:28:53 +00:00
|
|
|
fsize = avpriv_mpa_decode_header(&avctx, header, &sample_rate, &sample_rate, &sample_rate, &sample_rate);
|
2006-09-10 20:31:58 +00:00
|
|
|
if(fsize < 0)
|
|
|
|
break;
|
|
|
|
buf2 += fsize;
|
|
|
|
}
|
|
|
|
max_frames = FFMAX(max_frames, frames);
|
2009-01-19 21:54:06 +00:00
|
|
|
if(buf == buf0)
|
2006-09-20 21:23:32 +00:00
|
|
|
first_frames= frames;
|
2006-09-10 20:31:58 +00:00
|
|
|
}
|
2009-09-29 10:23:47 +00:00
|
|
|
// keep this in sync with ac3 probe, both need to avoid
|
|
|
|
// issues with MPEG-files!
|
2012-05-02 22:45:18 +00: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 02:58:20 +00:00
|
|
|
//mpegps_mp3_unrecognized_format.mpg has max_frames=3
|
2006-06-05 22:41:14 +00:00
|
|
|
}
|
|
|
|
|
2012-09-02 13:36:18 +00:00
|
|
|
static void read_xing_toc(AVFormatContext *s, int64_t filesize, int64_t duration)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!filesize &&
|
|
|
|
!(filesize = avio_size(s->pb))) {
|
|
|
|
av_log(s, AV_LOG_WARNING, "Cannot determine file size, skipping TOC table.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < XING_TOC_COUNT; i++) {
|
|
|
|
uint8_t b = avio_r8(s->pb);
|
|
|
|
|
|
|
|
av_add_index_entry(s->streams[0],
|
|
|
|
av_rescale(b, filesize, 256),
|
|
|
|
av_rescale(i, duration, XING_TOC_COUNT),
|
|
|
|
0, 0, AVINDEX_KEYFRAME);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-23 13:35:20 +00:00
|
|
|
/**
|
2007-10-24 04:56:22 +00:00
|
|
|
* Try to find Xing/Info/VBRI tags and compute duration from info therein
|
2007-10-23 13:35:20 +00:00
|
|
|
*/
|
2009-01-04 16:23:18 +00:00
|
|
|
static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
|
2007-10-23 13:35:20 +00:00
|
|
|
{
|
2007-10-23 17:10:41 +00:00
|
|
|
uint32_t v, spf;
|
2010-07-27 10:11:05 +00:00
|
|
|
unsigned frames = 0; /* Total number of frames in file */
|
2010-07-27 10:08:34 +00:00
|
|
|
unsigned size = 0; /* Total number of bytes in the stream */
|
2008-10-03 10:16:29 +00:00
|
|
|
const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
|
2009-01-23 12:09:32 +00:00
|
|
|
MPADecodeHeader c;
|
2009-01-04 16:23:18 +00:00
|
|
|
int vbrtag_size = 0;
|
2013-03-07 05:38:55 +00:00
|
|
|
int is_cbr;
|
2007-10-23 13:35:20 +00:00
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
v = avio_rb32(s->pb);
|
2007-11-04 19:52:08 +00:00
|
|
|
if(ff_mpa_check_header(v) < 0)
|
2009-01-04 16:23:18 +00:00
|
|
|
return -1;
|
2007-11-04 19:52:08 +00:00
|
|
|
|
2011-10-17 07:28:53 +00:00
|
|
|
if (avpriv_mpegaudio_decode_header(&c, v) == 0)
|
2009-01-04 16:23:18 +00:00
|
|
|
vbrtag_size = c.frame_size;
|
2007-10-23 17:10:41 +00:00
|
|
|
if(c.layer != 3)
|
2009-01-04 16:23:18 +00:00
|
|
|
return -1;
|
2007-10-23 13:35:20 +00:00
|
|
|
|
2012-09-02 13:36:18 +00:00
|
|
|
spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
|
|
|
|
|
2007-10-23 17:10:41 +00:00
|
|
|
/* Check for Xing / Info tag */
|
2011-03-17 06:35:18 +00:00
|
|
|
avio_skip(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1]);
|
2011-02-21 15:43:01 +00:00
|
|
|
v = avio_rb32(s->pb);
|
2013-03-07 05:38:55 +00:00
|
|
|
is_cbr = v == MKBETAG('I', 'n', 'f', 'o');
|
|
|
|
if (v == MKBETAG('X', 'i', 'n', 'g') || is_cbr) {
|
2011-02-21 15:43:01 +00:00
|
|
|
v = avio_rb32(s->pb);
|
2012-09-01 22:30:41 +00:00
|
|
|
if(v & XING_FLAG_FRAMES)
|
2011-02-21 15:43:01 +00:00
|
|
|
frames = avio_rb32(s->pb);
|
2012-09-01 22:30:41 +00:00
|
|
|
if(v & XING_FLAG_SIZE)
|
2011-02-21 15:43:01 +00:00
|
|
|
size = avio_rb32(s->pb);
|
2012-09-02 13:36:18 +00:00
|
|
|
if (v & XING_FLAG_TOC && frames)
|
|
|
|
read_xing_toc(s, size, av_rescale_q(frames, (AVRational){spf, c.sample_rate},
|
|
|
|
st->time_base));
|
2007-10-23 13:35:20 +00:00
|
|
|
}
|
2007-10-23 17:10:41 +00:00
|
|
|
|
2007-10-24 04:56:22 +00:00
|
|
|
/* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(s->pb, base + 4 + 32, SEEK_SET);
|
2011-02-21 15:43:01 +00:00
|
|
|
v = avio_rb32(s->pb);
|
2007-10-24 04:56:22 +00:00
|
|
|
if(v == MKBETAG('V', 'B', 'R', 'I')) {
|
|
|
|
/* Check tag version */
|
2011-02-21 15:43:01 +00:00
|
|
|
if(avio_rb16(s->pb) == 1) {
|
2010-07-27 10:08:34 +00:00
|
|
|
/* skip delay and quality */
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(s->pb, 4);
|
2011-02-21 15:43:01 +00:00
|
|
|
size = avio_rb32(s->pb);
|
2011-09-16 22:00:19 +00:00
|
|
|
frames = avio_rb32(s->pb);
|
2007-10-24 04:56:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-27 10:11:05 +00:00
|
|
|
if(!frames && !size)
|
2009-01-04 16:23:18 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Skip the vbr tag frame */
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(s->pb, base + vbrtag_size, SEEK_SET);
|
2007-10-23 17:10:41 +00:00
|
|
|
|
2010-07-27 10:11:05 +00:00
|
|
|
if(frames)
|
2010-07-27 10:08:34 +00:00
|
|
|
st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
|
|
|
|
st->time_base);
|
2013-03-07 05:38:55 +00:00
|
|
|
if (size && frames && !is_cbr)
|
2010-07-27 10:08:34 +00:00
|
|
|
st->codec->bit_rate = av_rescale(size, 8 * c.sample_rate, frames * (int64_t)spf);
|
|
|
|
|
2009-01-04 16:23:18 +00:00
|
|
|
return 0;
|
2007-10-23 13:35:20 +00:00
|
|
|
}
|
|
|
|
|
2012-01-12 12:20:36 +00:00
|
|
|
static int mp3_read_header(AVFormatContext *s)
|
2003-09-08 22:34:28 +00:00
|
|
|
{
|
|
|
|
AVStream *st;
|
2008-10-03 10:16:29 +00:00
|
|
|
int64_t off;
|
2003-09-08 22:34:28 +00:00
|
|
|
|
2011-06-18 09:43:24 +00:00
|
|
|
st = avformat_new_stream(s, NULL);
|
2003-09-08 22:34:28 +00:00
|
|
|
if (!st)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2003-09-08 22:34:28 +00:00
|
|
|
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2012-08-05 09:11:04 +00:00
|
|
|
st->codec->codec_id = AV_CODEC_ID_MP3;
|
2007-04-15 13:51:57 +00:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2007-10-18 15:02:34 +00:00
|
|
|
st->start_time = 0;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2009-11-22 21:04:18 +00:00
|
|
|
// lcm of all mp3 sample rates
|
2011-11-29 18:28:15 +00:00
|
|
|
avpriv_set_pts_info(st, 64, 1, 14112000);
|
2009-11-22 21:04:18 +00:00
|
|
|
|
2011-03-03 19:11:45 +00:00
|
|
|
off = avio_tell(s->pb);
|
2010-02-10 12:44:16 +00:00
|
|
|
|
2011-05-22 10:46:29 +00:00
|
|
|
if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
|
2009-10-05 21:36:56 +00:00
|
|
|
ff_id3v1_read(s);
|
2003-09-08 22:34:28 +00:00
|
|
|
|
2009-01-04 16:23:18 +00:00
|
|
|
if (mp3_parse_vbr_tags(s, st, off) < 0)
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(s->pb, off, SEEK_SET);
|
2007-10-23 13:35:20 +00:00
|
|
|
|
2003-09-08 22:34:28 +00: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 10:20:08 +00:00
|
|
|
int ret;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2012-07-28 10:20:08 +00:00
|
|
|
ret = av_get_packet(s->pb, pkt, MP3_PACKET_SIZE);
|
2012-07-28 10:21:21 +00:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2003-09-08 22:34:28 +00:00
|
|
|
|
|
|
|
pkt->stream_index = 0;
|
2011-01-21 22:55:31 +00:00
|
|
|
|
|
|
|
if (ret > ID3v1_TAG_SIZE &&
|
|
|
|
memcmp(&pkt->data[ret - ID3v1_TAG_SIZE], "TAG", 3) == 0)
|
|
|
|
ret -= ID3v1_TAG_SIZE;
|
|
|
|
|
2003-09-08 22:34:28 +00:00
|
|
|
/* note: we need to modify the packet size here to handle the last
|
|
|
|
packet */
|
|
|
|
pkt->size = ret;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-09-02 13:36:18 +00:00
|
|
|
static int mp3_seek(AVFormatContext *s, int stream_index, int64_t timestamp,
|
|
|
|
int flags)
|
|
|
|
{
|
|
|
|
AVIndexEntry *ie;
|
|
|
|
AVStream *st = s->streams[0];
|
|
|
|
int64_t ret = av_index_search_timestamp(st, timestamp, flags);
|
|
|
|
uint32_t header = 0;
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ie = &st->index_entries[ret];
|
|
|
|
ret = avio_seek(s->pb, ie->pos, SEEK_SET);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
while (!s->pb->eof_reached) {
|
|
|
|
header = (header << 8) + avio_r8(s->pb);
|
|
|
|
if (ff_mpa_check_header(header) >= 0) {
|
|
|
|
ff_update_cur_dts(s, st, ie->timestamp);
|
|
|
|
ret = avio_seek(s->pb, -4, SEEK_CUR);
|
|
|
|
return (ret >= 0) ? 0 : ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return AVERROR_EOF;
|
|
|
|
}
|
|
|
|
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_mp3_demuxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "mp3",
|
2012-07-24 01:23:48 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("MP2/3 (MPEG audio layer 2/3)"),
|
2011-07-16 20:18:12 +00:00
|
|
|
.read_probe = mp3_read_probe,
|
|
|
|
.read_header = mp3_read_header,
|
|
|
|
.read_packet = mp3_read_packet,
|
2012-09-02 13:36:18 +00:00
|
|
|
.read_seek = mp3_seek,
|
2012-04-06 14:50:48 +00:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "mp2,mp3,m2a", /* XXX: use probe */
|
2009-09-22 12:39:19 +00:00
|
|
|
};
|