westwood_aud.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /*
  2. * Westwood Studios AUD Format Demuxer
  3. * Copyright (c) 2003 The ffmpeg Project
  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
  23. * Westwood Studios AUD file demuxer
  24. * by Mike Melanson (melanson@pcisys.net)
  25. * for more information on the Westwood file formats, visit:
  26. * http://www.pcisys.net/~melanson/codecs/
  27. * http://www.geocities.com/SiliconValley/8682/aud3.txt
  28. *
  29. * Implementation note: There is no definite file signature for AUD files.
  30. * The demuxer uses a probabilistic strategy for content detection. This
  31. * entails performing sanity checks on certain header values in order to
  32. * qualify a file. Refer to wsaud_probe() for the precise parameters.
  33. */
  34. #include "libavutil/intreadwrite.h"
  35. #include "avformat.h"
  36. #include "internal.h"
  37. #define AUD_HEADER_SIZE 12
  38. #define AUD_CHUNK_PREAMBLE_SIZE 8
  39. #define AUD_CHUNK_SIGNATURE 0x0000DEAF
  40. static int wsaud_probe(AVProbeData *p)
  41. {
  42. int field;
  43. /* Probabilistic content detection strategy: There is no file signature
  44. * so perform sanity checks on various header parameters:
  45. * 8000 <= sample rate (16 bits) <= 48000 ==> 40001 acceptable numbers
  46. * flags <= 0x03 (2 LSBs are used) ==> 4 acceptable numbers
  47. * compression type (8 bits) = 1 or 99 ==> 2 acceptable numbers
  48. * first audio chunk signature (32 bits) ==> 1 acceptable number
  49. * The number space contains 2^64 numbers. There are 40001 * 4 * 2 * 1 =
  50. * 320008 acceptable number combinations.
  51. */
  52. if (p->buf_size < AUD_HEADER_SIZE + AUD_CHUNK_PREAMBLE_SIZE)
  53. return 0;
  54. /* check sample rate */
  55. field = AV_RL16(&p->buf[0]);
  56. if ((field < 8000) || (field > 48000))
  57. return 0;
  58. /* enforce the rule that the top 6 bits of this flags field are reserved (0);
  59. * this might not be true, but enforce it until deemed unnecessary */
  60. if (p->buf[10] & 0xFC)
  61. return 0;
  62. /* note: only check for WS IMA (type 99) right now since there is no
  63. * support for type 1 */
  64. if (p->buf[11] != 99 && p->buf[11] != 1)
  65. return 0;
  66. /* read ahead to the first audio chunk and validate the first header signature */
  67. if (AV_RL32(&p->buf[16]) != AUD_CHUNK_SIGNATURE)
  68. return 0;
  69. /* return 1/2 certainty since this file check is a little sketchy */
  70. return AVPROBE_SCORE_MAX / 2;
  71. }
  72. static int wsaud_read_header(AVFormatContext *s)
  73. {
  74. AVIOContext *pb = s->pb;
  75. AVStream *st;
  76. unsigned char header[AUD_HEADER_SIZE];
  77. int sample_rate, channels, codec;
  78. if (avio_read(pb, header, AUD_HEADER_SIZE) != AUD_HEADER_SIZE)
  79. return AVERROR(EIO);
  80. sample_rate = AV_RL16(&header[0]);
  81. channels = (header[10] & 0x1) + 1;
  82. codec = header[11];
  83. /* initialize the audio decoder stream */
  84. st = avformat_new_stream(s, NULL);
  85. if (!st)
  86. return AVERROR(ENOMEM);
  87. switch (codec) {
  88. case 1:
  89. if (channels != 1) {
  90. av_log_ask_for_sample(s, "Stereo WS-SND1 is not supported.\n");
  91. return AVERROR_PATCHWELCOME;
  92. }
  93. st->codec->codec_id = AV_CODEC_ID_WESTWOOD_SND1;
  94. break;
  95. case 99:
  96. st->codec->codec_id = AV_CODEC_ID_ADPCM_IMA_WS;
  97. st->codec->bits_per_coded_sample = 4;
  98. st->codec->bit_rate = channels * sample_rate * 4;
  99. break;
  100. default:
  101. av_log_ask_for_sample(s, "Unknown codec: %d\n", codec);
  102. return AVERROR_PATCHWELCOME;
  103. }
  104. avpriv_set_pts_info(st, 64, 1, sample_rate);
  105. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  106. st->codec->channels = channels;
  107. st->codec->sample_rate = sample_rate;
  108. return 0;
  109. }
  110. static int wsaud_read_packet(AVFormatContext *s,
  111. AVPacket *pkt)
  112. {
  113. AVIOContext *pb = s->pb;
  114. unsigned char preamble[AUD_CHUNK_PREAMBLE_SIZE];
  115. unsigned int chunk_size;
  116. int ret = 0;
  117. AVStream *st = s->streams[0];
  118. if (avio_read(pb, preamble, AUD_CHUNK_PREAMBLE_SIZE) !=
  119. AUD_CHUNK_PREAMBLE_SIZE)
  120. return AVERROR(EIO);
  121. /* validate the chunk */
  122. if (AV_RL32(&preamble[4]) != AUD_CHUNK_SIGNATURE)
  123. return AVERROR_INVALIDDATA;
  124. chunk_size = AV_RL16(&preamble[0]);
  125. if (st->codec->codec_id == AV_CODEC_ID_WESTWOOD_SND1) {
  126. /* For Westwood SND1 audio we need to add the output size and input
  127. size to the start of the packet to match what is in VQA.
  128. Specifically, this is needed to signal when a packet should be
  129. decoding as raw 8-bit pcm or variable-size ADPCM. */
  130. int out_size = AV_RL16(&preamble[2]);
  131. if ((ret = av_new_packet(pkt, chunk_size + 4)))
  132. return ret;
  133. if ((ret = avio_read(pb, &pkt->data[4], chunk_size)) != chunk_size)
  134. return ret < 0 ? ret : AVERROR(EIO);
  135. AV_WL16(&pkt->data[0], out_size);
  136. AV_WL16(&pkt->data[2], chunk_size);
  137. pkt->duration = out_size;
  138. } else {
  139. ret = av_get_packet(pb, pkt, chunk_size);
  140. if (ret != chunk_size)
  141. return AVERROR(EIO);
  142. /* 2 samples/byte, 1 or 2 samples per frame depending on stereo */
  143. pkt->duration = (chunk_size * 2) / st->codec->channels;
  144. }
  145. pkt->stream_index = st->index;
  146. return ret;
  147. }
  148. AVInputFormat ff_wsaud_demuxer = {
  149. .name = "wsaud",
  150. .long_name = NULL_IF_CONFIG_SMALL("Westwood Studios audio"),
  151. .read_probe = wsaud_probe,
  152. .read_header = wsaud_read_header,
  153. .read_packet = wsaud_read_packet,
  154. };