sample_cvt.c 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. #include "config.h"
  2. #include "sample_cvt.h"
  3. #include "AL/al.h"
  4. #include "alu.h"
  5. #include "alBuffer.h"
  6. /* IMA ADPCM Stepsize table */
  7. static const int IMAStep_size[89] = {
  8. 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19,
  9. 21, 23, 25, 28, 31, 34, 37, 41, 45, 50, 55,
  10. 60, 66, 73, 80, 88, 97, 107, 118, 130, 143, 157,
  11. 173, 190, 209, 230, 253, 279, 307, 337, 371, 408, 449,
  12. 494, 544, 598, 658, 724, 796, 876, 963, 1060, 1166, 1282,
  13. 1411, 1552, 1707, 1878, 2066, 2272, 2499, 2749, 3024, 3327, 3660,
  14. 4026, 4428, 4871, 5358, 5894, 6484, 7132, 7845, 8630, 9493,10442,
  15. 11487,12635,13899,15289,16818,18500,20350,22358,24633,27086,29794,
  16. 32767
  17. };
  18. /* IMA4 ADPCM Codeword decode table */
  19. static const int IMA4Codeword[16] = {
  20. 1, 3, 5, 7, 9, 11, 13, 15,
  21. -1,-3,-5,-7,-9,-11,-13,-15,
  22. };
  23. /* IMA4 ADPCM Step index adjust decode table */
  24. static const int IMA4Index_adjust[16] = {
  25. -1,-1,-1,-1, 2, 4, 6, 8,
  26. -1,-1,-1,-1, 2, 4, 6, 8
  27. };
  28. /* MSADPCM Adaption table */
  29. static const int MSADPCMAdaption[16] = {
  30. 230, 230, 230, 230, 307, 409, 512, 614,
  31. 768, 614, 512, 409, 307, 230, 230, 230
  32. };
  33. /* MSADPCM Adaption Coefficient tables */
  34. static const int MSADPCMAdaptionCoeff[7][2] = {
  35. { 256, 0 },
  36. { 512, -256 },
  37. { 0, 0 },
  38. { 192, 64 },
  39. { 240, 0 },
  40. { 460, -208 },
  41. { 392, -232 }
  42. };
  43. /* A quick'n'dirty lookup table to decode a muLaw-encoded byte sample into a
  44. * signed 16-bit sample */
  45. const ALshort muLawDecompressionTable[256] = {
  46. -32124,-31100,-30076,-29052,-28028,-27004,-25980,-24956,
  47. -23932,-22908,-21884,-20860,-19836,-18812,-17788,-16764,
  48. -15996,-15484,-14972,-14460,-13948,-13436,-12924,-12412,
  49. -11900,-11388,-10876,-10364, -9852, -9340, -8828, -8316,
  50. -7932, -7676, -7420, -7164, -6908, -6652, -6396, -6140,
  51. -5884, -5628, -5372, -5116, -4860, -4604, -4348, -4092,
  52. -3900, -3772, -3644, -3516, -3388, -3260, -3132, -3004,
  53. -2876, -2748, -2620, -2492, -2364, -2236, -2108, -1980,
  54. -1884, -1820, -1756, -1692, -1628, -1564, -1500, -1436,
  55. -1372, -1308, -1244, -1180, -1116, -1052, -988, -924,
  56. -876, -844, -812, -780, -748, -716, -684, -652,
  57. -620, -588, -556, -524, -492, -460, -428, -396,
  58. -372, -356, -340, -324, -308, -292, -276, -260,
  59. -244, -228, -212, -196, -180, -164, -148, -132,
  60. -120, -112, -104, -96, -88, -80, -72, -64,
  61. -56, -48, -40, -32, -24, -16, -8, 0,
  62. 32124, 31100, 30076, 29052, 28028, 27004, 25980, 24956,
  63. 23932, 22908, 21884, 20860, 19836, 18812, 17788, 16764,
  64. 15996, 15484, 14972, 14460, 13948, 13436, 12924, 12412,
  65. 11900, 11388, 10876, 10364, 9852, 9340, 8828, 8316,
  66. 7932, 7676, 7420, 7164, 6908, 6652, 6396, 6140,
  67. 5884, 5628, 5372, 5116, 4860, 4604, 4348, 4092,
  68. 3900, 3772, 3644, 3516, 3388, 3260, 3132, 3004,
  69. 2876, 2748, 2620, 2492, 2364, 2236, 2108, 1980,
  70. 1884, 1820, 1756, 1692, 1628, 1564, 1500, 1436,
  71. 1372, 1308, 1244, 1180, 1116, 1052, 988, 924,
  72. 876, 844, 812, 780, 748, 716, 684, 652,
  73. 620, 588, 556, 524, 492, 460, 428, 396,
  74. 372, 356, 340, 324, 308, 292, 276, 260,
  75. 244, 228, 212, 196, 180, 164, 148, 132,
  76. 120, 112, 104, 96, 88, 80, 72, 64,
  77. 56, 48, 40, 32, 24, 16, 8, 0
  78. };
  79. /* A quick'n'dirty lookup table to decode an aLaw-encoded byte sample into a
  80. * signed 16-bit sample */
  81. const ALshort aLawDecompressionTable[256] = {
  82. -5504, -5248, -6016, -5760, -4480, -4224, -4992, -4736,
  83. -7552, -7296, -8064, -7808, -6528, -6272, -7040, -6784,
  84. -2752, -2624, -3008, -2880, -2240, -2112, -2496, -2368,
  85. -3776, -3648, -4032, -3904, -3264, -3136, -3520, -3392,
  86. -22016,-20992,-24064,-23040,-17920,-16896,-19968,-18944,
  87. -30208,-29184,-32256,-31232,-26112,-25088,-28160,-27136,
  88. -11008,-10496,-12032,-11520, -8960, -8448, -9984, -9472,
  89. -15104,-14592,-16128,-15616,-13056,-12544,-14080,-13568,
  90. -344, -328, -376, -360, -280, -264, -312, -296,
  91. -472, -456, -504, -488, -408, -392, -440, -424,
  92. -88, -72, -120, -104, -24, -8, -56, -40,
  93. -216, -200, -248, -232, -152, -136, -184, -168,
  94. -1376, -1312, -1504, -1440, -1120, -1056, -1248, -1184,
  95. -1888, -1824, -2016, -1952, -1632, -1568, -1760, -1696,
  96. -688, -656, -752, -720, -560, -528, -624, -592,
  97. -944, -912, -1008, -976, -816, -784, -880, -848,
  98. 5504, 5248, 6016, 5760, 4480, 4224, 4992, 4736,
  99. 7552, 7296, 8064, 7808, 6528, 6272, 7040, 6784,
  100. 2752, 2624, 3008, 2880, 2240, 2112, 2496, 2368,
  101. 3776, 3648, 4032, 3904, 3264, 3136, 3520, 3392,
  102. 22016, 20992, 24064, 23040, 17920, 16896, 19968, 18944,
  103. 30208, 29184, 32256, 31232, 26112, 25088, 28160, 27136,
  104. 11008, 10496, 12032, 11520, 8960, 8448, 9984, 9472,
  105. 15104, 14592, 16128, 15616, 13056, 12544, 14080, 13568,
  106. 344, 328, 376, 360, 280, 264, 312, 296,
  107. 472, 456, 504, 488, 408, 392, 440, 424,
  108. 88, 72, 120, 104, 24, 8, 56, 40,
  109. 216, 200, 248, 232, 152, 136, 184, 168,
  110. 1376, 1312, 1504, 1440, 1120, 1056, 1248, 1184,
  111. 1888, 1824, 2016, 1952, 1632, 1568, 1760, 1696,
  112. 688, 656, 752, 720, 560, 528, 624, 592,
  113. 944, 912, 1008, 976, 816, 784, 880, 848
  114. };
  115. static void DecodeIMA4Block(ALshort *dst, const ALubyte *src, ALint numchans, ALsizei align)
  116. {
  117. ALint sample[MAX_INPUT_CHANNELS] = { 0 };
  118. ALint index[MAX_INPUT_CHANNELS] = { 0 };
  119. ALuint code[MAX_INPUT_CHANNELS] = { 0 };
  120. ALsizei c, i;
  121. for(c = 0;c < numchans;c++)
  122. {
  123. sample[c] = *(src++);
  124. sample[c] |= *(src++) << 8;
  125. sample[c] = (sample[c]^0x8000) - 32768;
  126. index[c] = *(src++);
  127. index[c] |= *(src++) << 8;
  128. index[c] = (index[c]^0x8000) - 32768;
  129. index[c] = clampi(index[c], 0, 88);
  130. dst[c] = sample[c];
  131. }
  132. for(i = 1;i < align;i++)
  133. {
  134. if((i&7) == 1)
  135. {
  136. for(c = 0;c < numchans;c++)
  137. {
  138. code[c] = *(src++);
  139. code[c] |= *(src++) << 8;
  140. code[c] |= *(src++) << 16;
  141. code[c] |= *(src++) << 24;
  142. }
  143. }
  144. for(c = 0;c < numchans;c++)
  145. {
  146. int nibble = code[c]&0xf;
  147. code[c] >>= 4;
  148. sample[c] += IMA4Codeword[nibble] * IMAStep_size[index[c]] / 8;
  149. sample[c] = clampi(sample[c], -32768, 32767);
  150. index[c] += IMA4Index_adjust[nibble];
  151. index[c] = clampi(index[c], 0, 88);
  152. *(dst++) = sample[c];
  153. }
  154. }
  155. }
  156. static void DecodeMSADPCMBlock(ALshort *dst, const ALubyte *src, ALint numchans, ALsizei align)
  157. {
  158. ALubyte blockpred[MAX_INPUT_CHANNELS] = { 0 };
  159. ALint delta[MAX_INPUT_CHANNELS] = { 0 };
  160. ALshort samples[MAX_INPUT_CHANNELS][2] = { { 0, 0 } };
  161. ALint c, i;
  162. for(c = 0;c < numchans;c++)
  163. {
  164. blockpred[c] = *(src++);
  165. blockpred[c] = minu(blockpred[c], 6);
  166. }
  167. for(c = 0;c < numchans;c++)
  168. {
  169. delta[c] = *(src++);
  170. delta[c] |= *(src++) << 8;
  171. delta[c] = (delta[c]^0x8000) - 32768;
  172. }
  173. for(c = 0;c < numchans;c++)
  174. {
  175. samples[c][0] = *(src++);
  176. samples[c][0] |= *(src++) << 8;
  177. samples[c][0] = (samples[c][0]^0x8000) - 32768;
  178. }
  179. for(c = 0;c < numchans;c++)
  180. {
  181. samples[c][1] = *(src++);
  182. samples[c][1] |= *(src++) << 8;
  183. samples[c][1] = (samples[c][1]^0x8000) - 0x8000;
  184. }
  185. /* Second sample is written first. */
  186. for(c = 0;c < numchans;c++)
  187. *(dst++) = samples[c][1];
  188. for(c = 0;c < numchans;c++)
  189. *(dst++) = samples[c][0];
  190. for(i = 2;i < align;i++)
  191. {
  192. for(c = 0;c < numchans;c++)
  193. {
  194. const ALint num = (i*numchans) + c;
  195. ALint nibble, pred;
  196. /* Read the nibble (first is in the upper bits). */
  197. if(!(num&1))
  198. nibble = (*src>>4)&0x0f;
  199. else
  200. nibble = (*(src++))&0x0f;
  201. pred = (samples[c][0]*MSADPCMAdaptionCoeff[blockpred[c]][0] +
  202. samples[c][1]*MSADPCMAdaptionCoeff[blockpred[c]][1]) / 256;
  203. pred += ((nibble^0x08) - 0x08) * delta[c];
  204. pred = clampi(pred, -32768, 32767);
  205. samples[c][1] = samples[c][0];
  206. samples[c][0] = pred;
  207. delta[c] = (MSADPCMAdaption[nibble] * delta[c]) / 256;
  208. delta[c] = maxi(16, delta[c]);
  209. *(dst++) = pred;
  210. }
  211. }
  212. }
  213. void Convert_ALshort_ALima4(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len,
  214. ALsizei align)
  215. {
  216. ALsizei byte_align = ((align-1)/2 + 4) * numchans;
  217. ALsizei i;
  218. assert(align > 0 && (len%align) == 0);
  219. for(i = 0;i < len;i += align)
  220. {
  221. DecodeIMA4Block(dst, src, numchans, align);
  222. src += byte_align;
  223. dst += align*numchans;
  224. }
  225. }
  226. void Convert_ALshort_ALmsadpcm(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len,
  227. ALsizei align)
  228. {
  229. ALsizei byte_align = ((align-2)/2 + 7) * numchans;
  230. ALsizei i;
  231. assert(align > 1 && (len%align) == 0);
  232. for(i = 0;i < len;i += align)
  233. {
  234. DecodeMSADPCMBlock(dst, src, numchans, align);
  235. src += byte_align;
  236. dst += align*numchans;
  237. }
  238. }