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.

136 lines
5.3KB

  1. /*
  2. * Delphine Software International CIN audio decoder
  3. * Copyright (c) 2006 Gregory Montoir (cyx@users.sourceforge.net)
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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. * Delphine Software International CIN audio decoder
  24. */
  25. #include "libavutil/channel_layout.h"
  26. #include "avcodec.h"
  27. #include "bytestream.h"
  28. #include "internal.h"
  29. #include "mathops.h"
  30. typedef struct CinAudioContext {
  31. int initial_decode_frame;
  32. int delta;
  33. } CinAudioContext;
  34. /* table defining a geometric sequence with multiplier = 32767 ^ (1 / 128) */
  35. static const int16_t cinaudio_delta16_table[256] = {
  36. 0, 0, 0, 0, 0, 0, 0, 0,
  37. 0, 0, 0, 0, 0, 0, 0, 0,
  38. 0, 0, 0, -30210, -27853, -25680, -23677, -21829,
  39. -20126, -18556, -17108, -15774, -14543, -13408, -12362, -11398,
  40. -10508, -9689, -8933, -8236, -7593, -7001, -6455, -5951,
  41. -5487, -5059, -4664, -4300, -3964, -3655, -3370, -3107,
  42. -2865, -2641, -2435, -2245, -2070, -1908, -1759, -1622,
  43. -1495, -1379, -1271, -1172, -1080, -996, -918, -847,
  44. -781, -720, -663, -612, -564, -520, -479, -442,
  45. -407, -376, -346, -319, -294, -271, -250, -230,
  46. -212, -196, -181, -166, -153, -141, -130, -120,
  47. -111, -102, -94, -87, -80, -74, -68, -62,
  48. -58, -53, -49, -45, -41, -38, -35, -32,
  49. -30, -27, -25, -23, -21, -20, -18, -17,
  50. -15, -14, -13, -12, -11, -10, -9, -8,
  51. -7, -6, -5, -4, -3, -2, -1, 0,
  52. 0, 1, 2, 3, 4, 5, 6, 7,
  53. 8, 9, 10, 11, 12, 13, 14, 15,
  54. 17, 18, 20, 21, 23, 25, 27, 30,
  55. 32, 35, 38, 41, 45, 49, 53, 58,
  56. 62, 68, 74, 80, 87, 94, 102, 111,
  57. 120, 130, 141, 153, 166, 181, 196, 212,
  58. 230, 250, 271, 294, 319, 346, 376, 407,
  59. 442, 479, 520, 564, 612, 663, 720, 781,
  60. 847, 918, 996, 1080, 1172, 1271, 1379, 1495,
  61. 1622, 1759, 1908, 2070, 2245, 2435, 2641, 2865,
  62. 3107, 3370, 3655, 3964, 4300, 4664, 5059, 5487,
  63. 5951, 6455, 7001, 7593, 8236, 8933, 9689, 10508,
  64. 11398, 12362, 13408, 14543, 15774, 17108, 18556, 20126,
  65. 21829, 23677, 25680, 27853, 30210, 0, 0, 0,
  66. 0, 0, 0, 0, 0, 0, 0, 0,
  67. 0, 0, 0, 0, 0, 0, 0, 0
  68. };
  69. static av_cold int cinaudio_decode_init(AVCodecContext *avctx)
  70. {
  71. CinAudioContext *cin = avctx->priv_data;
  72. cin->initial_decode_frame = 1;
  73. cin->delta = 0;
  74. avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  75. avctx->channels = 1;
  76. avctx->channel_layout = AV_CH_LAYOUT_MONO;
  77. return 0;
  78. }
  79. static int cinaudio_decode_frame(AVCodecContext *avctx, void *data,
  80. int *got_frame_ptr, AVPacket *avpkt)
  81. {
  82. AVFrame *frame = data;
  83. const uint8_t *buf = avpkt->data;
  84. CinAudioContext *cin = avctx->priv_data;
  85. const uint8_t *buf_end = buf + avpkt->size;
  86. int16_t *samples;
  87. int delta, ret;
  88. /* get output buffer */
  89. frame->nb_samples = avpkt->size - cin->initial_decode_frame;
  90. if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) {
  91. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  92. return ret;
  93. }
  94. samples = (int16_t *)frame->data[0];
  95. delta = cin->delta;
  96. if (cin->initial_decode_frame) {
  97. cin->initial_decode_frame = 0;
  98. delta = sign_extend(AV_RL16(buf), 16);
  99. buf += 2;
  100. *samples++ = delta;
  101. }
  102. while (buf < buf_end) {
  103. delta += cinaudio_delta16_table[*buf++];
  104. delta = av_clip_int16(delta);
  105. *samples++ = delta;
  106. }
  107. cin->delta = delta;
  108. *got_frame_ptr = 1;
  109. return avpkt->size;
  110. }
  111. AVCodec ff_dsicinaudio_decoder = {
  112. .name = "dsicinaudio",
  113. .long_name = NULL_IF_CONFIG_SMALL("Delphine Software International CIN audio"),
  114. .type = AVMEDIA_TYPE_AUDIO,
  115. .id = AV_CODEC_ID_DSICINAUDIO,
  116. .priv_data_size = sizeof(CinAudioContext),
  117. .init = cinaudio_decode_init,
  118. .decode = cinaudio_decode_frame,
  119. .capabilities = AV_CODEC_CAP_DR1,
  120. };