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
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg 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
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg 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
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; 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"
|
|
|
|
|
2012-09-02 01:30:41 +03:00
|
|
|
#define XING_FLAG_FRAMES 0x01
|
|
|
|
#define XING_FLAG_SIZE 0x02
|
2012-09-02 16:36:18 +03:00
|
|
|
#define XING_FLAG_TOC 0x04
|
|
|
|
|
|
|
|
#define XING_TOC_COUNT 100
|
2012-09-02 01:30:41 +03:00
|
|
|
|
2012-05-08 04:47:58 +03:00
|
|
|
typedef struct {
|
|
|
|
int64_t filesize;
|
2012-09-20 23:00:52 +03:00
|
|
|
int xing_toc;
|
2012-07-04 23:01:46 +03:00
|
|
|
int start_pad;
|
|
|
|
int end_pad;
|
2012-05-08 04:47:58 +03:00
|
|
|
} MP3Context;
|
|
|
|
|
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;
|
2012-12-25 03:51:32 +03:00
|
|
|
const 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!
|
2009-09-15 02:03:33 +03:00
|
|
|
if (first_frames>=4) return AVPROBE_SCORE_MAX/2+1;
|
2011-11-30 20:07:20 +03:00
|
|
|
else if(max_frames>200)return AVPROBE_SCORE_MAX/2;
|
2009-04-22 05:58:20 +03:00
|
|
|
else if(max_frames>=4) return AVPROBE_SCORE_MAX/4;
|
2012-03-19 22:41:34 +03:00
|
|
|
else if(ff_id3v2_match(buf0, ID3v2_DEFAULT_MAGIC) && 2*ff_id3v2_tag_len(buf0) >= p->buf_size)
|
|
|
|
return AVPROBE_SCORE_MAX/8;
|
2006-09-21 00:23:32 +03:00
|
|
|
else if(max_frames>=1) return 1;
|
2006-09-10 23:31:58 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2012-09-02 16:36:18 +03:00
|
|
|
static void read_xing_toc(AVFormatContext *s, int64_t filesize, int64_t duration)
|
|
|
|
{
|
|
|
|
int i;
|
2012-09-20 23:00:52 +03:00
|
|
|
MP3Context *mp3 = s->priv_data;
|
2012-09-02 16:36:18 +03:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2012-09-20 23:00:52 +03:00
|
|
|
mp3->xing_toc = 1;
|
2012-09-02 16:36:18 +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
|
|
|
{
|
2012-07-04 23:01:46 +03:00
|
|
|
MP3Context *mp3 = s->priv_data;
|
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
|
|
|
|
2012-09-02 16:36:18 +03:00
|
|
|
spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
|
|
|
|
|
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);
|
2012-09-02 01:30:41 +03:00
|
|
|
if(v & XING_FLAG_FRAMES)
|
2011-02-21 17:43:01 +02:00
|
|
|
frames = avio_rb32(s->pb);
|
2012-09-02 01:30:41 +03:00
|
|
|
if(v & XING_FLAG_SIZE)
|
2011-02-21 17:43:01 +02:00
|
|
|
size = avio_rb32(s->pb);
|
2012-09-02 16:36:18 +03:00
|
|
|
if (v & XING_FLAG_TOC && frames)
|
|
|
|
read_xing_toc(s, size, av_rescale_q(frames, (AVRational){spf, c.sample_rate},
|
|
|
|
st->time_base));
|
2012-07-04 23:01:46 +03:00
|
|
|
if(v & 8)
|
|
|
|
avio_skip(s->pb, 4);
|
|
|
|
|
|
|
|
v = avio_rb32(s->pb);
|
2012-07-04 23:22:18 +03:00
|
|
|
if(v == MKBETAG('L', 'A', 'M', 'E') || v == MKBETAG('L', 'a', 'v', 'f')) {
|
2012-07-04 23:01:46 +03:00
|
|
|
avio_skip(s->pb, 21-4);
|
|
|
|
v= avio_rb24(s->pb);
|
|
|
|
mp3->start_pad = v>>12;
|
|
|
|
mp3-> end_pad = v&4095;
|
|
|
|
st->skip_samples = mp3->start_pad + 528 + 1;
|
|
|
|
av_log(s, AV_LOG_DEBUG, "pad %d %d\n", mp3->start_pad, mp3-> end_pad);
|
|
|
|
}
|
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-15 17:19:05 +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
|
|
|
|
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
|
|
|
{
|
2012-05-08 04:47:58 +03:00
|
|
|
MP3Context *mp3 = s->priv_data;
|
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;
|
2012-07-24 18:40:25 +03:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
|
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
|
|
|
|
2012-01-22 00:53:57 +03:00
|
|
|
s->pb->maxsize = -1;
|
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
|
|
|
|
2012-05-08 04:47:58 +03:00
|
|
|
if(s->pb->seekable)
|
|
|
|
mp3->filesize = avio_size(s->pb);
|
|
|
|
|
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-05-08 04:47:58 +03:00
|
|
|
MP3Context *mp3 = s->priv_data;
|
2003-09-09 01:34:28 +03:00
|
|
|
int ret, size;
|
2012-05-08 04:47:58 +03:00
|
|
|
int64_t pos;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2003-09-09 01:34:28 +03:00
|
|
|
size= MP3_PACKET_SIZE;
|
2012-05-08 04:47:58 +03:00
|
|
|
pos = avio_tell(s->pb);
|
|
|
|
if(mp3->filesize > ID3v1_TAG_SIZE && pos < mp3->filesize)
|
|
|
|
size= FFMIN(size, mp3->filesize - pos);
|
2003-09-09 01:34:28 +03:00
|
|
|
|
2007-11-21 09:41:00 +02:00
|
|
|
ret= av_get_packet(s->pb, pkt, size);
|
2003-09-09 01:34:28 +03:00
|
|
|
if (ret <= 0) {
|
2011-09-21 01:51:53 +03:00
|
|
|
if(ret<0)
|
|
|
|
return ret;
|
|
|
|
return AVERROR_EOF;
|
2003-09-09 01:34:28 +03:00
|
|
|
}
|
2011-01-22 00:55:31 +02:00
|
|
|
|
2012-07-29 02:56:31 +03:00
|
|
|
pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
|
2003-09-09 01:34:28 +03:00
|
|
|
pkt->stream_index = 0;
|
2011-01-22 00:55:31 +02:00
|
|
|
|
2012-05-08 04:45:17 +03:00
|
|
|
if (ret >= ID3v1_TAG_SIZE &&
|
2011-01-22 00:55:31 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2012-10-21 03:42:16 +03:00
|
|
|
static int check(AVFormatContext *s, int64_t pos)
|
|
|
|
{
|
|
|
|
int64_t ret = avio_seek(s->pb, pos, SEEK_SET);
|
|
|
|
unsigned header;
|
|
|
|
MPADecodeHeader sd;
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
header = avio_rb32(s->pb);
|
|
|
|
if (ff_mpa_check_header(header) < 0)
|
|
|
|
return -1;
|
|
|
|
if (avpriv_mpegaudio_decode_header(&sd, header) == 1)
|
|
|
|
return -1;
|
|
|
|
return sd.frame_size;
|
|
|
|
}
|
|
|
|
|
2012-09-02 16:36:18 +03:00
|
|
|
static int mp3_seek(AVFormatContext *s, int stream_index, int64_t timestamp,
|
|
|
|
int flags)
|
2012-07-04 23:01:46 +03:00
|
|
|
{
|
|
|
|
MP3Context *mp3 = s->priv_data;
|
2012-09-02 16:36:18 +03:00
|
|
|
AVIndexEntry *ie;
|
|
|
|
AVStream *st = s->streams[0];
|
|
|
|
int64_t ret = av_index_search_timestamp(st, timestamp, flags);
|
2012-10-21 03:42:16 +03:00
|
|
|
int i, j;
|
2012-09-02 16:36:18 +03:00
|
|
|
|
2012-09-20 23:00:52 +03:00
|
|
|
if (!mp3->xing_toc) {
|
|
|
|
st->skip_samples = timestamp <= 0 ? mp3->start_pad + 528 + 1 : 0;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-09-02 16:36:18 +03:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ie = &st->index_entries[ret];
|
|
|
|
ret = avio_seek(s->pb, ie->pos, SEEK_SET);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2012-07-04 23:01:46 +03:00
|
|
|
|
2012-10-21 03:42:16 +03:00
|
|
|
#define MIN_VALID 3
|
|
|
|
for(i=0; i<4096; i++) {
|
|
|
|
int64_t pos = ie->pos + i;
|
|
|
|
for(j=0; j<MIN_VALID; j++) {
|
|
|
|
ret = check(s, pos);
|
|
|
|
if(ret < 0)
|
|
|
|
break;
|
|
|
|
pos += ret;
|
2012-09-02 16:36:18 +03:00
|
|
|
}
|
2012-10-21 03:42:16 +03:00
|
|
|
if(j==MIN_VALID)
|
|
|
|
break;
|
2012-09-02 16:36:18 +03:00
|
|
|
}
|
2012-10-21 03:42:16 +03:00
|
|
|
if(j!=MIN_VALID)
|
|
|
|
i=0;
|
2012-07-04 23:01:46 +03:00
|
|
|
|
2012-10-21 03:42:16 +03:00
|
|
|
ret = avio_seek(s->pb, ie->pos + i, SEEK_SET);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
ff_update_cur_dts(s, st, ie->timestamp);
|
|
|
|
st->skip_samples = ie->timestamp <= 0 ? mp3->start_pad + 528 + 1 : 0;
|
|
|
|
return 0;
|
2012-07-04 23:01:46 +03:00
|
|
|
}
|
|
|
|
|
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)"),
|
2012-05-08 04:47:58 +03:00
|
|
|
.priv_data_size = sizeof(MP3Context),
|
2011-07-16 23:18:12 +03:00
|
|
|
.read_probe = mp3_read_probe,
|
|
|
|
.read_header = mp3_read_header,
|
|
|
|
.read_packet = mp3_read_packet,
|
2012-09-02 16:36:18 +03:00
|
|
|
.read_seek = mp3_seek,
|
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
|
|
|
};
|