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.

241 lines
8.1KB

  1. /*
  2. * Sierra VMD audio decoder
  3. * Copyright (c) 2004 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. * Sierra VMD audio decoder
  24. * by Vladimir "VAG" Gneushev (vagsoft at mail.ru)
  25. * for more information on the Sierra VMD format, visit:
  26. * http://www.pcisys.net/~melanson/codecs/
  27. *
  28. * The audio decoder, expects each encoded data
  29. * chunk to be prepended with the appropriate 16-byte frame information
  30. * record from the VMD file. It does not require the 0x330-byte VMD file
  31. * header, but it does need the audio setup parameters passed in through
  32. * normal libavcodec API means.
  33. */
  34. #include <string.h>
  35. #include "libavutil/avassert.h"
  36. #include "libavutil/channel_layout.h"
  37. #include "libavutil/common.h"
  38. #include "libavutil/intreadwrite.h"
  39. #include "avcodec.h"
  40. #include "internal.h"
  41. #define BLOCK_TYPE_AUDIO 1
  42. #define BLOCK_TYPE_INITIAL 2
  43. #define BLOCK_TYPE_SILENCE 3
  44. typedef struct VmdAudioContext {
  45. int out_bps;
  46. int chunk_size;
  47. } VmdAudioContext;
  48. static const uint16_t vmdaudio_table[128] = {
  49. 0x000, 0x008, 0x010, 0x020, 0x030, 0x040, 0x050, 0x060, 0x070, 0x080,
  50. 0x090, 0x0A0, 0x0B0, 0x0C0, 0x0D0, 0x0E0, 0x0F0, 0x100, 0x110, 0x120,
  51. 0x130, 0x140, 0x150, 0x160, 0x170, 0x180, 0x190, 0x1A0, 0x1B0, 0x1C0,
  52. 0x1D0, 0x1E0, 0x1F0, 0x200, 0x208, 0x210, 0x218, 0x220, 0x228, 0x230,
  53. 0x238, 0x240, 0x248, 0x250, 0x258, 0x260, 0x268, 0x270, 0x278, 0x280,
  54. 0x288, 0x290, 0x298, 0x2A0, 0x2A8, 0x2B0, 0x2B8, 0x2C0, 0x2C8, 0x2D0,
  55. 0x2D8, 0x2E0, 0x2E8, 0x2F0, 0x2F8, 0x300, 0x308, 0x310, 0x318, 0x320,
  56. 0x328, 0x330, 0x338, 0x340, 0x348, 0x350, 0x358, 0x360, 0x368, 0x370,
  57. 0x378, 0x380, 0x388, 0x390, 0x398, 0x3A0, 0x3A8, 0x3B0, 0x3B8, 0x3C0,
  58. 0x3C8, 0x3D0, 0x3D8, 0x3E0, 0x3E8, 0x3F0, 0x3F8, 0x400, 0x440, 0x480,
  59. 0x4C0, 0x500, 0x540, 0x580, 0x5C0, 0x600, 0x640, 0x680, 0x6C0, 0x700,
  60. 0x740, 0x780, 0x7C0, 0x800, 0x900, 0xA00, 0xB00, 0xC00, 0xD00, 0xE00,
  61. 0xF00, 0x1000, 0x1400, 0x1800, 0x1C00, 0x2000, 0x3000, 0x4000
  62. };
  63. static av_cold int vmdaudio_decode_init(AVCodecContext *avctx)
  64. {
  65. VmdAudioContext *s = avctx->priv_data;
  66. if (avctx->channels < 1 || avctx->channels > 2) {
  67. av_log(avctx, AV_LOG_ERROR, "invalid number of channels\n");
  68. return AVERROR(EINVAL);
  69. }
  70. if (avctx->block_align < 1 || avctx->block_align % avctx->channels ||
  71. avctx->block_align > INT_MAX - avctx->channels
  72. ) {
  73. av_log(avctx, AV_LOG_ERROR, "invalid block align\n");
  74. return AVERROR(EINVAL);
  75. }
  76. avctx->channel_layout = avctx->channels == 1 ? AV_CH_LAYOUT_MONO :
  77. AV_CH_LAYOUT_STEREO;
  78. if (avctx->bits_per_coded_sample == 16)
  79. avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  80. else
  81. avctx->sample_fmt = AV_SAMPLE_FMT_U8;
  82. s->out_bps = av_get_bytes_per_sample(avctx->sample_fmt);
  83. s->chunk_size = avctx->block_align + avctx->channels * (s->out_bps == 2);
  84. av_log(avctx, AV_LOG_DEBUG, "%d channels, %d bits/sample, "
  85. "block align = %d, sample rate = %d\n",
  86. avctx->channels, avctx->bits_per_coded_sample, avctx->block_align,
  87. avctx->sample_rate);
  88. return 0;
  89. }
  90. static void decode_audio_s16(int16_t *out, const uint8_t *buf, int buf_size,
  91. int channels)
  92. {
  93. int ch;
  94. const uint8_t *buf_end = buf + buf_size;
  95. int predictor[2];
  96. int st = channels - 1;
  97. /* decode initial raw sample */
  98. for (ch = 0; ch < channels; ch++) {
  99. predictor[ch] = (int16_t)AV_RL16(buf);
  100. buf += 2;
  101. *out++ = predictor[ch];
  102. }
  103. /* decode DPCM samples */
  104. ch = 0;
  105. while (buf < buf_end) {
  106. uint8_t b = *buf++;
  107. if (b & 0x80)
  108. predictor[ch] -= vmdaudio_table[b & 0x7F];
  109. else
  110. predictor[ch] += vmdaudio_table[b];
  111. predictor[ch] = av_clip_int16(predictor[ch]);
  112. *out++ = predictor[ch];
  113. ch ^= st;
  114. }
  115. }
  116. static int vmdaudio_decode_frame(AVCodecContext *avctx, void *data,
  117. int *got_frame_ptr, AVPacket *avpkt)
  118. {
  119. AVFrame *frame = data;
  120. const uint8_t *buf = avpkt->data;
  121. const uint8_t *buf_end;
  122. int buf_size = avpkt->size;
  123. VmdAudioContext *s = avctx->priv_data;
  124. int block_type, silent_chunks, audio_chunks;
  125. int ret;
  126. uint8_t *output_samples_u8;
  127. int16_t *output_samples_s16;
  128. if (buf_size < 16) {
  129. av_log(avctx, AV_LOG_WARNING, "skipping small junk packet\n");
  130. *got_frame_ptr = 0;
  131. return buf_size;
  132. }
  133. block_type = buf[6];
  134. if (block_type < BLOCK_TYPE_AUDIO || block_type > BLOCK_TYPE_SILENCE) {
  135. av_log(avctx, AV_LOG_ERROR, "unknown block type: %d\n", block_type);
  136. return AVERROR(EINVAL);
  137. }
  138. buf += 16;
  139. buf_size -= 16;
  140. /* get number of silent chunks */
  141. silent_chunks = 0;
  142. if (block_type == BLOCK_TYPE_INITIAL) {
  143. uint32_t flags;
  144. if (buf_size < 4) {
  145. av_log(avctx, AV_LOG_ERROR, "packet is too small\n");
  146. return AVERROR(EINVAL);
  147. }
  148. flags = AV_RB32(buf);
  149. silent_chunks = av_popcount(flags);
  150. buf += 4;
  151. buf_size -= 4;
  152. } else if (block_type == BLOCK_TYPE_SILENCE) {
  153. silent_chunks = 1;
  154. buf_size = 0; // should already be zero but set it just to be sure
  155. }
  156. /* ensure output buffer is large enough */
  157. audio_chunks = buf_size / s->chunk_size;
  158. /* drop incomplete chunks */
  159. buf_size = audio_chunks * s->chunk_size;
  160. if (silent_chunks + audio_chunks >= INT_MAX / avctx->block_align)
  161. return AVERROR_INVALIDDATA;
  162. /* get output buffer */
  163. frame->nb_samples = ((silent_chunks + audio_chunks) * avctx->block_align) /
  164. avctx->channels;
  165. if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
  166. return ret;
  167. output_samples_u8 = frame->data[0];
  168. output_samples_s16 = (int16_t *)frame->data[0];
  169. /* decode silent chunks */
  170. if (silent_chunks > 0) {
  171. int silent_size = avctx->block_align * silent_chunks;
  172. av_assert0(avctx->block_align * silent_chunks <= frame->nb_samples * avctx->channels);
  173. if (s->out_bps == 2) {
  174. memset(output_samples_s16, 0x00, silent_size * 2);
  175. output_samples_s16 += silent_size;
  176. } else {
  177. memset(output_samples_u8, 0x80, silent_size);
  178. output_samples_u8 += silent_size;
  179. }
  180. }
  181. /* decode audio chunks */
  182. if (audio_chunks > 0) {
  183. buf_end = buf + buf_size;
  184. av_assert0((buf_size & (avctx->channels > 1)) == 0);
  185. while (buf_end - buf >= s->chunk_size) {
  186. if (s->out_bps == 2) {
  187. decode_audio_s16(output_samples_s16, buf, s->chunk_size,
  188. avctx->channels);
  189. output_samples_s16 += avctx->block_align;
  190. } else {
  191. memcpy(output_samples_u8, buf, s->chunk_size);
  192. output_samples_u8 += avctx->block_align;
  193. }
  194. buf += s->chunk_size;
  195. }
  196. }
  197. *got_frame_ptr = 1;
  198. return avpkt->size;
  199. }
  200. AVCodec ff_vmdaudio_decoder = {
  201. .name = "vmdaudio",
  202. .long_name = NULL_IF_CONFIG_SMALL("Sierra VMD audio"),
  203. .type = AVMEDIA_TYPE_AUDIO,
  204. .id = AV_CODEC_ID_VMDAUDIO,
  205. .priv_data_size = sizeof(VmdAudioContext),
  206. .init = vmdaudio_decode_init,
  207. .decode = vmdaudio_decode_frame,
  208. .capabilities = AV_CODEC_CAP_DR1,
  209. };