mace.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. /*
  2. * MACE decoder
  3. * Copyright (c) 2002 Laszlo Torok <torokl@alpha.dfmk.hu>
  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 libavcodec/mace.c
  23. * MACE decoder.
  24. */
  25. #include "avcodec.h"
  26. /*
  27. * Adapted to ffmpeg by Francois Revol <revol@free.fr>
  28. * (removed 68k REG stuff, changed types, added some statics and consts,
  29. * libavcodec api, context stuff, interlaced stereo out).
  30. */
  31. static const int16_t MACEtab1[] = {-13, 8, 76, 222, 222, 76, 8, -13};
  32. static const int16_t MACEtab3[] = {-18, 140, 140, -18};
  33. static const int16_t MACEtab2[][4] = {
  34. { 37, 116, 206, 330}, { 39, 121, 216, 346},
  35. { 41, 127, 225, 361}, { 42, 132, 235, 377},
  36. { 44, 137, 245, 392}, { 46, 144, 256, 410},
  37. { 48, 150, 267, 428}, { 51, 157, 280, 449},
  38. { 53, 165, 293, 470}, { 55, 172, 306, 490},
  39. { 58, 179, 319, 511}, { 60, 187, 333, 534},
  40. { 63, 195, 348, 557}, { 66, 205, 364, 583},
  41. { 69, 214, 380, 609}, { 72, 223, 396, 635},
  42. { 75, 233, 414, 663}, { 79, 244, 433, 694},
  43. { 82, 254, 453, 725}, { 86, 265, 472, 756},
  44. { 90, 278, 495, 792}, { 94, 290, 516, 826},
  45. { 98, 303, 538, 862}, { 102, 316, 562, 901},
  46. { 107, 331, 588, 942}, { 112, 345, 614, 983},
  47. { 117, 361, 641, 1027}, { 122, 377, 670, 1074},
  48. { 127, 394, 701, 1123}, { 133, 411, 732, 1172},
  49. { 139, 430, 764, 1224}, { 145, 449, 799, 1280},
  50. { 152, 469, 835, 1337}, { 159, 490, 872, 1397},
  51. { 166, 512, 911, 1459}, { 173, 535, 951, 1523},
  52. { 181, 558, 993, 1590}, { 189, 584, 1038, 1663},
  53. { 197, 610, 1085, 1738}, { 206, 637, 1133, 1815},
  54. { 215, 665, 1183, 1895}, { 225, 695, 1237, 1980},
  55. { 235, 726, 1291, 2068}, { 246, 759, 1349, 2161},
  56. { 257, 792, 1409, 2257}, { 268, 828, 1472, 2357},
  57. { 280, 865, 1538, 2463}, { 293, 903, 1606, 2572},
  58. { 306, 944, 1678, 2688}, { 319, 986, 1753, 2807},
  59. { 334, 1030, 1832, 2933}, { 349, 1076, 1914, 3065},
  60. { 364, 1124, 1999, 3202}, { 380, 1174, 2088, 3344},
  61. { 398, 1227, 2182, 3494}, { 415, 1281, 2278, 3649},
  62. { 434, 1339, 2380, 3811}, { 453, 1398, 2486, 3982},
  63. { 473, 1461, 2598, 4160}, { 495, 1526, 2714, 4346},
  64. { 517, 1594, 2835, 4540}, { 540, 1665, 2961, 4741},
  65. { 564, 1740, 3093, 4953}, { 589, 1818, 3232, 5175},
  66. { 615, 1898, 3375, 5405}, { 643, 1984, 3527, 5647},
  67. { 671, 2072, 3683, 5898}, { 701, 2164, 3848, 6161},
  68. { 733, 2261, 4020, 6438}, { 766, 2362, 4199, 6724},
  69. { 800, 2467, 4386, 7024}, { 836, 2578, 4583, 7339},
  70. { 873, 2692, 4786, 7664}, { 912, 2813, 5001, 8008},
  71. { 952, 2938, 5223, 8364}, { 995, 3070, 5457, 8739},
  72. { 1039, 3207, 5701, 9129}, { 1086, 3350, 5956, 9537},
  73. { 1134, 3499, 6220, 9960}, { 1185, 3655, 6497, 10404},
  74. { 1238, 3818, 6788, 10869}, { 1293, 3989, 7091, 11355},
  75. { 1351, 4166, 7407, 11861}, { 1411, 4352, 7738, 12390},
  76. { 1474, 4547, 8084, 12946}, { 1540, 4750, 8444, 13522},
  77. { 1609, 4962, 8821, 14126}, { 1680, 5183, 9215, 14756},
  78. { 1756, 5415, 9626, 15415}, { 1834, 5657, 10057, 16104},
  79. { 1916, 5909, 10505, 16822}, { 2001, 6173, 10975, 17574},
  80. { 2091, 6448, 11463, 18356}, { 2184, 6736, 11974, 19175},
  81. { 2282, 7037, 12510, 20032}, { 2383, 7351, 13068, 20926},
  82. { 2490, 7679, 13652, 21861}, { 2601, 8021, 14260, 22834},
  83. { 2717, 8380, 14897, 23854}, { 2838, 8753, 15561, 24918},
  84. { 2965, 9144, 16256, 26031}, { 3097, 9553, 16982, 27193},
  85. { 3236, 9979, 17740, 28407}, { 3380, 10424, 18532, 29675},
  86. { 3531, 10890, 19359, 31000}, { 3688, 11375, 20222, 32382},
  87. { 3853, 11883, 21125, 32767}, { 4025, 12414, 22069, 32767},
  88. { 4205, 12967, 23053, 32767}, { 4392, 13546, 24082, 32767},
  89. { 4589, 14151, 25157, 32767}, { 4793, 14783, 26280, 32767},
  90. { 5007, 15442, 27452, 32767}, { 5231, 16132, 28678, 32767},
  91. { 5464, 16851, 29957, 32767}, { 5708, 17603, 31294, 32767},
  92. { 5963, 18389, 32691, 32767}, { 6229, 19210, 32767, 32767},
  93. { 6507, 20067, 32767, 32767}, { 6797, 20963, 32767, 32767},
  94. { 7101, 21899, 32767, 32767}, { 7418, 22876, 32767, 32767},
  95. { 7749, 23897, 32767, 32767}, { 8095, 24964, 32767, 32767},
  96. { 8456, 26078, 32767, 32767}, { 8833, 27242, 32767, 32767},
  97. { 9228, 28457, 32767, 32767}, { 9639, 29727, 32767, 32767}
  98. };
  99. static const int16_t MACEtab4[][2] = {
  100. { 64, 216}, { 67, 226}, { 70, 236}, { 74, 246},
  101. { 77, 257}, { 80, 268}, { 84, 280}, { 88, 294},
  102. { 92, 307}, { 96, 321}, { 100, 334}, { 104, 350},
  103. { 109, 365}, { 114, 382}, { 119, 399}, { 124, 416},
  104. { 130, 434}, { 136, 454}, { 142, 475}, { 148, 495},
  105. { 155, 519}, { 162, 541}, { 169, 564}, { 176, 590},
  106. { 185, 617}, { 193, 644}, { 201, 673}, { 210, 703},
  107. { 220, 735}, { 230, 767}, { 240, 801}, { 251, 838},
  108. { 262, 876}, { 274, 914}, { 286, 955}, { 299, 997},
  109. { 312, 1041}, { 326, 1089}, { 341, 1138}, { 356, 1188},
  110. { 372, 1241}, { 388, 1297}, { 406, 1354}, { 424, 1415},
  111. { 443, 1478}, { 462, 1544}, { 483, 1613}, { 505, 1684},
  112. { 527, 1760}, { 551, 1838}, { 576, 1921}, { 601, 2007},
  113. { 628, 2097}, { 656, 2190}, { 686, 2288}, { 716, 2389},
  114. { 748, 2496}, { 781, 2607}, { 816, 2724}, { 853, 2846},
  115. { 891, 2973}, { 930, 3104}, { 972, 3243}, { 1016, 3389},
  116. { 1061, 3539}, { 1108, 3698}, { 1158, 3862}, { 1209, 4035},
  117. { 1264, 4216}, { 1320, 4403}, { 1379, 4599}, { 1441, 4806},
  118. { 1505, 5019}, { 1572, 5244}, { 1642, 5477}, { 1715, 5722},
  119. { 1792, 5978}, { 1872, 6245}, { 1955, 6522}, { 2043, 6813},
  120. { 2134, 7118}, { 2229, 7436}, { 2329, 7767}, { 2432, 8114},
  121. { 2541, 8477}, { 2655, 8854}, { 2773, 9250}, { 2897, 9663},
  122. { 3026, 10094}, { 3162, 10546}, { 3303, 11016}, { 3450, 11508},
  123. { 3604, 12020}, { 3765, 12556}, { 3933, 13118}, { 4108, 13703},
  124. { 4292, 14315}, { 4483, 14953}, { 4683, 15621}, { 4892, 16318},
  125. { 5111, 17046}, { 5339, 17807}, { 5577, 18602}, { 5826, 19433},
  126. { 6086, 20300}, { 6358, 21205}, { 6642, 22152}, { 6938, 23141},
  127. { 7248, 24173}, { 7571, 25252}, { 7909, 26380}, { 8262, 27557},
  128. { 8631, 28786}, { 9016, 30072}, { 9419, 31413}, { 9839, 32767},
  129. { 10278, 32767}, { 10737, 32767}, { 11216, 32767}, { 11717, 32767},
  130. { 12240, 32767}, { 12786, 32767}, { 13356, 32767}, { 13953, 32767},
  131. { 14576, 32767}, { 15226, 32767}, { 15906, 32767}, { 16615, 32767}
  132. };
  133. static const struct {
  134. const int16_t *tab1; const int16_t *tab2; int stride;
  135. } tabs[] = {
  136. {MACEtab1, &MACEtab2[0][0], 4},
  137. {MACEtab3, &MACEtab4[0][0], 2},
  138. {MACEtab1, &MACEtab2[0][0], 4}
  139. };
  140. #define QT_8S_2_16S(x) (((x) & 0xFF00) | (((x) >> 8) & 0xFF))
  141. typedef struct ChannelData {
  142. int16_t index, factor, prev2, previous, level;
  143. } ChannelData;
  144. typedef struct MACEContext {
  145. ChannelData chd[2];
  146. } MACEContext;
  147. /**
  148. * MACE version of av_clip_int16(). We have to do this to keep binary
  149. * identical output to the binary decoder.
  150. */
  151. static inline int16_t mace_broken_clip_int16(int n)
  152. {
  153. if (n > 32767)
  154. return 32767;
  155. else if (n < -32768)
  156. return -32767;
  157. else
  158. return n;
  159. }
  160. static int16_t read_table(ChannelData *chd, uint8_t val, int tab_idx)
  161. {
  162. int16_t current;
  163. if (val < tabs[tab_idx].stride)
  164. current = tabs[tab_idx].tab2[((chd->index & 0x7f0) >> 4) * tabs[tab_idx].stride + val];
  165. else
  166. current = - 1 - tabs[tab_idx].tab2[((chd->index & 0x7f0) >> 4)*tabs[tab_idx].stride + 2*tabs[tab_idx].stride-val-1];
  167. if (( chd->index += tabs[tab_idx].tab1[val]-(chd->index >> 5) ) < 0)
  168. chd->index = 0;
  169. return current;
  170. }
  171. static void chomp3(ChannelData *chd, int16_t *output, uint8_t val,
  172. int tab_idx,
  173. uint32_t numChannels)
  174. {
  175. int16_t current = read_table(chd, val, tab_idx);
  176. current = mace_broken_clip_int16(current + chd->level);
  177. chd->level = current - (current >> 3);
  178. *output = QT_8S_2_16S(current);
  179. }
  180. static void chomp6(ChannelData *chd, int16_t *output, uint8_t val,
  181. int tab_idx,
  182. uint32_t numChannels)
  183. {
  184. int16_t current = read_table(chd, val, tab_idx);
  185. if ((chd->previous ^ current) >= 0) {
  186. chd->factor = FFMIN(chd->factor + 506, 32767);
  187. } else {
  188. if (chd->factor - 314 < -32768)
  189. chd->factor = -32767;
  190. else
  191. chd->factor -= 314;
  192. }
  193. current = mace_broken_clip_int16(current + chd->level);
  194. chd->level = (current*chd->factor) >> 15;
  195. current >>= 1;
  196. output[0] = QT_8S_2_16S(chd->previous + chd->prev2 -
  197. ((chd->prev2-current) >> 2));
  198. output[numChannels] = QT_8S_2_16S(chd->previous + current +
  199. ((chd->prev2-current) >> 2));
  200. chd->prev2 = chd->previous;
  201. chd->previous = current;
  202. }
  203. static av_cold int mace_decode_init(AVCodecContext * avctx)
  204. {
  205. if (avctx->channels > 2)
  206. return -1;
  207. avctx->sample_fmt = SAMPLE_FMT_S16;
  208. return 0;
  209. }
  210. static int mace_decode_frame(AVCodecContext *avctx,
  211. void *data, int *data_size,
  212. const uint8_t *buf, int buf_size)
  213. {
  214. int16_t *samples = data;
  215. MACEContext *ctx = avctx->priv_data;
  216. int i, j, k, l;
  217. int is_mace3 = (avctx->codec_id == CODEC_ID_MACE3);
  218. if (*data_size < (3 * buf_size << (2-is_mace3))) {
  219. av_log(avctx, AV_LOG_ERROR, "Output buffer too small!\n");
  220. return -1;
  221. }
  222. for(i = 0; i < avctx->channels; i++) {
  223. int16_t *output = samples + i;
  224. for (j=0; j < buf_size / (avctx->channels << is_mace3); j++)
  225. for (k=0; k < (1 << is_mace3); k++) {
  226. uint8_t pkt = buf[(i << is_mace3) +
  227. (j*avctx->channels << is_mace3) + k];
  228. uint8_t val[2][3] = {{pkt >> 5, (pkt >> 3) & 3, pkt & 7 },
  229. {pkt & 7 , (pkt >> 3) & 3, pkt >> 5}};
  230. for (l=0; l < 3; l++) {
  231. if (is_mace3)
  232. chomp3(&ctx->chd[i], output, val[1][l], l,
  233. avctx->channels);
  234. else
  235. chomp6(&ctx->chd[i], output, val[0][l], l,
  236. avctx->channels);
  237. output += avctx->channels << (1-is_mace3);
  238. }
  239. }
  240. }
  241. *data_size = 3 * buf_size << (2-is_mace3);
  242. return buf_size;
  243. }
  244. AVCodec mace3_decoder = {
  245. "mace3",
  246. CODEC_TYPE_AUDIO,
  247. CODEC_ID_MACE3,
  248. sizeof(MACEContext),
  249. mace_decode_init,
  250. NULL,
  251. NULL,
  252. mace_decode_frame,
  253. .long_name = NULL_IF_CONFIG_SMALL("MACE (Macintosh Audio Compression/Expansion) 3:1"),
  254. };
  255. AVCodec mace6_decoder = {
  256. "mace6",
  257. CODEC_TYPE_AUDIO,
  258. CODEC_ID_MACE6,
  259. sizeof(MACEContext),
  260. mace_decode_init,
  261. NULL,
  262. NULL,
  263. mace_decode_frame,
  264. .long_name = NULL_IF_CONFIG_SMALL("MACE (Macintosh Audio Compression/Expansion) 6:1"),
  265. };