libavformat/iss.c
055dc116
 /*
  * 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
  */
 
 /**
ba87f080
  * @file
055dc116
  * Funcom ISS file demuxer
  * @author Jaikrishnan Menon
ad4cd0c2
  * @see http://wiki.multimedia.cx/index.php?title=FunCom_ISS
055dc116
  */
 
 #include "avformat.h"
c3f9ebf7
 #include "internal.h"
055dc116
 #include "libavutil/avstring.h"
 
 #define ISS_SIG "IMA_ADPCM_Sound"
 #define ISS_SIG_LEN 15
 #define MAX_TOKEN_SIZE 20
 
 typedef struct {
     int packet_size;
     int sample_start_pos;
 } IssDemuxContext;
 
471fe57e
 static void get_token(AVIOContext *s, char *buf, int maxlen)
055dc116
 {
     int i = 0;
     char c;
 
e63a3628
     while ((c = avio_r8(s))) {
055dc116
         if(c == ' ')
             break;
         if (i < maxlen-1)
             buf[i++] = c;
     }
 
c6f79c3e
     if(!c)
e63a3628
         avio_r8(s);
c6f79c3e
 
055dc116
     buf[i] = 0; /* Ensure null terminated, but may be truncated */
 }
 
 static int iss_probe(AVProbeData *p)
 {
     if (strncmp(p->buf, ISS_SIG, ISS_SIG_LEN))
         return 0;
 
     return AVPROBE_SCORE_MAX;
 }
 
6e9651d1
 static av_cold int iss_read_header(AVFormatContext *s)
055dc116
 {
     IssDemuxContext *iss = s->priv_data;
471fe57e
     AVIOContext *pb = s->pb;
055dc116
     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
     sscanf(token, "%d", &iss->packet_size);
     get_token(pb, token, sizeof(token)); //File ID
     get_token(pb, token, sizeof(token)); //out size
     get_token(pb, token, sizeof(token)); //stereo
     sscanf(token, "%d", &stereo);
     get_token(pb, token, sizeof(token)); //Unknown1
     get_token(pb, token, sizeof(token)); //RateDivisor
     sscanf(token, "%d", &rate_divisor);
     get_token(pb, token, sizeof(token)); //Unknown2
     get_token(pb, token, sizeof(token)); //Version ID
     get_token(pb, token, sizeof(token)); //Size
 
bf5cc805
     if (iss->packet_size <= 0) {
         av_log(s, AV_LOG_ERROR, "packet_size %d is invalid\n", iss->packet_size);
         return AVERROR_INVALIDDATA;
     }
 
384c9c2f
     iss->sample_start_pos = avio_tell(pb);
055dc116
 
3b3bbdd3
     st = avformat_new_stream(s, NULL);
055dc116
     if (!st)
         return AVERROR(ENOMEM);
72415b2a
     st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
36ef5369
     st->codec->codec_id = AV_CODEC_ID_ADPCM_IMA_ISS;
055dc116
     st->codec->channels = stereo ? 2 : 1;
     st->codec->sample_rate = 44100;
     if(rate_divisor > 0)
          st->codec->sample_rate /= rate_divisor;
     st->codec->bits_per_coded_sample = 4;
     st->codec->bit_rate = st->codec->channels * st->codec->sample_rate
                                       * st->codec->bits_per_coded_sample;
     st->codec->block_align = iss->packet_size;
c3f9ebf7
     avpriv_set_pts_info(st, 32, 1, st->codec->sample_rate);
055dc116
 
     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);
 
1ac63c2a
     if(ret != iss->packet_size)
         return AVERROR(EIO);
055dc116
 
     pkt->stream_index = 0;
384c9c2f
     pkt->pts = avio_tell(s->pb) - iss->sample_start_pos;
055dc116
     if(s->streams[0]->codec->channels > 0)
         pkt->pts /= s->streams[0]->codec->channels*2;
     return 0;
 }
 
66355be3
 AVInputFormat ff_iss_demuxer = {
68aef0b4
     .name           = "iss",
6774247a
     .long_name      = NULL_IF_CONFIG_SMALL("Funcom ISS"),
dfc2c4d9
     .priv_data_size = sizeof(IssDemuxContext),
     .read_probe     = iss_probe,
     .read_header    = iss_read_header,
     .read_packet    = iss_read_packet,
055dc116
 };