|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "libavutil/channel_layout.h" |
|
#include "avformat.h" |
|
#include "internal.h" |
|
#include "libavutil/avstring.h" |
|
|
|
#define ISS_SIG "IMA_ADPCM_Sound" |
|
#define ISS_SIG_LEN 15 |
|
#define MAX_TOKEN_SIZE 20 |
|
|
|
typedef struct IssDemuxContext { |
|
int packet_size; |
|
int sample_start_pos; |
|
} IssDemuxContext; |
|
|
|
static void get_token(AVIOContext *s, char *buf, int maxlen) |
|
{ |
|
int i = 0; |
|
char c; |
|
|
|
while ((c = avio_r8(s))) { |
|
if(c == ' ') |
|
break; |
|
if (i < maxlen-1) |
|
buf[i++] = c; |
|
} |
|
|
|
if(!c) |
|
avio_r8(s); |
|
|
|
buf[i] = 0; |
|
} |
|
|
|
static int iss_probe(const AVProbeData *p) |
|
{ |
|
if (strncmp(p->buf, ISS_SIG, ISS_SIG_LEN)) |
|
return 0; |
|
|
|
return AVPROBE_SCORE_MAX; |
|
} |
|
|
|
static av_cold int iss_read_header(AVFormatContext *s) |
|
{ |
|
IssDemuxContext *iss = s->priv_data; |
|
AVIOContext *pb = s->pb; |
|
AVStream *st; |
|
char token[MAX_TOKEN_SIZE]; |
|
int stereo, rate_divisor; |
|
|
|
get_token(pb, token, sizeof(token)); |
|
get_token(pb, token, sizeof(token)); |
|
if (sscanf(token, "%d", &iss->packet_size) != 1) { |
|
av_log(s, AV_LOG_ERROR, "Failed parsing packet size\n"); |
|
return AVERROR_INVALIDDATA; |
|
} |
|
get_token(pb, token, sizeof(token)); |
|
get_token(pb, token, sizeof(token)); |
|
get_token(pb, token, sizeof(token)); |
|
if (sscanf(token, "%d", &stereo) != 1) { |
|
av_log(s, AV_LOG_ERROR, "Failed parsing stereo flag\n"); |
|
return AVERROR_INVALIDDATA; |
|
} |
|
get_token(pb, token, sizeof(token)); |
|
get_token(pb, token, sizeof(token)); |
|
if (sscanf(token, "%d", &rate_divisor) != 1) { |
|
av_log(s, AV_LOG_ERROR, "Failed parsing rate_divisor\n"); |
|
return AVERROR_INVALIDDATA; |
|
} |
|
get_token(pb, token, sizeof(token)); |
|
get_token(pb, token, sizeof(token)); |
|
get_token(pb, token, sizeof(token)); |
|
|
|
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); |
|
|
|
st = avformat_new_stream(s, NULL); |
|
if (!st) |
|
return AVERROR(ENOMEM); |
|
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO; |
|
st->codecpar->codec_id = AV_CODEC_ID_ADPCM_IMA_ISS; |
|
|
|
if (stereo) { |
|
st->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_STEREO; |
|
} else { |
|
st->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO; |
|
} |
|
|
|
st->codecpar->sample_rate = 44100; |
|
if(rate_divisor > 0) |
|
st->codecpar->sample_rate /= rate_divisor; |
|
st->codecpar->bits_per_coded_sample = 4; |
|
st->codecpar->bit_rate = st->codecpar->ch_layout.nb_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); |
|
|
|
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); |
|
|
|
pkt->stream_index = 0; |
|
pkt->pts = avio_tell(s->pb) - iss->sample_start_pos; |
|
if (s->streams[0]->codecpar->ch_layout.nb_channels > 0) |
|
pkt->pts /= s->streams[0]->codecpar->ch_layout.nb_channels * 2; |
|
return 0; |
|
} |
|
|
|
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, |
|
}; |
|
|