iss.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * ISS (.iss) file demuxer
  3. * Copyright (c) 2008 Jaikrishnan Menon <realityman@gmx.net>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file libavformat/iss.c
  23. * Funcom ISS file demuxer
  24. * @author Jaikrishnan Menon
  25. * for more information on the .iss file format, visit:
  26. * http://wiki.multimedia.cx/index.php?title=FunCom_ISS
  27. */
  28. #include "avformat.h"
  29. #include "libavutil/avstring.h"
  30. #define ISS_SIG "IMA_ADPCM_Sound"
  31. #define ISS_SIG_LEN 15
  32. #define MAX_TOKEN_SIZE 20
  33. typedef struct {
  34. int packet_size;
  35. int sample_start_pos;
  36. } IssDemuxContext;
  37. static void get_token(ByteIOContext *s, char *buf, int maxlen)
  38. {
  39. int i = 0;
  40. char c;
  41. while ((c = get_byte(s))) {
  42. if(c == ' ')
  43. break;
  44. if (i < maxlen-1)
  45. buf[i++] = c;
  46. }
  47. if(!c)
  48. get_byte(s);
  49. buf[i] = 0; /* Ensure null terminated, but may be truncated */
  50. }
  51. static int iss_probe(AVProbeData *p)
  52. {
  53. if (strncmp(p->buf, ISS_SIG, ISS_SIG_LEN))
  54. return 0;
  55. return AVPROBE_SCORE_MAX;
  56. }
  57. static av_cold int iss_read_header(AVFormatContext *s, AVFormatParameters *ap)
  58. {
  59. IssDemuxContext *iss = s->priv_data;
  60. ByteIOContext *pb = s->pb;
  61. AVStream *st;
  62. char token[MAX_TOKEN_SIZE];
  63. int stereo, rate_divisor;
  64. get_token(pb, token, sizeof(token)); //"IMA_ADPCM_Sound"
  65. get_token(pb, token, sizeof(token)); //packet size
  66. sscanf(token, "%d", &iss->packet_size);
  67. get_token(pb, token, sizeof(token)); //File ID
  68. get_token(pb, token, sizeof(token)); //out size
  69. get_token(pb, token, sizeof(token)); //stereo
  70. sscanf(token, "%d", &stereo);
  71. get_token(pb, token, sizeof(token)); //Unknown1
  72. get_token(pb, token, sizeof(token)); //RateDivisor
  73. sscanf(token, "%d", &rate_divisor);
  74. get_token(pb, token, sizeof(token)); //Unknown2
  75. get_token(pb, token, sizeof(token)); //Version ID
  76. get_token(pb, token, sizeof(token)); //Size
  77. iss->sample_start_pos = url_ftell(pb);
  78. st = av_new_stream(s, 0);
  79. if (!st)
  80. return AVERROR(ENOMEM);
  81. st->codec->codec_type = CODEC_TYPE_AUDIO;
  82. st->codec->codec_id = CODEC_ID_ADPCM_IMA_ISS;
  83. st->codec->channels = stereo ? 2 : 1;
  84. st->codec->sample_rate = 44100;
  85. if(rate_divisor > 0)
  86. st->codec->sample_rate /= rate_divisor;
  87. st->codec->bits_per_coded_sample = 4;
  88. st->codec->bit_rate = st->codec->channels * st->codec->sample_rate
  89. * st->codec->bits_per_coded_sample;
  90. st->codec->block_align = iss->packet_size;
  91. av_set_pts_info(st, 32, 1, st->codec->sample_rate);
  92. return 0;
  93. }
  94. static int iss_read_packet(AVFormatContext *s, AVPacket *pkt)
  95. {
  96. IssDemuxContext *iss = s->priv_data;
  97. int ret = av_get_packet(s->pb, pkt, iss->packet_size);
  98. if(ret != iss->packet_size)
  99. return AVERROR(EIO);
  100. pkt->stream_index = 0;
  101. pkt->pts = url_ftell(s->pb) - iss->sample_start_pos;
  102. if(s->streams[0]->codec->channels > 0)
  103. pkt->pts /= s->streams[0]->codec->channels*2;
  104. return 0;
  105. }
  106. AVInputFormat iss_demuxer = {
  107. "ISS",
  108. NULL_IF_CONFIG_SMALL("Funcom ISS format"),
  109. sizeof(IssDemuxContext),
  110. iss_probe,
  111. iss_read_header,
  112. iss_read_packet,
  113. };