2006-02-09 22:52:23 +00:00
|
|
|
/*
|
|
|
|
* Creative Voice File demuxer.
|
|
|
|
* Copyright (c) 2006 Aurelien Jacobs <aurel@gnuage.org>
|
|
|
|
*
|
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
|
2006-02-09 22:52:23 +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.
|
2006-02-09 22:52:23 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2006-02-09 22:52:23 +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-07-05 10:40:25 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2006-02-09 22:52:23 +00:00
|
|
|
*/
|
|
|
|
|
2009-01-11 22:19:48 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2006-02-09 22:52:23 +00:00
|
|
|
#include "voc.h"
|
2010-05-22 16:01:32 +00:00
|
|
|
#include "internal.h"
|
2006-02-09 22:52:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
static int voc_probe(AVProbeData *p)
|
|
|
|
{
|
|
|
|
int version, check;
|
|
|
|
|
2008-08-24 14:12:03 +00:00
|
|
|
if (memcmp(p->buf, ff_voc_magic, sizeof(ff_voc_magic) - 1))
|
2006-02-09 22:52:23 +00:00
|
|
|
return 0;
|
2007-06-23 12:30:40 +00:00
|
|
|
version = AV_RL16(p->buf + 22);
|
|
|
|
check = AV_RL16(p->buf + 24);
|
2006-02-09 22:52:23 +00:00
|
|
|
if (~version + 0x1234 != check)
|
|
|
|
return 10;
|
|
|
|
|
|
|
|
return AVPROBE_SCORE_MAX;
|
|
|
|
}
|
|
|
|
|
2012-01-12 12:20:36 +00:00
|
|
|
static int voc_read_header(AVFormatContext *s)
|
2006-02-09 22:52:23 +00:00
|
|
|
{
|
2008-12-11 22:34:14 +00:00
|
|
|
VocDecContext *voc = s->priv_data;
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2006-02-09 22:52:23 +00:00
|
|
|
int header_size;
|
|
|
|
AVStream *st;
|
|
|
|
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(pb, 20);
|
2011-02-21 15:43:01 +00:00
|
|
|
header_size = avio_rl16(pb) - 22;
|
2006-02-09 22:52:23 +00:00
|
|
|
if (header_size != 4) {
|
2007-03-07 00:27:23 +00:00
|
|
|
av_log(s, AV_LOG_ERROR, "unknown header size: %d\n", header_size);
|
2007-07-19 15:38:33 +00:00
|
|
|
return AVERROR(ENOSYS);
|
2006-02-09 22:52:23 +00:00
|
|
|
}
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(pb, header_size);
|
2011-06-18 09:43:24 +00:00
|
|
|
st = avformat_new_stream(s, NULL);
|
2006-02-09 22:52:23 +00:00
|
|
|
if (!st)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2006-02-09 22:52:23 +00:00
|
|
|
|
|
|
|
voc->remaining_size = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-02-15 09:28:39 +00:00
|
|
|
ff_voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size)
|
2006-02-09 22:52:23 +00:00
|
|
|
{
|
2008-12-11 22:34:14 +00:00
|
|
|
VocDecContext *voc = s->priv_data;
|
2006-02-09 22:52:23 +00:00
|
|
|
AVCodecContext *dec = st->codec;
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2008-12-11 22:34:14 +00:00
|
|
|
VocType type;
|
2011-01-18 17:25:44 +00:00
|
|
|
int size, tmp_codec=-1;
|
2006-02-09 22:52:23 +00:00
|
|
|
int sample_rate = 0;
|
|
|
|
int channels = 1;
|
|
|
|
|
|
|
|
while (!voc->remaining_size) {
|
2011-02-21 15:43:01 +00:00
|
|
|
type = avio_r8(pb);
|
2006-02-09 22:52:23 +00:00
|
|
|
if (type == VOC_TYPE_EOF)
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2011-02-21 15:43:01 +00:00
|
|
|
voc->remaining_size = avio_rl24(pb);
|
2009-11-24 07:08:17 +00:00
|
|
|
if (!voc->remaining_size) {
|
2011-03-05 20:06:46 +00:00
|
|
|
if (!s->pb->seekable)
|
2009-11-24 07:08:17 +00:00
|
|
|
return AVERROR(EIO);
|
2011-03-04 18:57:36 +00:00
|
|
|
voc->remaining_size = avio_size(pb) - avio_tell(pb);
|
2009-11-24 07:08:17 +00:00
|
|
|
}
|
2006-02-09 22:52:23 +00:00
|
|
|
max_size -= 4;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case VOC_TYPE_VOICE_DATA:
|
2012-01-12 02:10:35 +00:00
|
|
|
if (!dec->sample_rate) {
|
|
|
|
dec->sample_rate = 1000000 / (256 - avio_r8(pb));
|
|
|
|
if (sample_rate)
|
|
|
|
dec->sample_rate = sample_rate;
|
|
|
|
avpriv_set_pts_info(st, 64, 1, dec->sample_rate);
|
|
|
|
} else
|
|
|
|
avio_skip(pb, 1);
|
2006-02-09 22:52:23 +00:00
|
|
|
dec->channels = channels;
|
2011-02-21 15:43:01 +00:00
|
|
|
tmp_codec = avio_r8(pb);
|
2008-09-08 14:24:59 +00:00
|
|
|
dec->bits_per_coded_sample = av_get_bits_per_sample(dec->codec_id);
|
2006-02-09 22:52:23 +00:00
|
|
|
voc->remaining_size -= 2;
|
|
|
|
max_size -= 2;
|
|
|
|
channels = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VOC_TYPE_VOICE_DATA_CONT:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VOC_TYPE_EXTENDED:
|
2011-02-21 15:43:01 +00:00
|
|
|
sample_rate = avio_rl16(pb);
|
|
|
|
avio_r8(pb);
|
|
|
|
channels = avio_r8(pb) + 1;
|
2006-02-09 22:52:23 +00:00
|
|
|
sample_rate = 256000000 / (channels * (65536 - sample_rate));
|
|
|
|
voc->remaining_size = 0;
|
|
|
|
max_size -= 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VOC_TYPE_NEW_VOICE_DATA:
|
2012-01-12 02:10:35 +00:00
|
|
|
if (!dec->sample_rate) {
|
|
|
|
dec->sample_rate = avio_rl32(pb);
|
|
|
|
avpriv_set_pts_info(st, 64, 1, dec->sample_rate);
|
|
|
|
} else
|
|
|
|
avio_skip(pb, 4);
|
2011-02-21 15:43:01 +00:00
|
|
|
dec->bits_per_coded_sample = avio_r8(pb);
|
|
|
|
dec->channels = avio_r8(pb);
|
|
|
|
tmp_codec = avio_rl16(pb);
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(pb, 4);
|
2006-02-09 22:52:23 +00:00
|
|
|
voc->remaining_size -= 12;
|
|
|
|
max_size -= 12;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(pb, voc->remaining_size);
|
2006-02-09 22:52:23 +00:00
|
|
|
max_size -= voc->remaining_size;
|
|
|
|
voc->remaining_size = 0;
|
|
|
|
break;
|
|
|
|
}
|
2011-01-18 17:25:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (tmp_codec >= 0) {
|
|
|
|
tmp_codec = ff_codec_get_id(ff_voc_codec_tags, tmp_codec);
|
2012-08-05 09:11:04 +00:00
|
|
|
if (dec->codec_id == AV_CODEC_ID_NONE)
|
2011-01-18 17:25:44 +00:00
|
|
|
dec->codec_id = tmp_codec;
|
|
|
|
else if (dec->codec_id != tmp_codec)
|
|
|
|
av_log(s, AV_LOG_WARNING, "Ignoring mid-stream change in audio codec\n");
|
2012-08-05 09:11:04 +00:00
|
|
|
if (dec->codec_id == AV_CODEC_ID_NONE) {
|
|
|
|
if (s->audio_codec_id == AV_CODEC_ID_NONE) {
|
2011-01-18 17:25:44 +00:00
|
|
|
av_log(s, AV_LOG_ERROR, "unknown codec tag\n");
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
av_log(s, AV_LOG_WARNING, "unknown codec tag\n");
|
2011-01-11 14:08:45 +00:00
|
|
|
}
|
2006-02-09 22:52:23 +00:00
|
|
|
}
|
|
|
|
|
2008-09-08 14:24:59 +00:00
|
|
|
dec->bit_rate = dec->sample_rate * dec->bits_per_coded_sample;
|
2006-02-09 22:52:23 +00:00
|
|
|
|
|
|
|
if (max_size <= 0)
|
2007-03-07 00:29:51 +00:00
|
|
|
max_size = 2048;
|
2006-02-09 22:52:23 +00:00
|
|
|
size = FFMIN(voc->remaining_size, max_size);
|
|
|
|
voc->remaining_size -= size;
|
|
|
|
return av_get_packet(pb, pkt, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int voc_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|
|
|
{
|
2012-02-15 09:28:39 +00:00
|
|
|
return ff_voc_get_packet(s, pkt, s->streams[0], 0);
|
2006-02-09 22:52:23 +00:00
|
|
|
}
|
|
|
|
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_voc_demuxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "voc",
|
2012-07-24 21:51:41 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("Creative Voice"),
|
2011-07-16 20:18:12 +00:00
|
|
|
.priv_data_size = sizeof(VocDecContext),
|
|
|
|
.read_probe = voc_probe,
|
|
|
|
.read_header = voc_read_header,
|
|
|
|
.read_packet = voc_read_packet,
|
2012-04-06 14:50:48 +00:00
|
|
|
.codec_tag = (const AVCodecTag* const []){ ff_voc_codec_tags, 0 },
|
2006-02-09 22:52:23 +00:00
|
|
|
};
|