2007-04-07 21:34:18 +00:00
|
|
|
/*
|
|
|
|
* CRYO APC audio format demuxer
|
|
|
|
* Copyright (c) 2007 Anssi Hannula <anssi.hannula@gmail.com>
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2007-04-07 21:34:18 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2007-04-07 21:34:18 +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,
|
2007-04-07 21:34:18 +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
|
2007-04-07 21:34:18 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2008-05-09 09:30:43 +00:00
|
|
|
#include <string.h>
|
2012-04-07 15:25:52 +00:00
|
|
|
|
|
|
|
#include "libavutil/channel_layout.h"
|
2007-04-07 21:34:18 +00:00
|
|
|
#include "avformat.h"
|
|
|
|
|
|
|
|
static int apc_probe(AVProbeData *p)
|
|
|
|
{
|
|
|
|
if (!strncmp(p->buf, "CRYO_APC", 8))
|
|
|
|
return AVPROBE_SCORE_MAX;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-12 12:20:36 +00:00
|
|
|
static int apc_read_header(AVFormatContext *s)
|
2007-04-07 21:34:18 +00:00
|
|
|
{
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2007-04-07 21:34:18 +00:00
|
|
|
AVStream *st;
|
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
avio_rl32(pb); /* CRYO */
|
|
|
|
avio_rl32(pb); /* _APC */
|
|
|
|
avio_rl32(pb); /* 1.20 */
|
2007-04-07 21:34:18 +00:00
|
|
|
|
2011-06-18 09:43:24 +00:00
|
|
|
st = avformat_new_stream(s, NULL);
|
2007-04-07 21:34:18 +00:00
|
|
|
if (!st)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2007-04-07 21:34:18 +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_ADPCM_IMA_APC;
|
2007-04-07 21:34:18 +00:00
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
avio_rl32(pb); /* number of samples */
|
|
|
|
st->codec->sample_rate = avio_rl32(pb);
|
2007-04-07 21:34:18 +00:00
|
|
|
|
|
|
|
st->codec->extradata_size = 2 * 4;
|
|
|
|
st->codec->extradata = av_malloc(st->codec->extradata_size +
|
|
|
|
FF_INPUT_BUFFER_PADDING_SIZE);
|
|
|
|
if (!st->codec->extradata)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2007-04-07 21:34:18 +00:00
|
|
|
|
|
|
|
/* initial predictor values for adpcm decoder */
|
2011-02-21 15:43:01 +00:00
|
|
|
avio_read(pb, st->codec->extradata, 2 * 4);
|
2007-04-07 21:34:18 +00:00
|
|
|
|
2012-04-07 15:25:52 +00:00
|
|
|
if (avio_rl32(pb)) {
|
|
|
|
st->codec->channels = 2;
|
|
|
|
st->codec->channel_layout = AV_CH_LAYOUT_STEREO;
|
|
|
|
} else {
|
|
|
|
st->codec->channels = 1;
|
|
|
|
st->codec->channel_layout = AV_CH_LAYOUT_MONO;
|
|
|
|
}
|
2007-04-07 21:34:18 +00:00
|
|
|
|
2008-09-08 14:24:59 +00:00
|
|
|
st->codec->bits_per_coded_sample = 4;
|
|
|
|
st->codec->bit_rate = st->codec->bits_per_coded_sample * st->codec->channels
|
2007-04-07 21:34:18 +00:00
|
|
|
* st->codec->sample_rate;
|
|
|
|
st->codec->block_align = 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAX_READ_SIZE 4096
|
|
|
|
|
|
|
|
static int apc_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|
|
|
{
|
2007-11-21 07:41:00 +00:00
|
|
|
if (av_get_packet(s->pb, pkt, MAX_READ_SIZE) <= 0)
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2007-04-07 21:34:18 +00:00
|
|
|
pkt->stream_index = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_apc_demuxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "apc",
|
2012-07-24 21:51:41 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("CRYO APC"),
|
2011-07-16 20:18:12 +00:00
|
|
|
.read_probe = apc_probe,
|
|
|
|
.read_header = apc_read_header,
|
|
|
|
.read_packet = apc_read_packet,
|
2007-04-07 21:34:18 +00:00
|
|
|
};
|