2009-09-10 18:48:12 +00:00
|
|
|
/*
|
|
|
|
* MD STUDIO audio demuxer
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 Benjamin Larsson
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2009-09-10 18:48:12 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2009-09-10 18:48:12 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2009-09-10 18:48:12 +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
|
2009-09-10 18:48:12 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2012-11-10 15:00:00 +00:00
|
|
|
#include "libavutil/channel_layout.h"
|
|
|
|
#include "libavutil/intreadwrite.h"
|
2009-09-10 18:48:12 +00:00
|
|
|
#include "avformat.h"
|
2010-08-30 21:17:34 +00:00
|
|
|
#include "pcm.h"
|
2009-09-10 18:48:12 +00:00
|
|
|
|
|
|
|
#define AT1_SU_SIZE 212
|
|
|
|
|
|
|
|
static int aea_read_probe(AVProbeData *p)
|
|
|
|
{
|
|
|
|
if (p->buf_size <= 2048+212)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Magic is '00 08 00 00' in Little Endian*/
|
2009-09-10 19:12:13 +00:00
|
|
|
if (AV_RL32(p->buf)==0x800) {
|
2009-09-13 18:27:53 +00:00
|
|
|
int bsm_s, bsm_e, inb_s, inb_e, ch;
|
|
|
|
ch = p->buf[264];
|
2009-09-10 18:48:12 +00:00
|
|
|
bsm_s = p->buf[2048];
|
|
|
|
inb_s = p->buf[2048+1];
|
|
|
|
inb_e = p->buf[2048+210];
|
|
|
|
bsm_e = p->buf[2048+211];
|
|
|
|
|
2009-09-13 18:27:53 +00:00
|
|
|
if (ch != 1 && ch != 2)
|
|
|
|
return 0;
|
2009-09-10 18:48:12 +00:00
|
|
|
|
|
|
|
/* Check so that the redundant bsm bytes and info bytes are valid
|
|
|
|
* the block size mode bytes have to be the same
|
|
|
|
* the info bytes have to be the same
|
|
|
|
*/
|
2010-05-23 21:56:54 +00:00
|
|
|
if (bsm_s == bsm_e && inb_s == inb_e)
|
2010-05-23 22:01:27 +00:00
|
|
|
return AVPROBE_SCORE_MAX / 4 + 1;
|
2009-09-10 18:48:12 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-12 12:20:36 +00:00
|
|
|
static int aea_read_header(AVFormatContext *s)
|
2009-09-10 18:48:12 +00:00
|
|
|
{
|
2011-06-18 09:43:24 +00:00
|
|
|
AVStream *st = avformat_new_stream(s, NULL);
|
2009-09-10 18:48:12 +00:00
|
|
|
if (!st)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
|
|
|
|
/* Parse the amount of channels and skip to pos 2048(0x800) */
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(s->pb, 264);
|
2011-02-21 15:43:01 +00:00
|
|
|
st->codec->channels = avio_r8(s->pb);
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(s->pb, 1783);
|
2009-09-10 18:48:12 +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_ATRAC1;
|
2009-09-10 18:48:12 +00:00
|
|
|
st->codec->sample_rate = 44100;
|
|
|
|
st->codec->bit_rate = 292000;
|
|
|
|
|
|
|
|
if (st->codec->channels != 1 && st->codec->channels != 2) {
|
|
|
|
av_log(s,AV_LOG_ERROR,"Channels %d not supported!\n",st->codec->channels);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-02-03 13:26:09 +00:00
|
|
|
st->codec->channel_layout = (st->codec->channels == 1) ? AV_CH_LAYOUT_MONO : AV_CH_LAYOUT_STEREO;
|
2009-09-10 18:48:12 +00:00
|
|
|
|
|
|
|
st->codec->block_align = AT1_SU_SIZE * st->codec->channels;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int aea_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|
|
|
{
|
|
|
|
int ret = av_get_packet(s->pb, pkt, s->streams[0]->codec->block_align);
|
|
|
|
|
|
|
|
pkt->stream_index = 0;
|
|
|
|
if (ret <= 0)
|
|
|
|
return AVERROR(EIO);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_aea_demuxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "aea",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("MD STUDIO audio"),
|
|
|
|
.read_probe = aea_read_probe,
|
|
|
|
.read_header = aea_read_header,
|
|
|
|
.read_packet = aea_read_packet,
|
2012-02-15 09:28:39 +00:00
|
|
|
.read_seek = ff_pcm_read_seek,
|
2012-04-06 14:50:48 +00:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "aea",
|
2009-09-10 18:48:12 +00:00
|
|
|
};
|