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.

249 lines
8.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. * @author Jaikrishnan Menon
  25. *
  26. * supports: fibonacci delta encoding
  27. * : exponential encoding
  28. *
  29. * For more information about the 8SVX format:
  30. * http://netghost.narod.ru/gff/vendspec/iff/iff.txt
  31. * http://sox.sourceforge.net/AudioFormats-11.html
  32. * http://aminet.net/package/mus/misc/wavepak
  33. * http://amigan.1emu.net/reg/8SVX.txt
  34. *
  35. * Samples can be found here:
  36. * http://aminet.net/mods/smpl/
  37. */
  38. #include "libavutil/avassert.h"
  39. #include "avcodec.h"
  40. #include "libavutil/common.h"
  41. /** decoder context */
  42. typedef struct EightSvxContext {
  43. AVFrame frame;
  44. const int8_t *table;
  45. /* buffer used to store the whole audio decoded/interleaved chunk,
  46. * which is sent with the first packet */
  47. uint8_t *samples;
  48. int64_t samples_size;
  49. int samples_idx;
  50. } EightSvxContext;
  51. static const int8_t fibonacci[16] = { -34, -21, -13, -8, -5, -3, -2, -1, 0, 1, 2, 3, 5, 8, 13, 21 };
  52. static const int8_t exponential[16] = { -128, -64, -32, -16, -8, -4, -2, -1, 0, 1, 2, 4, 8, 16, 32, 64 };
  53. #define MAX_FRAME_SIZE 2048
  54. /**
  55. * Delta decode the compressed values in src, and put the resulting
  56. * decoded n samples in dst.
  57. *
  58. * @param val starting value assumed by the delta sequence
  59. * @param table delta sequence table
  60. * @return size in bytes of the decoded data, must be src_size*2
  61. */
  62. static int delta_decode(int8_t *dst, const uint8_t *src, int src_size,
  63. int8_t val, const int8_t *table)
  64. {
  65. int n = src_size;
  66. int8_t *dst0 = dst;
  67. while (n--) {
  68. uint8_t d = *src++;
  69. val = av_clip(val + table[d & 0x0f], -127, 128);
  70. *dst++ = val;
  71. val = av_clip(val + table[d >> 4] , -127, 128);
  72. *dst++ = val;
  73. }
  74. return dst-dst0;
  75. }
  76. /** decode a frame */
  77. static int eightsvx_decode_frame(AVCodecContext *avctx, void *data,
  78. int *got_frame_ptr, AVPacket *avpkt)
  79. {
  80. EightSvxContext *esc = avctx->priv_data;
  81. int n, out_data_size;
  82. int ch, ret;
  83. uint8_t *src, *dst;
  84. /* decode and interleave the first packet */
  85. if (!esc->samples && avpkt) {
  86. uint8_t *deinterleaved_samples, *p = NULL;
  87. int packet_size = avpkt->size;
  88. if (packet_size % avctx->channels) {
  89. av_log(avctx, AV_LOG_WARNING, "Packet with odd size, ignoring last byte\n");
  90. if (packet_size < avctx->channels)
  91. return packet_size;
  92. packet_size -= packet_size % avctx->channels;
  93. }
  94. esc->samples_size = !esc->table ?
  95. packet_size : avctx->channels + (packet_size-avctx->channels) * 2;
  96. if (!(esc->samples = av_malloc(esc->samples_size)))
  97. return AVERROR(ENOMEM);
  98. /* decompress */
  99. if (esc->table) {
  100. const uint8_t *buf = avpkt->data;
  101. uint8_t *dst;
  102. int buf_size = avpkt->size;
  103. int i, n = esc->samples_size;
  104. if (buf_size < 2) {
  105. av_log(avctx, AV_LOG_ERROR, "packet size is too small\n");
  106. return AVERROR(EINVAL);
  107. }
  108. if (!(deinterleaved_samples = av_mallocz(n)))
  109. return AVERROR(ENOMEM);
  110. dst = p = deinterleaved_samples;
  111. /* the uncompressed starting value is contained in the first byte */
  112. dst = deinterleaved_samples;
  113. for (i = 0; i < avctx->channels; i++) {
  114. delta_decode(dst, buf + 1, buf_size / avctx->channels - 1, buf[0], esc->table);
  115. buf += buf_size / avctx->channels;
  116. dst += n / avctx->channels - 1;
  117. }
  118. } else {
  119. deinterleaved_samples = avpkt->data;
  120. }
  121. memcpy(esc->samples, deinterleaved_samples, esc->samples_size);
  122. av_freep(&p);
  123. }
  124. /* get output buffer */
  125. av_assert1(!(esc->samples_size % avctx->channels || esc->samples_idx % avctx->channels));
  126. esc->frame.nb_samples = FFMIN(MAX_FRAME_SIZE, esc->samples_size - esc->samples_idx) / avctx->channels;
  127. if ((ret = avctx->get_buffer(avctx, &esc->frame)) < 0) {
  128. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  129. return ret;
  130. }
  131. *got_frame_ptr = 1;
  132. *(AVFrame *)data = esc->frame;
  133. out_data_size = esc->frame.nb_samples;
  134. for (ch = 0; ch<avctx->channels; ch++) {
  135. dst = esc->frame.data[ch];
  136. src = esc->samples + esc->samples_idx / avctx->channels + ch * esc->samples_size / avctx->channels;
  137. for (n = out_data_size; n > 0; n--)
  138. *dst++ = *src++ + 128;
  139. }
  140. out_data_size *= avctx->channels;
  141. esc->samples_idx += out_data_size;
  142. return esc->table ?
  143. (avctx->frame_number == 0)*2 + out_data_size / 2 :
  144. out_data_size;
  145. }
  146. static av_cold int eightsvx_decode_init(AVCodecContext *avctx)
  147. {
  148. EightSvxContext *esc = avctx->priv_data;
  149. if (avctx->channels < 1 || avctx->channels > 2) {
  150. av_log(avctx, AV_LOG_ERROR, "8SVX does not support more than 2 channels\n");
  151. return AVERROR_INVALIDDATA;
  152. }
  153. switch (avctx->codec->id) {
  154. case AV_CODEC_ID_8SVX_FIB: esc->table = fibonacci; break;
  155. case AV_CODEC_ID_8SVX_EXP: esc->table = exponential; break;
  156. case AV_CODEC_ID_PCM_S8_PLANAR:
  157. case AV_CODEC_ID_8SVX_RAW: esc->table = NULL; break;
  158. default:
  159. av_log(avctx, AV_LOG_ERROR, "Invalid codec id %d.\n", avctx->codec->id);
  160. return AVERROR_INVALIDDATA;
  161. }
  162. avctx->sample_fmt = AV_SAMPLE_FMT_U8P;
  163. avcodec_get_frame_defaults(&esc->frame);
  164. avctx->coded_frame = &esc->frame;
  165. return 0;
  166. }
  167. static av_cold int eightsvx_decode_close(AVCodecContext *avctx)
  168. {
  169. EightSvxContext *esc = avctx->priv_data;
  170. av_freep(&esc->samples);
  171. esc->samples_size = 0;
  172. esc->samples_idx = 0;
  173. return 0;
  174. }
  175. #if CONFIG_EIGHTSVX_FIB_DECODER
  176. AVCodec ff_eightsvx_fib_decoder = {
  177. .name = "8svx_fib",
  178. .type = AVMEDIA_TYPE_AUDIO,
  179. .id = AV_CODEC_ID_8SVX_FIB,
  180. .priv_data_size = sizeof (EightSvxContext),
  181. .init = eightsvx_decode_init,
  182. .decode = eightsvx_decode_frame,
  183. .close = eightsvx_decode_close,
  184. .capabilities = CODEC_CAP_DR1,
  185. .long_name = NULL_IF_CONFIG_SMALL("8SVX fibonacci"),
  186. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_U8P,
  187. AV_SAMPLE_FMT_NONE },
  188. };
  189. #endif
  190. #if CONFIG_EIGHTSVX_EXP_DECODER
  191. AVCodec ff_eightsvx_exp_decoder = {
  192. .name = "8svx_exp",
  193. .type = AVMEDIA_TYPE_AUDIO,
  194. .id = AV_CODEC_ID_8SVX_EXP,
  195. .priv_data_size = sizeof (EightSvxContext),
  196. .init = eightsvx_decode_init,
  197. .decode = eightsvx_decode_frame,
  198. .close = eightsvx_decode_close,
  199. .capabilities = CODEC_CAP_DR1,
  200. .long_name = NULL_IF_CONFIG_SMALL("8SVX exponential"),
  201. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_U8P,
  202. AV_SAMPLE_FMT_NONE },
  203. };
  204. #endif
  205. #if CONFIG_PCM_S8_PLANAR_DECODER
  206. AVCodec ff_pcm_s8_planar_decoder = {
  207. .name = "pcm_s8_planar",
  208. .type = AVMEDIA_TYPE_AUDIO,
  209. .id = AV_CODEC_ID_PCM_S8_PLANAR,
  210. .priv_data_size = sizeof(EightSvxContext),
  211. .init = eightsvx_decode_init,
  212. .close = eightsvx_decode_close,
  213. .decode = eightsvx_decode_frame,
  214. .capabilities = CODEC_CAP_DR1,
  215. .long_name = NULL_IF_CONFIG_SMALL("PCM signed 8-bit planar"),
  216. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_U8P,
  217. AV_SAMPLE_FMT_NONE },
  218. };
  219. #endif