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.

226 lines
7.3KB

  1. /*
  2. * Copyright (C) 2008 Jaikrishnan Menon
  3. * Copyright (C) 2011 Stefano Sabatini
  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. * 8svx audio decoder
  24. * supports: fibonacci delta encoding
  25. * : exponential encoding
  26. *
  27. * For more information about the 8SVX format:
  28. * http://netghost.narod.ru/gff/vendspec/iff/iff.txt
  29. * http://sox.sourceforge.net/AudioFormats-11.html
  30. * http://aminet.net/package/mus/misc/wavepak
  31. * http://amigan.1emu.net/reg/8SVX.txt
  32. *
  33. * Samples can be found here:
  34. * http://aminet.net/mods/smpl/
  35. */
  36. #include "avcodec.h"
  37. /** decoder context */
  38. typedef struct EightSvxContext {
  39. const int8_t *table;
  40. /* buffer used to store the whole audio decoded/interleaved chunk,
  41. * which is sent with the first packet */
  42. uint8_t *samples;
  43. size_t samples_size;
  44. int samples_idx;
  45. } EightSvxContext;
  46. static const int8_t fibonacci[16] = { -34, -21, -13, -8, -5, -3, -2, -1, 0, 1, 2, 3, 5, 8, 13, 21 };
  47. static const int8_t exponential[16] = { -128, -64, -32, -16, -8, -4, -2, -1, 0, 1, 2, 4, 8, 16, 32, 64 };
  48. #define MAX_FRAME_SIZE 2048
  49. /**
  50. * Interleave samples in buffer containing all left channel samples
  51. * at the beginning, and right channel samples at the end.
  52. * Each sample is assumed to be in signed 8-bit format.
  53. *
  54. * @param size the size in bytes of the dst and src buffer
  55. */
  56. static void interleave_stereo(uint8_t *dst, const uint8_t *src, int size)
  57. {
  58. uint8_t *dst_end = dst + size;
  59. size = size>>1;
  60. while (dst < dst_end) {
  61. *dst++ = *src;
  62. *dst++ = *(src+size);
  63. src++;
  64. }
  65. }
  66. /**
  67. * Delta decode the compressed values in src, and put the resulting
  68. * decoded n samples in dst.
  69. *
  70. * @param val starting value assumed by the delta sequence
  71. * @param table delta sequence table
  72. * @return size in bytes of the decoded data, must be src_size*2
  73. */
  74. static int delta_decode(int8_t *dst, const uint8_t *src, int src_size,
  75. int8_t val, const int8_t *table)
  76. {
  77. int n = src_size;
  78. int8_t *dst0 = dst;
  79. while (n--) {
  80. uint8_t d = *src++;
  81. val = av_clip(val + table[d & 0x0f], -127, 128);
  82. *dst++ = val;
  83. val = av_clip(val + table[d >> 4] , -127, 128);
  84. *dst++ = val;
  85. }
  86. return dst-dst0;
  87. }
  88. static int eightsvx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
  89. AVPacket *avpkt)
  90. {
  91. EightSvxContext *esc = avctx->priv_data;
  92. int out_data_size, n;
  93. uint8_t *src, *dst;
  94. /* decode and interleave the first packet */
  95. if (!esc->samples && avpkt) {
  96. uint8_t *deinterleaved_samples;
  97. esc->samples_size = avctx->codec->id == CODEC_ID_8SVX_RAW ?
  98. avpkt->size : avctx->channels + (avpkt->size-avctx->channels) * 2;
  99. if (!(esc->samples = av_malloc(esc->samples_size)))
  100. return AVERROR(ENOMEM);
  101. /* decompress */
  102. if (avctx->codec->id == CODEC_ID_8SVX_FIB || avctx->codec->id == CODEC_ID_8SVX_EXP) {
  103. const uint8_t *buf = avpkt->data;
  104. int buf_size = avpkt->size;
  105. int n = esc->samples_size;
  106. if (!(deinterleaved_samples = av_mallocz(n)))
  107. return AVERROR(ENOMEM);
  108. /* the uncompressed starting value is contained in the first byte */
  109. if (avctx->channels == 2) {
  110. delta_decode(deinterleaved_samples , buf+1, buf_size/2-1, buf[0], esc->table);
  111. buf += buf_size/2;
  112. delta_decode(deinterleaved_samples+n/2-1, buf+1, buf_size/2-1, buf[0], esc->table);
  113. } else
  114. delta_decode(deinterleaved_samples , buf+1, buf_size-1 , buf[0], esc->table);
  115. } else {
  116. deinterleaved_samples = avpkt->data;
  117. }
  118. if (avctx->channels == 2)
  119. interleave_stereo(esc->samples, deinterleaved_samples, esc->samples_size);
  120. else
  121. memcpy(esc->samples, deinterleaved_samples, esc->samples_size);
  122. }
  123. /* return single packed with fixed size */
  124. out_data_size = FFMIN(MAX_FRAME_SIZE, esc->samples_size - esc->samples_idx);
  125. if (*data_size < out_data_size) {
  126. av_log(avctx, AV_LOG_ERROR, "Provided buffer with size %d is too small.\n", *data_size);
  127. return AVERROR(EINVAL);
  128. }
  129. *data_size = out_data_size;
  130. dst = data;
  131. src = esc->samples + esc->samples_idx;
  132. for (n = out_data_size; n > 0; n--)
  133. *dst++ = *src++ + 128;
  134. esc->samples_idx += *data_size;
  135. return avctx->codec->id == CODEC_ID_8SVX_FIB || avctx->codec->id == CODEC_ID_8SVX_EXP ?
  136. (avctx->frame_number == 0)*2 + out_data_size / 2 :
  137. out_data_size;
  138. }
  139. static av_cold int eightsvx_decode_init(AVCodecContext *avctx)
  140. {
  141. EightSvxContext *esc = avctx->priv_data;
  142. if (avctx->channels > 2) {
  143. av_log(avctx, AV_LOG_ERROR, "8SVX does not support more than 2 channels\n");
  144. return AVERROR_INVALIDDATA;
  145. }
  146. switch (avctx->codec->id) {
  147. case CODEC_ID_8SVX_FIB: esc->table = fibonacci; break;
  148. case CODEC_ID_8SVX_EXP: esc->table = exponential; break;
  149. case CODEC_ID_8SVX_RAW: esc->table = NULL; break;
  150. default:
  151. av_log(avctx, AV_LOG_ERROR, "Invalid codec id %d.\n", avctx->codec->id);
  152. return AVERROR_INVALIDDATA;
  153. }
  154. avctx->sample_fmt = AV_SAMPLE_FMT_U8;
  155. return 0;
  156. }
  157. static av_cold int eightsvx_decode_close(AVCodecContext *avctx)
  158. {
  159. EightSvxContext *esc = avctx->priv_data;
  160. av_freep(&esc->samples);
  161. esc->samples_size = 0;
  162. esc->samples_idx = 0;
  163. return 0;
  164. }
  165. AVCodec ff_eightsvx_fib_decoder = {
  166. .name = "8svx_fib",
  167. .type = AVMEDIA_TYPE_AUDIO,
  168. .id = CODEC_ID_8SVX_FIB,
  169. .priv_data_size = sizeof (EightSvxContext),
  170. .init = eightsvx_decode_init,
  171. .decode = eightsvx_decode_frame,
  172. .close = eightsvx_decode_close,
  173. .long_name = NULL_IF_CONFIG_SMALL("8SVX fibonacci"),
  174. };
  175. AVCodec ff_eightsvx_exp_decoder = {
  176. .name = "8svx_exp",
  177. .type = AVMEDIA_TYPE_AUDIO,
  178. .id = CODEC_ID_8SVX_EXP,
  179. .priv_data_size = sizeof (EightSvxContext),
  180. .init = eightsvx_decode_init,
  181. .decode = eightsvx_decode_frame,
  182. .close = eightsvx_decode_close,
  183. .long_name = NULL_IF_CONFIG_SMALL("8SVX exponential"),
  184. };
  185. AVCodec ff_eightsvx_raw_decoder = {
  186. .name = "8svx_raw",
  187. .type = AVMEDIA_TYPE_AUDIO,
  188. .id = CODEC_ID_8SVX_RAW,
  189. .priv_data_size = sizeof(EightSvxContext),
  190. .init = eightsvx_decode_init,
  191. .decode = eightsvx_decode_frame,
  192. .close = eightsvx_decode_close,
  193. .long_name = NULL_IF_CONFIG_SMALL("8SVX rawaudio"),
  194. };