You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

175 lines
4.7KB

  1. /*
  2. * Iff (.iff) 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 iff.c
  23. * iff file demuxer
  24. * by Jaikrishnan Menon
  25. * for more information on the .iff file format, visit:
  26. * http://wiki.multimedia.cx/index.php?title=IFF
  27. */
  28. #include "avformat.h"
  29. #define ID_8SVX MKTAG('8','S','V','X')
  30. #define ID_VHDR MKTAG('V','H','D','R')
  31. #define ID_ATAK MKTAG('A','T','A','K')
  32. #define ID_RLSE MKTAG('R','L','S','E')
  33. #define ID_CHAN MKTAG('C','H','A','N')
  34. #define ID_FORM MKTAG('F','O','R','M')
  35. #define ID_ANNO MKTAG('A','N','N','O')
  36. #define ID_AUTH MKTAG('A','U','T','H')
  37. #define ID_CHRS MKTAG('C','H','R','S')
  38. #define ID_COPYRIGHT MKTAG('(','c',')',' ')
  39. #define ID_CSET MKTAG('C','S','E','T')
  40. #define ID_FVER MKTAG('F','V','E','R')
  41. #define ID_NAME MKTAG('N','A','M','E')
  42. #define ID_TEXT MKTAG('T','E','X','T')
  43. #define ID_BODY MKTAG('B','O','D','Y')
  44. #define LEFT 2
  45. #define RIGHT 4
  46. #define STEREO 6
  47. #define PACKET_SIZE 1024
  48. typedef enum {COMP_NONE, COMP_FIB, COMP_EXP} svx8_compression_t;
  49. typedef struct {
  50. uint32_t body_size;
  51. uint32_t sent_bytes;
  52. uint32_t audio_frame_count;
  53. } IffDemuxContext;
  54. static int iff_probe(AVProbeData *p)
  55. {
  56. const uint8_t *d = p->buf;
  57. if ( AV_RL32(d) == ID_FORM &&
  58. AV_RL32(d+8) == ID_8SVX)
  59. return AVPROBE_SCORE_MAX;
  60. return 0;
  61. }
  62. static int iff_read_header(AVFormatContext *s,
  63. AVFormatParameters *ap)
  64. {
  65. IffDemuxContext *iff = s->priv_data;
  66. ByteIOContext *pb = s->pb;
  67. AVStream *st;
  68. uint32_t chunk_id, data_size;
  69. int padding, ret, done = 0;
  70. st = av_new_stream(s, 0);
  71. if (!st)
  72. return AVERROR(ENOMEM);
  73. st->codec->channels = 1;
  74. url_fskip(pb, 12);
  75. while(!done && !url_feof(pb)) {
  76. chunk_id = get_le32(pb);
  77. data_size = get_be32(pb);
  78. padding = data_size & 1;
  79. switch(chunk_id) {
  80. case ID_VHDR:
  81. url_fskip(pb, 12);
  82. st->codec->sample_rate = get_be16(pb);
  83. url_fskip(pb, 1);
  84. st->codec->codec_tag = get_byte(pb);
  85. url_fskip(pb, 4);
  86. break;
  87. case ID_BODY:
  88. iff->body_size = data_size;
  89. done = 1;
  90. break;
  91. case ID_CHAN:
  92. st->codec->channels = (get_be32(pb) < 6) ? 1 : 2;
  93. break;
  94. default:
  95. url_fseek(pb, data_size + padding, SEEK_CUR);
  96. break;
  97. }
  98. }
  99. if(!st->codec->sample_rate)
  100. return AVERROR_INVALIDDATA;
  101. av_set_pts_info(st, 32, 1, st->codec->sample_rate);
  102. st->codec->codec_type = CODEC_TYPE_AUDIO;
  103. switch(st->codec->codec_tag) {
  104. case COMP_NONE:
  105. st->codec->codec_id = CODEC_ID_PCM_S8;
  106. break;
  107. case COMP_FIB:
  108. st->codec->codec_id = CODEC_ID_8SVX_FIB;
  109. break;
  110. case COMP_EXP:
  111. st->codec->codec_id = CODEC_ID_8SVX_EXP;
  112. break;
  113. default:
  114. av_log(s, AV_LOG_ERROR, "iff: unknown compression method\n");
  115. return -1;
  116. }
  117. st->codec->bits_per_sample = 8;
  118. st->codec->bit_rate = st->codec->channels * st->codec->sample_rate * st->codec->bits_per_sample;
  119. st->codec->block_align = st->codec->channels * st->codec->bits_per_sample;
  120. return 0;
  121. }
  122. static int iff_read_packet(AVFormatContext *s,
  123. AVPacket *pkt)
  124. {
  125. IffDemuxContext *iff = s->priv_data;
  126. ByteIOContext *pb = s->pb;
  127. int ret;
  128. if(iff->sent_bytes > iff->body_size)
  129. return AVERROR(EIO);
  130. ret = av_get_packet(pb, pkt, PACKET_SIZE);
  131. if(iff->sent_bytes == 0)
  132. pkt->flags |= PKT_FLAG_KEY;
  133. iff->sent_bytes += PACKET_SIZE;
  134. pkt->stream_index = 0;
  135. pkt->pts = iff->audio_frame_count;
  136. iff->audio_frame_count += ret / s->streams[0]->codec->channels;
  137. return ret;
  138. }
  139. AVInputFormat iff_demuxer = {
  140. "IFF",
  141. "IFF format",
  142. sizeof(IffDemuxContext),
  143. iff_probe,
  144. iff_read_header,
  145. iff_read_packet,
  146. };