Files
FFmpeg/libavformat/iss.c
T

154 lines
4.7 KiB
C
Raw Normal View History

2009-01-17 20:08:43 +00:00
/*
* ISS (.iss) file demuxer
* Copyright (c) 2008 Jaikrishnan Menon <realityman@gmx.net>
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* 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.
*
* FFmpeg is distributed in the hope that it will be useful,
* 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
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* @file
2009-01-17 20:08:43 +00:00
* Funcom ISS file demuxer
* @author Jaikrishnan Menon
* @see http://wiki.multimedia.cx/index.php?title=FunCom_ISS
2009-01-17 20:08:43 +00:00
*/
2012-04-07 16:45:48 -04:00
#include "libavutil/channel_layout.h"
2009-01-17 20:08:43 +00:00
#include "avformat.h"
2011-11-29 19:28:15 +01:00
#include "internal.h"
2009-01-17 20:08:43 +00:00
#include "libavutil/avstring.h"
#define ISS_SIG "IMA_ADPCM_Sound"
#define ISS_SIG_LEN 15
#define MAX_TOKEN_SIZE 20
2014-09-22 09:19:33 +02:00
typedef struct IssDemuxContext {
2009-01-17 20:08:43 +00:00
int packet_size;
int sample_start_pos;
} IssDemuxContext;
2011-02-20 11:04:12 +01:00
static void get_token(AVIOContext *s, char *buf, int maxlen)
2009-01-17 20:08:43 +00:00
{
int i = 0;
char c;
2011-02-21 16:43:01 +01:00
while ((c = avio_r8(s))) {
2009-01-17 20:08:43 +00:00
if(c == ' ')
break;
if (i < maxlen-1)
buf[i++] = c;
}
if(!c)
2011-02-21 16:43:01 +01:00
avio_r8(s);
2009-01-17 20:08:43 +00:00
buf[i] = 0; /* Ensure null terminated, but may be truncated */
}
2019-03-21 01:18:37 +01:00
static int iss_probe(const AVProbeData *p)
2009-01-17 20:08:43 +00:00
{
if (strncmp(p->buf, ISS_SIG, ISS_SIG_LEN))
return 0;
return AVPROBE_SCORE_MAX;
}
static av_cold int iss_read_header(AVFormatContext *s)
2009-01-17 20:08:43 +00:00
{
IssDemuxContext *iss = s->priv_data;
2011-02-20 11:04:12 +01:00
AVIOContext *pb = s->pb;
2009-01-17 20:08:43 +00:00
AVStream *st;
char token[MAX_TOKEN_SIZE];
int stereo, rate_divisor;
get_token(pb, token, sizeof(token)); //"IMA_ADPCM_Sound"
get_token(pb, token, sizeof(token)); //packet size
2013-12-23 00:17:52 +01:00
if (sscanf(token, "%d", &iss->packet_size) != 1) {
av_log(s, AV_LOG_ERROR, "Failed parsing packet size\n");
return AVERROR_INVALIDDATA;
}
2009-01-17 20:08:43 +00:00
get_token(pb, token, sizeof(token)); //File ID
get_token(pb, token, sizeof(token)); //out size
get_token(pb, token, sizeof(token)); //stereo
2013-12-23 00:17:52 +01:00
if (sscanf(token, "%d", &stereo) != 1) {
av_log(s, AV_LOG_ERROR, "Failed parsing stereo flag\n");
return AVERROR_INVALIDDATA;
}
2009-01-17 20:08:43 +00:00
get_token(pb, token, sizeof(token)); //Unknown1
get_token(pb, token, sizeof(token)); //RateDivisor
2013-12-23 00:17:52 +01:00
if (sscanf(token, "%d", &rate_divisor) != 1) {
av_log(s, AV_LOG_ERROR, "Failed parsing rate_divisor\n");
return AVERROR_INVALIDDATA;
}
2009-01-17 20:08:43 +00:00
get_token(pb, token, sizeof(token)); //Unknown2
get_token(pb, token, sizeof(token)); //Version ID
get_token(pb, token, sizeof(token)); //Size
2011-12-29 05:05:52 +01:00
if (iss->packet_size <= 0) {
av_log(s, AV_LOG_ERROR, "packet_size %d is invalid\n", iss->packet_size);
return AVERROR_INVALIDDATA;
}
iss->sample_start_pos = avio_tell(pb);
2009-01-17 20:08:43 +00:00
st = avformat_new_stream(s, NULL);
2009-01-17 20:08:43 +00:00
if (!st)
return AVERROR(ENOMEM);
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
st->codecpar->codec_id = AV_CODEC_ID_ADPCM_IMA_ISS;
2012-04-07 16:45:48 -04:00
if (stereo) {
st->codecpar->channels = 2;
st->codecpar->channel_layout = AV_CH_LAYOUT_STEREO;
2012-04-07 16:45:48 -04:00
} else {
st->codecpar->channels = 1;
st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
2012-04-07 16:45:48 -04:00
}
st->codecpar->sample_rate = 44100;
2009-01-17 20:08:43 +00:00
if(rate_divisor > 0)
st->codecpar->sample_rate /= rate_divisor;
st->codecpar->bits_per_coded_sample = 4;
st->codecpar->bit_rate = st->codecpar->channels * st->codecpar->sample_rate
* st->codecpar->bits_per_coded_sample;
st->codecpar->block_align = iss->packet_size;
avpriv_set_pts_info(st, 32, 1, st->codecpar->sample_rate);
2009-01-17 20:08:43 +00:00
return 0;
}
static int iss_read_packet(AVFormatContext *s, AVPacket *pkt)
{
IssDemuxContext *iss = s->priv_data;
int ret = av_get_packet(s->pb, pkt, iss->packet_size);
if(ret != iss->packet_size)
return AVERROR(EIO);
2009-01-17 20:08:43 +00:00
pkt->stream_index = 0;
pkt->pts = avio_tell(s->pb) - iss->sample_start_pos;
if(s->streams[0]->codecpar->channels > 0)
pkt->pts /= s->streams[0]->codecpar->channels*2;
2009-01-17 20:08:43 +00:00
return 0;
}
2021-04-19 19:45:24 +02:00
const AVInputFormat ff_iss_demuxer = {
.name = "iss",
.long_name = NULL_IF_CONFIG_SMALL("Funcom ISS"),
.priv_data_size = sizeof(IssDemuxContext),
.read_probe = iss_probe,
.read_header = iss_read_header,
.read_packet = iss_read_packet,
2009-01-17 20:08:43 +00:00
};