minimp3.c 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644
  1. #include "mp3_decode/minimp3.h"
  2. #include "luat_mem.h"
  3. extern void DBG_Printf(const char* format, ...);
  4. #define DBG(x,y...) DBG_Printf("%s %d:"x"\r\n", __FUNCTION__,__LINE__,##y)
  5. #define _MINIMP3_IMPLEMENTATION_GUARD
  6. static void bs_init(bs_t *bs, const uint8_t *data, int bytes)
  7. {
  8. bs->buf = data;
  9. bs->pos = 0;
  10. bs->limit = bytes*8;
  11. }
  12. static uint32_t get_bits(bs_t *bs, int n)
  13. {
  14. uint32_t next, cache = 0, s = bs->pos & 7;
  15. int shl = n + s;
  16. const uint8_t *p = bs->buf + (bs->pos >> 3);
  17. if ((bs->pos += n) > bs->limit)
  18. return 0;
  19. next = *p++ & (255 >> s);
  20. while ((shl -= 8) > 0)
  21. {
  22. cache |= next << shl;
  23. next = *p++;
  24. }
  25. return cache | (next >> -shl);
  26. }
  27. static int hdr_valid(const uint8_t *h)
  28. {
  29. return h[0] == 0xff &&
  30. ((h[1] & 0xF0) == 0xf0 || (h[1] & 0xFE) == 0xe2) &&
  31. (HDR_GET_LAYER(h) != 0) &&
  32. (HDR_GET_BITRATE(h) != 15) &&
  33. (HDR_GET_SAMPLE_RATE(h) != 3);
  34. }
  35. static int hdr_compare(const uint8_t *h1, const uint8_t *h2)
  36. {
  37. return hdr_valid(h2) &&
  38. ((h1[1] ^ h2[1]) & 0xFE) == 0 &&
  39. ((h1[2] ^ h2[2]) & 0x0C) == 0 &&
  40. !(HDR_IS_FREE_FORMAT(h1) ^ HDR_IS_FREE_FORMAT(h2));
  41. }
  42. static unsigned hdr_bitrate_kbps(const uint8_t *h)
  43. {
  44. static const uint8_t halfrate[2][3][15] = {
  45. { { 0,4,8,12,16,20,24,28,32,40,48,56,64,72,80 }, { 0,4,8,12,16,20,24,28,32,40,48,56,64,72,80 }, { 0,16,24,28,32,40,48,56,64,72,80,88,96,112,128 } },
  46. { { 0,16,20,24,28,32,40,48,56,64,80,96,112,128,160 }, { 0,16,24,28,32,40,48,56,64,80,96,112,128,160,192 }, { 0,16,32,48,64,80,96,112,128,144,160,176,192,208,224 } },
  47. };
  48. return 2*halfrate[!!HDR_TEST_MPEG1(h)][HDR_GET_LAYER(h) - 1][HDR_GET_BITRATE(h)];
  49. }
  50. static unsigned hdr_sample_rate_hz(const uint8_t *h)
  51. {
  52. static const unsigned g_hz[3] = { 44100, 48000, 32000 };
  53. return g_hz[HDR_GET_SAMPLE_RATE(h)] >> (int)!HDR_TEST_MPEG1(h) >> (int)!HDR_TEST_NOT_MPEG25(h);
  54. }
  55. static unsigned hdr_frame_samples(const uint8_t *h)
  56. {
  57. return HDR_IS_LAYER_1(h) ? 384 : (1152 >> (int)HDR_IS_FRAME_576(h));
  58. }
  59. static int hdr_frame_bytes(const uint8_t *h, int free_format_size)
  60. {
  61. int frame_bytes = hdr_frame_samples(h)*hdr_bitrate_kbps(h)*125/hdr_sample_rate_hz(h);
  62. if (HDR_IS_LAYER_1(h))
  63. {
  64. frame_bytes &= ~3; /* slot align */
  65. }
  66. return frame_bytes ? frame_bytes : free_format_size;
  67. }
  68. static int hdr_padding(const uint8_t *h)
  69. {
  70. return HDR_TEST_PADDING(h) ? (HDR_IS_LAYER_1(h) ? 4 : 1) : 0;
  71. }
  72. #ifndef MINIMP3_ONLY_MP3
  73. static const L12_subband_alloc_t *L12_subband_alloc_table(const uint8_t *hdr, L12_scale_info *sci)
  74. {
  75. const L12_subband_alloc_t *alloc;
  76. int mode = HDR_GET_STEREO_MODE(hdr);
  77. int nbands, stereo_bands = (mode == MODE_MONO) ? 0 : (mode == MODE_JOINT_STEREO) ? (HDR_GET_STEREO_MODE_EXT(hdr) << 2) + 4 : 32;
  78. if (HDR_IS_LAYER_1(hdr))
  79. {
  80. static const L12_subband_alloc_t g_alloc_L1[] = { { 76, 4, 32 } };
  81. alloc = g_alloc_L1;
  82. nbands = 32;
  83. } else if (!HDR_TEST_MPEG1(hdr))
  84. {
  85. static const L12_subband_alloc_t g_alloc_L2M2[] = { { 60, 4, 4 }, { 44, 3, 7 }, { 44, 2, 19 } };
  86. alloc = g_alloc_L2M2;
  87. nbands = 30;
  88. } else
  89. {
  90. static const L12_subband_alloc_t g_alloc_L2M1[] = { { 0, 4, 3 }, { 16, 4, 8 }, { 32, 3, 12 }, { 40, 2, 7 } };
  91. int sample_rate_idx = HDR_GET_SAMPLE_RATE(hdr);
  92. unsigned kbps = hdr_bitrate_kbps(hdr) >> (int)(mode != MODE_MONO);
  93. if (!kbps) /* free-format */
  94. {
  95. kbps = 192;
  96. }
  97. alloc = g_alloc_L2M1;
  98. nbands = 27;
  99. if (kbps < 56)
  100. {
  101. static const L12_subband_alloc_t g_alloc_L2M1_lowrate[] = { { 44, 4, 2 }, { 44, 3, 10 } };
  102. alloc = g_alloc_L2M1_lowrate;
  103. nbands = sample_rate_idx == 2 ? 12 : 8;
  104. } else if (kbps >= 96 && sample_rate_idx != 1)
  105. {
  106. nbands = 30;
  107. }
  108. }
  109. sci->total_bands = (uint8_t)nbands;
  110. sci->stereo_bands = (uint8_t)MINIMP3_MIN(stereo_bands, nbands);
  111. return alloc;
  112. }
  113. static void L12_read_scalefactors(bs_t *bs, uint8_t *pba, uint8_t *scfcod, int bands, float *scf)
  114. {
  115. static const float g_deq_L12[18*3] = {
  116. #define DQ(x) 9.53674316e-07f/x, 7.56931807e-07f/x, 6.00777173e-07f/x
  117. DQ(3),DQ(7),DQ(15),DQ(31),DQ(63),DQ(127),DQ(255),DQ(511),DQ(1023),DQ(2047),DQ(4095),DQ(8191),DQ(16383),DQ(32767),DQ(65535),DQ(3),DQ(5),DQ(9)
  118. };
  119. int i, m;
  120. for (i = 0; i < bands; i++)
  121. {
  122. float s = 0;
  123. int ba = *pba++;
  124. int mask = ba ? 4 + ((19 >> scfcod[i]) & 3) : 0;
  125. for (m = 4; m; m >>= 1)
  126. {
  127. if (mask & m)
  128. {
  129. int b = get_bits(bs, 6);
  130. s = g_deq_L12[ba*3 - 6 + b % 3]*(1 << 21 >> b/3);
  131. }
  132. *scf++ = s;
  133. }
  134. }
  135. }
  136. static void L12_read_scale_info(const uint8_t *hdr, bs_t *bs, L12_scale_info *sci)
  137. {
  138. static const uint8_t g_bitalloc_code_tab[] = {
  139. 0,17, 3, 4, 5,6,7, 8,9,10,11,12,13,14,15,16,
  140. 0,17,18, 3,19,4,5, 6,7, 8, 9,10,11,12,13,16,
  141. 0,17,18, 3,19,4,5,16,
  142. 0,17,18,16,
  143. 0,17,18,19, 4,5,6, 7,8, 9,10,11,12,13,14,15,
  144. 0,17,18, 3,19,4,5, 6,7, 8, 9,10,11,12,13,14,
  145. 0, 2, 3, 4, 5,6,7, 8,9,10,11,12,13,14,15,16
  146. };
  147. const L12_subband_alloc_t *subband_alloc = L12_subband_alloc_table(hdr, sci);
  148. int i, k = 0, ba_bits = 0;
  149. const uint8_t *ba_code_tab = g_bitalloc_code_tab;
  150. for (i = 0; i < sci->total_bands; i++)
  151. {
  152. uint8_t ba;
  153. if (i == k)
  154. {
  155. k += subband_alloc->band_count;
  156. ba_bits = subband_alloc->code_tab_width;
  157. ba_code_tab = g_bitalloc_code_tab + subband_alloc->tab_offset;
  158. subband_alloc++;
  159. }
  160. ba = ba_code_tab[get_bits(bs, ba_bits)];
  161. sci->bitalloc[2*i] = ba;
  162. if (i < sci->stereo_bands)
  163. {
  164. ba = ba_code_tab[get_bits(bs, ba_bits)];
  165. }
  166. sci->bitalloc[2*i + 1] = sci->stereo_bands ? ba : 0;
  167. }
  168. for (i = 0; i < 2*sci->total_bands; i++)
  169. {
  170. sci->scfcod[i] = sci->bitalloc[i] ? HDR_IS_LAYER_1(hdr) ? 2 : get_bits(bs, 2) : 6;
  171. }
  172. L12_read_scalefactors(bs, sci->bitalloc, sci->scfcod, sci->total_bands*2, sci->scf);
  173. for (i = sci->stereo_bands; i < sci->total_bands; i++)
  174. {
  175. sci->bitalloc[2*i + 1] = 0;
  176. }
  177. }
  178. static int L12_dequantize_granule(float *grbuf, bs_t *bs, L12_scale_info *sci, int group_size)
  179. {
  180. int i, j, k, choff = 576;
  181. for (j = 0; j < 4; j++)
  182. {
  183. float *dst = grbuf + group_size*j;
  184. for (i = 0; i < 2*sci->total_bands; i++)
  185. {
  186. int ba = sci->bitalloc[i];
  187. if (ba != 0)
  188. {
  189. if (ba < 17)
  190. {
  191. int half = (1 << (ba - 1)) - 1;
  192. for (k = 0; k < group_size; k++)
  193. {
  194. dst[k] = (float)((int)get_bits(bs, ba) - half);
  195. }
  196. } else
  197. {
  198. unsigned mod = (2 << (ba - 17)) + 1; /* 3, 5, 9 */
  199. unsigned code = get_bits(bs, mod + 2 - (mod >> 3)); /* 5, 7, 10 */
  200. for (k = 0; k < group_size; k++, code /= mod)
  201. {
  202. dst[k] = (float)((int)(code % mod - mod/2));
  203. }
  204. }
  205. }
  206. dst += choff;
  207. choff = 18 - choff;
  208. }
  209. }
  210. return group_size*4;
  211. }
  212. static void L12_apply_scf_384(L12_scale_info *sci, const float *scf, float *dst)
  213. {
  214. int i, k;
  215. memcpy(dst + 576 + sci->stereo_bands*18, dst + sci->stereo_bands*18, (sci->total_bands - sci->stereo_bands)*18*sizeof(float));
  216. for (i = 0; i < sci->total_bands; i++, dst += 18, scf += 6)
  217. {
  218. for (k = 0; k < 12; k++)
  219. {
  220. dst[k + 0] *= scf[0];
  221. dst[k + 576] *= scf[3];
  222. }
  223. }
  224. }
  225. #endif /* MINIMP3_ONLY_MP3 */
  226. static int L3_read_side_info(bs_t *bs, L3_gr_info_t *gr, const uint8_t *hdr)
  227. {
  228. static const uint8_t g_scf_long[8][23] = {
  229. { 6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54,0 },
  230. { 12,12,12,12,12,12,16,20,24,28,32,40,48,56,64,76,90,2,2,2,2,2,0 },
  231. { 6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54,0 },
  232. { 6,6,6,6,6,6,8,10,12,14,16,18,22,26,32,38,46,54,62,70,76,36,0 },
  233. { 6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54,0 },
  234. { 4,4,4,4,4,4,6,6,8,8,10,12,16,20,24,28,34,42,50,54,76,158,0 },
  235. { 4,4,4,4,4,4,6,6,6,8,10,12,16,18,22,28,34,40,46,54,54,192,0 },
  236. { 4,4,4,4,4,4,6,6,8,10,12,16,20,24,30,38,46,56,68,84,102,26,0 }
  237. };
  238. static const uint8_t g_scf_short[8][40] = {
  239. { 4,4,4,4,4,4,4,4,4,6,6,6,8,8,8,10,10,10,12,12,12,14,14,14,18,18,18,24,24,24,30,30,30,40,40,40,18,18,18,0 },
  240. { 8,8,8,8,8,8,8,8,8,12,12,12,16,16,16,20,20,20,24,24,24,28,28,28,36,36,36,2,2,2,2,2,2,2,2,2,26,26,26,0 },
  241. { 4,4,4,4,4,4,4,4,4,6,6,6,6,6,6,8,8,8,10,10,10,14,14,14,18,18,18,26,26,26,32,32,32,42,42,42,18,18,18,0 },
  242. { 4,4,4,4,4,4,4,4,4,6,6,6,8,8,8,10,10,10,12,12,12,14,14,14,18,18,18,24,24,24,32,32,32,44,44,44,12,12,12,0 },
  243. { 4,4,4,4,4,4,4,4,4,6,6,6,8,8,8,10,10,10,12,12,12,14,14,14,18,18,18,24,24,24,30,30,30,40,40,40,18,18,18,0 },
  244. { 4,4,4,4,4,4,4,4,4,4,4,4,6,6,6,8,8,8,10,10,10,12,12,12,14,14,14,18,18,18,22,22,22,30,30,30,56,56,56,0 },
  245. { 4,4,4,4,4,4,4,4,4,4,4,4,6,6,6,6,6,6,10,10,10,12,12,12,14,14,14,16,16,16,20,20,20,26,26,26,66,66,66,0 },
  246. { 4,4,4,4,4,4,4,4,4,4,4,4,6,6,6,8,8,8,12,12,12,16,16,16,20,20,20,26,26,26,34,34,34,42,42,42,12,12,12,0 }
  247. };
  248. static const uint8_t g_scf_mixed[8][40] = {
  249. { 6,6,6,6,6,6,6,6,6,8,8,8,10,10,10,12,12,12,14,14,14,18,18,18,24,24,24,30,30,30,40,40,40,18,18,18,0 },
  250. { 12,12,12,4,4,4,8,8,8,12,12,12,16,16,16,20,20,20,24,24,24,28,28,28,36,36,36,2,2,2,2,2,2,2,2,2,26,26,26,0 },
  251. { 6,6,6,6,6,6,6,6,6,6,6,6,8,8,8,10,10,10,14,14,14,18,18,18,26,26,26,32,32,32,42,42,42,18,18,18,0 },
  252. { 6,6,6,6,6,6,6,6,6,8,8,8,10,10,10,12,12,12,14,14,14,18,18,18,24,24,24,32,32,32,44,44,44,12,12,12,0 },
  253. { 6,6,6,6,6,6,6,6,6,8,8,8,10,10,10,12,12,12,14,14,14,18,18,18,24,24,24,30,30,30,40,40,40,18,18,18,0 },
  254. { 4,4,4,4,4,4,6,6,4,4,4,6,6,6,8,8,8,10,10,10,12,12,12,14,14,14,18,18,18,22,22,22,30,30,30,56,56,56,0 },
  255. { 4,4,4,4,4,4,6,6,4,4,4,6,6,6,6,6,6,10,10,10,12,12,12,14,14,14,16,16,16,20,20,20,26,26,26,66,66,66,0 },
  256. { 4,4,4,4,4,4,6,6,4,4,4,6,6,6,8,8,8,12,12,12,16,16,16,20,20,20,26,26,26,34,34,34,42,42,42,12,12,12,0 }
  257. };
  258. unsigned tables, scfsi = 0;
  259. int main_data_begin, part_23_sum = 0;
  260. int sr_idx = HDR_GET_MY_SAMPLE_RATE(hdr); sr_idx -= (sr_idx != 0);
  261. int gr_count = HDR_IS_MONO(hdr) ? 1 : 2;
  262. if (HDR_TEST_MPEG1(hdr))
  263. {
  264. gr_count *= 2;
  265. main_data_begin = get_bits(bs, 9);
  266. scfsi = get_bits(bs, 7 + gr_count);
  267. } else
  268. {
  269. main_data_begin = get_bits(bs, 8 + gr_count) >> gr_count;
  270. }
  271. do
  272. {
  273. if (HDR_IS_MONO(hdr))
  274. {
  275. scfsi <<= 4;
  276. }
  277. gr->part_23_length = (uint16_t)get_bits(bs, 12);
  278. part_23_sum += gr->part_23_length;
  279. gr->big_values = (uint16_t)get_bits(bs, 9);
  280. if (gr->big_values > 288)
  281. {
  282. return -1;
  283. }
  284. gr->global_gain = (uint8_t)get_bits(bs, 8);
  285. gr->scalefac_compress = (uint16_t)get_bits(bs, HDR_TEST_MPEG1(hdr) ? 4 : 9);
  286. gr->sfbtab = g_scf_long[sr_idx];
  287. gr->n_long_sfb = 22;
  288. gr->n_short_sfb = 0;
  289. if (get_bits(bs, 1))
  290. {
  291. gr->block_type = (uint8_t)get_bits(bs, 2);
  292. if (!gr->block_type)
  293. {
  294. return -1;
  295. }
  296. gr->mixed_block_flag = (uint8_t)get_bits(bs, 1);
  297. gr->region_count[0] = 7;
  298. gr->region_count[1] = 255;
  299. if (gr->block_type == SHORT_BLOCK_TYPE)
  300. {
  301. scfsi &= 0x0F0F;
  302. if (!gr->mixed_block_flag)
  303. {
  304. gr->region_count[0] = 8;
  305. gr->sfbtab = g_scf_short[sr_idx];
  306. gr->n_long_sfb = 0;
  307. gr->n_short_sfb = 39;
  308. } else
  309. {
  310. gr->sfbtab = g_scf_mixed[sr_idx];
  311. gr->n_long_sfb = HDR_TEST_MPEG1(hdr) ? 8 : 6;
  312. gr->n_short_sfb = 30;
  313. }
  314. }
  315. tables = get_bits(bs, 10);
  316. tables <<= 5;
  317. gr->subblock_gain[0] = (uint8_t)get_bits(bs, 3);
  318. gr->subblock_gain[1] = (uint8_t)get_bits(bs, 3);
  319. gr->subblock_gain[2] = (uint8_t)get_bits(bs, 3);
  320. } else
  321. {
  322. gr->block_type = 0;
  323. gr->mixed_block_flag = 0;
  324. tables = get_bits(bs, 15);
  325. gr->region_count[0] = (uint8_t)get_bits(bs, 4);
  326. gr->region_count[1] = (uint8_t)get_bits(bs, 3);
  327. gr->region_count[2] = 255;
  328. }
  329. gr->table_select[0] = (uint8_t)(tables >> 10);
  330. gr->table_select[1] = (uint8_t)((tables >> 5) & 31);
  331. gr->table_select[2] = (uint8_t)((tables) & 31);
  332. gr->preflag = HDR_TEST_MPEG1(hdr) ? get_bits(bs, 1) : (gr->scalefac_compress >= 500);
  333. gr->scalefac_scale = (uint8_t)get_bits(bs, 1);
  334. gr->count1_table = (uint8_t)get_bits(bs, 1);
  335. gr->scfsi = (uint8_t)((scfsi >> 12) & 15);
  336. scfsi <<= 4;
  337. gr++;
  338. } while(--gr_count);
  339. if (part_23_sum + bs->pos > bs->limit + main_data_begin*8)
  340. {
  341. return -1;
  342. }
  343. return main_data_begin;
  344. }
  345. static void L3_read_scalefactors(uint8_t *scf, uint8_t *ist_pos, const uint8_t *scf_size, const uint8_t *scf_count, bs_t *bitbuf, int scfsi)
  346. {
  347. int i, k;
  348. for (i = 0; i < 4 && scf_count[i]; i++, scfsi *= 2)
  349. {
  350. int cnt = scf_count[i];
  351. if (scfsi & 8)
  352. {
  353. memcpy(scf, ist_pos, cnt);
  354. } else
  355. {
  356. int bits = scf_size[i];
  357. if (!bits)
  358. {
  359. memset(scf, 0, cnt);
  360. memset(ist_pos, 0, cnt);
  361. } else
  362. {
  363. int max_scf = (scfsi < 0) ? (1 << bits) - 1 : -1;
  364. for (k = 0; k < cnt; k++)
  365. {
  366. int s = get_bits(bitbuf, bits);
  367. ist_pos[k] = (s == max_scf ? -1 : s);
  368. scf[k] = s;
  369. }
  370. }
  371. }
  372. ist_pos += cnt;
  373. scf += cnt;
  374. }
  375. scf[0] = scf[1] = scf[2] = 0;
  376. }
  377. static float L3_ldexp_q2(float y, int exp_q2)
  378. {
  379. static const float g_expfrac[4] = { 9.31322575e-10f,7.83145814e-10f,6.58544508e-10f,5.53767716e-10f };
  380. int e;
  381. do
  382. {
  383. e = MINIMP3_MIN(30*4, exp_q2);
  384. y *= g_expfrac[e & 3]*(1 << 30 >> (e >> 2));
  385. } while ((exp_q2 -= e) > 0);
  386. return y;
  387. }
  388. static void L3_decode_scalefactors(const uint8_t *hdr, uint8_t *ist_pos, bs_t *bs, const L3_gr_info_t *gr, float *scf, int ch)
  389. {
  390. static const uint8_t g_scf_partitions[3][28] = {
  391. { 6,5,5, 5,6,5,5,5,6,5, 7,3,11,10,0,0, 7, 7, 7,0, 6, 6,6,3, 8, 8,5,0 },
  392. { 8,9,6,12,6,9,9,9,6,9,12,6,15,18,0,0, 6,15,12,0, 6,12,9,6, 6,18,9,0 },
  393. { 9,9,6,12,9,9,9,9,9,9,12,6,18,18,0,0,12,12,12,0,12, 9,9,6,15,12,9,0 }
  394. };
  395. const uint8_t *scf_partition = g_scf_partitions[!!gr->n_short_sfb + !gr->n_long_sfb];
  396. uint8_t scf_size[4], iscf[40];
  397. int i, scf_shift = gr->scalefac_scale + 1, gain_exp, scfsi = gr->scfsi;
  398. float gain;
  399. if (HDR_TEST_MPEG1(hdr))
  400. {
  401. static const uint8_t g_scfc_decode[16] = { 0,1,2,3, 12,5,6,7, 9,10,11,13, 14,15,18,19 };
  402. int part = g_scfc_decode[gr->scalefac_compress];
  403. scf_size[1] = scf_size[0] = (uint8_t)(part >> 2);
  404. scf_size[3] = scf_size[2] = (uint8_t)(part & 3);
  405. } else
  406. {
  407. static const uint8_t g_mod[6*4] = { 5,5,4,4,5,5,4,1,4,3,1,1,5,6,6,1,4,4,4,1,4,3,1,1 };
  408. int k, modprod, sfc, ist = HDR_TEST_I_STEREO(hdr) && ch;
  409. sfc = gr->scalefac_compress >> ist;
  410. for (k = ist*3*4; sfc >= 0; sfc -= modprod, k += 4)
  411. {
  412. for (modprod = 1, i = 3; i >= 0; i--)
  413. {
  414. scf_size[i] = (uint8_t)(sfc / modprod % g_mod[k + i]);
  415. modprod *= g_mod[k + i];
  416. }
  417. }
  418. scf_partition += k;
  419. scfsi = -16;
  420. }
  421. L3_read_scalefactors(iscf, ist_pos, scf_size, scf_partition, bs, scfsi);
  422. if (gr->n_short_sfb)
  423. {
  424. int sh = 3 - scf_shift;
  425. for (i = 0; i < gr->n_short_sfb; i += 3)
  426. {
  427. iscf[gr->n_long_sfb + i + 0] += gr->subblock_gain[0] << sh;
  428. iscf[gr->n_long_sfb + i + 1] += gr->subblock_gain[1] << sh;
  429. iscf[gr->n_long_sfb + i + 2] += gr->subblock_gain[2] << sh;
  430. }
  431. } else if (gr->preflag)
  432. {
  433. static const uint8_t g_preamp[10] = { 1,1,1,1,2,2,3,3,3,2 };
  434. for (i = 0; i < 10; i++)
  435. {
  436. iscf[11 + i] += g_preamp[i];
  437. }
  438. }
  439. gain_exp = gr->global_gain + BITS_DEQUANTIZER_OUT*4 - 210 - (HDR_IS_MS_STEREO(hdr) ? 2 : 0);
  440. gain = L3_ldexp_q2(1 << (MAX_SCFI/4), MAX_SCFI - gain_exp);
  441. for (i = 0; i < (int)(gr->n_long_sfb + gr->n_short_sfb); i++)
  442. {
  443. scf[i] = L3_ldexp_q2(gain, iscf[i] << scf_shift);
  444. }
  445. }
  446. static const float g_pow43[129 + 16] = {
  447. 0,-1,-2.519842f,-4.326749f,-6.349604f,-8.549880f,-10.902724f,-13.390518f,-16.000000f,-18.720754f,-21.544347f,-24.463781f,-27.473142f,-30.567351f,-33.741992f,-36.993181f,
  448. 0,1,2.519842f,4.326749f,6.349604f,8.549880f,10.902724f,13.390518f,16.000000f,18.720754f,21.544347f,24.463781f,27.473142f,30.567351f,33.741992f,36.993181f,40.317474f,43.711787f,47.173345f,50.699631f,54.288352f,57.937408f,61.644865f,65.408941f,69.227979f,73.100443f,77.024898f,81.000000f,85.024491f,89.097188f,93.216975f,97.382800f,101.593667f,105.848633f,110.146801f,114.487321f,118.869381f,123.292209f,127.755065f,132.257246f,136.798076f,141.376907f,145.993119f,150.646117f,155.335327f,160.060199f,164.820202f,169.614826f,174.443577f,179.305980f,184.201575f,189.129918f,194.090580f,199.083145f,204.107210f,209.162385f,214.248292f,219.364564f,224.510845f,229.686789f,234.892058f,240.126328f,245.389280f,250.680604f,256.000000f,261.347174f,266.721841f,272.123723f,277.552547f,283.008049f,288.489971f,293.998060f,299.532071f,305.091761f,310.676898f,316.287249f,321.922592f,327.582707f,333.267377f,338.976394f,344.709550f,350.466646f,356.247482f,362.051866f,367.879608f,373.730522f,379.604427f,385.501143f,391.420496f,397.362314f,403.326427f,409.312672f,415.320884f,421.350905f,427.402579f,433.475750f,439.570269f,445.685987f,451.822757f,457.980436f,464.158883f,470.357960f,476.577530f,482.817459f,489.077615f,495.357868f,501.658090f,507.978156f,514.317941f,520.677324f,527.056184f,533.454404f,539.871867f,546.308458f,552.764065f,559.238575f,565.731879f,572.243870f,578.774440f,585.323483f,591.890898f,598.476581f,605.080431f,611.702349f,618.342238f,625.000000f,631.675540f,638.368763f,645.079578f
  449. };
  450. static float L3_pow_43(int x)
  451. {
  452. float frac;
  453. int sign, mult = 256;
  454. if (x < 129)
  455. {
  456. return g_pow43[16 + x];
  457. }
  458. if (x < 1024)
  459. {
  460. mult = 16;
  461. x <<= 3;
  462. }
  463. sign = 2*x & 64;
  464. frac = (float)((x & 63) - sign) / ((x & ~63) + sign);
  465. return g_pow43[16 + ((x + sign) >> 6)]*(1.f + frac*((4.f/3) + frac*(2.f/9)))*mult;
  466. }
  467. static void L3_huffman(float *dst, bs_t *bs, const L3_gr_info_t *gr_info, const float *scf, int layer3gr_limit)
  468. {
  469. static const int16_t tabs[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  470. 785,785,785,785,784,784,784,784,513,513,513,513,513,513,513,513,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,
  471. -255,1313,1298,1282,785,785,785,785,784,784,784,784,769,769,769,769,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,290,288,
  472. -255,1313,1298,1282,769,769,769,769,529,529,529,529,529,529,529,529,528,528,528,528,528,528,528,528,512,512,512,512,512,512,512,512,290,288,
  473. -253,-318,-351,-367,785,785,785,785,784,784,784,784,769,769,769,769,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,819,818,547,547,275,275,275,275,561,560,515,546,289,274,288,258,
  474. -254,-287,1329,1299,1314,1312,1057,1057,1042,1042,1026,1026,784,784,784,784,529,529,529,529,529,529,529,529,769,769,769,769,768,768,768,768,563,560,306,306,291,259,
  475. -252,-413,-477,-542,1298,-575,1041,1041,784,784,784,784,769,769,769,769,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,-383,-399,1107,1092,1106,1061,849,849,789,789,1104,1091,773,773,1076,1075,341,340,325,309,834,804,577,577,532,532,516,516,832,818,803,816,561,561,531,531,515,546,289,289,288,258,
  476. -252,-429,-493,-559,1057,1057,1042,1042,529,529,529,529,529,529,529,529,784,784,784,784,769,769,769,769,512,512,512,512,512,512,512,512,-382,1077,-415,1106,1061,1104,849,849,789,789,1091,1076,1029,1075,834,834,597,581,340,340,339,324,804,833,532,532,832,772,818,803,817,787,816,771,290,290,290,290,288,258,
  477. -253,-349,-414,-447,-463,1329,1299,-479,1314,1312,1057,1057,1042,1042,1026,1026,785,785,785,785,784,784,784,784,769,769,769,769,768,768,768,768,-319,851,821,-335,836,850,805,849,341,340,325,336,533,533,579,579,564,564,773,832,578,548,563,516,321,276,306,291,304,259,
  478. -251,-572,-733,-830,-863,-879,1041,1041,784,784,784,784,769,769,769,769,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,-511,-527,-543,1396,1351,1381,1366,1395,1335,1380,-559,1334,1138,1138,1063,1063,1350,1392,1031,1031,1062,1062,1364,1363,1120,1120,1333,1348,881,881,881,881,375,374,359,373,343,358,341,325,791,791,1123,1122,-703,1105,1045,-719,865,865,790,790,774,774,1104,1029,338,293,323,308,-799,-815,833,788,772,818,803,816,322,292,307,320,561,531,515,546,289,274,288,258,
  479. -251,-525,-605,-685,-765,-831,-846,1298,1057,1057,1312,1282,785,785,785,785,784,784,784,784,769,769,769,769,512,512,512,512,512,512,512,512,1399,1398,1383,1367,1382,1396,1351,-511,1381,1366,1139,1139,1079,1079,1124,1124,1364,1349,1363,1333,882,882,882,882,807,807,807,807,1094,1094,1136,1136,373,341,535,535,881,775,867,822,774,-591,324,338,-671,849,550,550,866,864,609,609,293,336,534,534,789,835,773,-751,834,804,308,307,833,788,832,772,562,562,547,547,305,275,560,515,290,290,
  480. -252,-397,-477,-557,-622,-653,-719,-735,-750,1329,1299,1314,1057,1057,1042,1042,1312,1282,1024,1024,785,785,785,785,784,784,784,784,769,769,769,769,-383,1127,1141,1111,1126,1140,1095,1110,869,869,883,883,1079,1109,882,882,375,374,807,868,838,881,791,-463,867,822,368,263,852,837,836,-543,610,610,550,550,352,336,534,534,865,774,851,821,850,805,593,533,579,564,773,832,578,578,548,548,577,577,307,276,306,291,516,560,259,259,
  481. -250,-2107,-2507,-2764,-2909,-2974,-3007,-3023,1041,1041,1040,1040,769,769,769,769,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,-767,-1052,-1213,-1277,-1358,-1405,-1469,-1535,-1550,-1582,-1614,-1647,-1662,-1694,-1726,-1759,-1774,-1807,-1822,-1854,-1886,1565,-1919,-1935,-1951,-1967,1731,1730,1580,1717,-1983,1729,1564,-1999,1548,-2015,-2031,1715,1595,-2047,1714,-2063,1610,-2079,1609,-2095,1323,1323,1457,1457,1307,1307,1712,1547,1641,1700,1699,1594,1685,1625,1442,1442,1322,1322,-780,-973,-910,1279,1278,1277,1262,1276,1261,1275,1215,1260,1229,-959,974,974,989,989,-943,735,478,478,495,463,506,414,-1039,1003,958,1017,927,942,987,957,431,476,1272,1167,1228,-1183,1256,-1199,895,895,941,941,1242,1227,1212,1135,1014,1014,490,489,503,487,910,1013,985,925,863,894,970,955,1012,847,-1343,831,755,755,984,909,428,366,754,559,-1391,752,486,457,924,997,698,698,983,893,740,740,908,877,739,739,667,667,953,938,497,287,271,271,683,606,590,712,726,574,302,302,738,736,481,286,526,725,605,711,636,724,696,651,589,681,666,710,364,467,573,695,466,466,301,465,379,379,709,604,665,679,316,316,634,633,436,436,464,269,424,394,452,332,438,363,347,408,393,448,331,422,362,407,392,421,346,406,391,376,375,359,1441,1306,-2367,1290,-2383,1337,-2399,-2415,1426,1321,-2431,1411,1336,-2447,-2463,-2479,1169,1169,1049,1049,1424,1289,1412,1352,1319,-2495,1154,1154,1064,1064,1153,1153,416,390,360,404,403,389,344,374,373,343,358,372,327,357,342,311,356,326,1395,1394,1137,1137,1047,1047,1365,1392,1287,1379,1334,1364,1349,1378,1318,1363,792,792,792,792,1152,1152,1032,1032,1121,1121,1046,1046,1120,1120,1030,1030,-2895,1106,1061,1104,849,849,789,789,1091,1076,1029,1090,1060,1075,833,833,309,324,532,532,832,772,818,803,561,561,531,560,515,546,289,274,288,258,
  482. -250,-1179,-1579,-1836,-1996,-2124,-2253,-2333,-2413,-2477,-2542,-2574,-2607,-2622,-2655,1314,1313,1298,1312,1282,785,785,785,785,1040,1040,1025,1025,768,768,768,768,-766,-798,-830,-862,-895,-911,-927,-943,-959,-975,-991,-1007,-1023,-1039,-1055,-1070,1724,1647,-1103,-1119,1631,1767,1662,1738,1708,1723,-1135,1780,1615,1779,1599,1677,1646,1778,1583,-1151,1777,1567,1737,1692,1765,1722,1707,1630,1751,1661,1764,1614,1736,1676,1763,1750,1645,1598,1721,1691,1762,1706,1582,1761,1566,-1167,1749,1629,767,766,751,765,494,494,735,764,719,749,734,763,447,447,748,718,477,506,431,491,446,476,461,505,415,430,475,445,504,399,460,489,414,503,383,474,429,459,502,502,746,752,488,398,501,473,413,472,486,271,480,270,-1439,-1455,1357,-1471,-1487,-1503,1341,1325,-1519,1489,1463,1403,1309,-1535,1372,1448,1418,1476,1356,1462,1387,-1551,1475,1340,1447,1402,1386,-1567,1068,1068,1474,1461,455,380,468,440,395,425,410,454,364,467,466,464,453,269,409,448,268,432,1371,1473,1432,1417,1308,1460,1355,1446,1459,1431,1083,1083,1401,1416,1458,1445,1067,1067,1370,1457,1051,1051,1291,1430,1385,1444,1354,1415,1400,1443,1082,1082,1173,1113,1186,1066,1185,1050,-1967,1158,1128,1172,1097,1171,1081,-1983,1157,1112,416,266,375,400,1170,1142,1127,1065,793,793,1169,1033,1156,1096,1141,1111,1155,1080,1126,1140,898,898,808,808,897,897,792,792,1095,1152,1032,1125,1110,1139,1079,1124,882,807,838,881,853,791,-2319,867,368,263,822,852,837,866,806,865,-2399,851,352,262,534,534,821,836,594,594,549,549,593,593,533,533,848,773,579,579,564,578,548,563,276,276,577,576,306,291,516,560,305,305,275,259,
  483. -251,-892,-2058,-2620,-2828,-2957,-3023,-3039,1041,1041,1040,1040,769,769,769,769,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,-511,-527,-543,-559,1530,-575,-591,1528,1527,1407,1526,1391,1023,1023,1023,1023,1525,1375,1268,1268,1103,1103,1087,1087,1039,1039,1523,-604,815,815,815,815,510,495,509,479,508,463,507,447,431,505,415,399,-734,-782,1262,-815,1259,1244,-831,1258,1228,-847,-863,1196,-879,1253,987,987,748,-767,493,493,462,477,414,414,686,669,478,446,461,445,474,429,487,458,412,471,1266,1264,1009,1009,799,799,-1019,-1276,-1452,-1581,-1677,-1757,-1821,-1886,-1933,-1997,1257,1257,1483,1468,1512,1422,1497,1406,1467,1496,1421,1510,1134,1134,1225,1225,1466,1451,1374,1405,1252,1252,1358,1480,1164,1164,1251,1251,1238,1238,1389,1465,-1407,1054,1101,-1423,1207,-1439,830,830,1248,1038,1237,1117,1223,1148,1236,1208,411,426,395,410,379,269,1193,1222,1132,1235,1221,1116,976,976,1192,1162,1177,1220,1131,1191,963,963,-1647,961,780,-1663,558,558,994,993,437,408,393,407,829,978,813,797,947,-1743,721,721,377,392,844,950,828,890,706,706,812,859,796,960,948,843,934,874,571,571,-1919,690,555,689,421,346,539,539,944,779,918,873,932,842,903,888,570,570,931,917,674,674,-2575,1562,-2591,1609,-2607,1654,1322,1322,1441,1441,1696,1546,1683,1593,1669,1624,1426,1426,1321,1321,1639,1680,1425,1425,1305,1305,1545,1668,1608,1623,1667,1592,1638,1666,1320,1320,1652,1607,1409,1409,1304,1304,1288,1288,1664,1637,1395,1395,1335,1335,1622,1636,1394,1394,1319,1319,1606,1621,1392,1392,1137,1137,1137,1137,345,390,360,375,404,373,1047,-2751,-2767,-2783,1062,1121,1046,-2799,1077,-2815,1106,1061,789,789,1105,1104,263,355,310,340,325,354,352,262,339,324,1091,1076,1029,1090,1060,1075,833,833,788,788,1088,1028,818,818,803,803,561,561,531,531,816,771,546,546,289,274,288,258,
  484. -253,-317,-381,-446,-478,-509,1279,1279,-811,-1179,-1451,-1756,-1900,-2028,-2189,-2253,-2333,-2414,-2445,-2511,-2526,1313,1298,-2559,1041,1041,1040,1040,1025,1025,1024,1024,1022,1007,1021,991,1020,975,1019,959,687,687,1018,1017,671,671,655,655,1016,1015,639,639,758,758,623,623,757,607,756,591,755,575,754,559,543,543,1009,783,-575,-621,-685,-749,496,-590,750,749,734,748,974,989,1003,958,988,973,1002,942,987,957,972,1001,926,986,941,971,956,1000,910,985,925,999,894,970,-1071,-1087,-1102,1390,-1135,1436,1509,1451,1374,-1151,1405,1358,1480,1420,-1167,1507,1494,1389,1342,1465,1435,1450,1326,1505,1310,1493,1373,1479,1404,1492,1464,1419,428,443,472,397,736,526,464,464,486,457,442,471,484,482,1357,1449,1434,1478,1388,1491,1341,1490,1325,1489,1463,1403,1309,1477,1372,1448,1418,1433,1476,1356,1462,1387,-1439,1475,1340,1447,1402,1474,1324,1461,1371,1473,269,448,1432,1417,1308,1460,-1711,1459,-1727,1441,1099,1099,1446,1386,1431,1401,-1743,1289,1083,1083,1160,1160,1458,1445,1067,1067,1370,1457,1307,1430,1129,1129,1098,1098,268,432,267,416,266,400,-1887,1144,1187,1082,1173,1113,1186,1066,1050,1158,1128,1143,1172,1097,1171,1081,420,391,1157,1112,1170,1142,1127,1065,1169,1049,1156,1096,1141,1111,1155,1080,1126,1154,1064,1153,1140,1095,1048,-2159,1125,1110,1137,-2175,823,823,1139,1138,807,807,384,264,368,263,868,838,853,791,867,822,852,837,866,806,865,790,-2319,851,821,836,352,262,850,805,849,-2399,533,533,835,820,336,261,578,548,563,577,532,532,832,772,562,562,547,547,305,275,560,515,290,290,288,258 };
  485. static const uint8_t tab32[] = { 130,162,193,209,44,28,76,140,9,9,9,9,9,9,9,9,190,254,222,238,126,94,157,157,109,61,173,205 };
  486. static const uint8_t tab33[] = { 252,236,220,204,188,172,156,140,124,108,92,76,60,44,28,12 };
  487. static const int16_t tabindex[2*16] = { 0,32,64,98,0,132,180,218,292,364,426,538,648,746,0,1126,1460,1460,1460,1460,1460,1460,1460,1460,1842,1842,1842,1842,1842,1842,1842,1842 };
  488. static const uint8_t g_linbits[] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,6,8,10,13,4,5,6,7,8,9,11,13 };
  489. #define PEEK_BITS(n) (bs_cache >> (32 - n))
  490. #define FLUSH_BITS(n) { bs_cache <<= (n); bs_sh += (n); }
  491. #define CHECK_BITS while (bs_sh >= 0) { bs_cache |= (uint32_t)*bs_next_ptr++ << bs_sh; bs_sh -= 8; }
  492. #define BSPOS ((bs_next_ptr - bs->buf)*8 - 24 + bs_sh)
  493. float one = 0.0f;
  494. int ireg = 0, big_val_cnt = gr_info->big_values;
  495. const uint8_t *sfb = gr_info->sfbtab;
  496. const uint8_t *bs_next_ptr = bs->buf + bs->pos/8;
  497. uint32_t bs_cache = (((bs_next_ptr[0]*256u + bs_next_ptr[1])*256u + bs_next_ptr[2])*256u + bs_next_ptr[3]) << (bs->pos & 7);
  498. int pairs_to_decode, np, bs_sh = (bs->pos & 7) - 8;
  499. bs_next_ptr += 4;
  500. while (big_val_cnt > 0)
  501. {
  502. int tab_num = gr_info->table_select[ireg];
  503. int sfb_cnt = gr_info->region_count[ireg++];
  504. const int16_t *codebook = tabs + tabindex[tab_num];
  505. int linbits = g_linbits[tab_num];
  506. if (linbits)
  507. {
  508. do
  509. {
  510. np = *sfb++ / 2;
  511. pairs_to_decode = MINIMP3_MIN(big_val_cnt, np);
  512. one = *scf++;
  513. do
  514. {
  515. int j, w = 5;
  516. int leaf = codebook[PEEK_BITS(w)];
  517. while (leaf < 0)
  518. {
  519. FLUSH_BITS(w);
  520. w = leaf & 7;
  521. leaf = codebook[PEEK_BITS(w) - (leaf >> 3)];
  522. }
  523. FLUSH_BITS(leaf >> 8);
  524. for (j = 0; j < 2; j++, dst++, leaf >>= 4)
  525. {
  526. int lsb = leaf & 0x0F;
  527. if (lsb == 15)
  528. {
  529. lsb += PEEK_BITS(linbits);
  530. FLUSH_BITS(linbits);
  531. CHECK_BITS;
  532. *dst = one*L3_pow_43(lsb)*((int32_t)bs_cache < 0 ? -1: 1);
  533. } else
  534. {
  535. *dst = g_pow43[16 + lsb - 16*(bs_cache >> 31)]*one;
  536. }
  537. FLUSH_BITS(lsb ? 1 : 0);
  538. }
  539. CHECK_BITS;
  540. } while (--pairs_to_decode);
  541. } while ((big_val_cnt -= np) > 0 && --sfb_cnt >= 0);
  542. } else
  543. {
  544. do
  545. {
  546. np = *sfb++ / 2;
  547. pairs_to_decode = MINIMP3_MIN(big_val_cnt, np);
  548. one = *scf++;
  549. do
  550. {
  551. int j, w = 5;
  552. int leaf = codebook[PEEK_BITS(w)];
  553. while (leaf < 0)
  554. {
  555. FLUSH_BITS(w);
  556. w = leaf & 7;
  557. leaf = codebook[PEEK_BITS(w) - (leaf >> 3)];
  558. }
  559. FLUSH_BITS(leaf >> 8);
  560. for (j = 0; j < 2; j++, dst++, leaf >>= 4)
  561. {
  562. int lsb = leaf & 0x0F;
  563. *dst = g_pow43[16 + lsb - 16*(bs_cache >> 31)]*one;
  564. FLUSH_BITS(lsb ? 1 : 0);
  565. }
  566. CHECK_BITS;
  567. } while (--pairs_to_decode);
  568. } while ((big_val_cnt -= np) > 0 && --sfb_cnt >= 0);
  569. }
  570. }
  571. for (np = 1 - big_val_cnt;; dst += 4)
  572. {
  573. const uint8_t *codebook_count1 = (gr_info->count1_table) ? tab33 : tab32;
  574. int leaf = codebook_count1[PEEK_BITS(4)];
  575. if (!(leaf & 8))
  576. {
  577. leaf = codebook_count1[(leaf >> 3) + (bs_cache << 4 >> (32 - (leaf & 3)))];
  578. }
  579. FLUSH_BITS(leaf & 7);
  580. if (BSPOS > layer3gr_limit)
  581. {
  582. break;
  583. }
  584. #define RELOAD_SCALEFACTOR if (!--np) { np = *sfb++/2; if (!np) break; one = *scf++; }
  585. #define DEQ_COUNT1(s) if (leaf & (128 >> s)) { dst[s] = ((int32_t)bs_cache < 0) ? -one : one; FLUSH_BITS(1) }
  586. RELOAD_SCALEFACTOR;
  587. DEQ_COUNT1(0);
  588. DEQ_COUNT1(1);
  589. RELOAD_SCALEFACTOR;
  590. DEQ_COUNT1(2);
  591. DEQ_COUNT1(3);
  592. CHECK_BITS;
  593. }
  594. bs->pos = layer3gr_limit;
  595. }
  596. static void L3_midside_stereo(float *left, int n)
  597. {
  598. int i = 0;
  599. float *right = left + 576;
  600. #if HAVE_SIMD
  601. if (have_simd())
  602. {
  603. for (; i < n - 3; i += 4)
  604. {
  605. f4 vl = VLD(left + i);
  606. f4 vr = VLD(right + i);
  607. VSTORE(left + i, VADD(vl, vr));
  608. VSTORE(right + i, VSUB(vl, vr));
  609. }
  610. #ifdef __GNUC__
  611. /* Workaround for spurious -Waggressive-loop-optimizations warning from gcc.
  612. * For more info see: https://github.com/lieff/minimp3/issues/88
  613. */
  614. if (__builtin_constant_p(n % 4 == 0) && n % 4 == 0)
  615. return;
  616. #endif
  617. }
  618. #endif /* HAVE_SIMD */
  619. for (; i < n; i++)
  620. {
  621. float a = left[i];
  622. float b = right[i];
  623. left[i] = a + b;
  624. right[i] = a - b;
  625. }
  626. }
  627. static void L3_intensity_stereo_band(float *left, int n, float kl, float kr)
  628. {
  629. int i;
  630. for (i = 0; i < n; i++)
  631. {
  632. left[i + 576] = left[i]*kr;
  633. left[i] = left[i]*kl;
  634. }
  635. }
  636. static void L3_stereo_top_band(const float *right, const uint8_t *sfb, int nbands, int max_band[3])
  637. {
  638. int i, k;
  639. max_band[0] = max_band[1] = max_band[2] = -1;
  640. for (i = 0; i < nbands; i++)
  641. {
  642. for (k = 0; k < sfb[i]; k += 2)
  643. {
  644. if (right[k] != 0 || right[k + 1] != 0)
  645. {
  646. max_band[i % 3] = i;
  647. break;
  648. }
  649. }
  650. right += sfb[i];
  651. }
  652. }
  653. static void L3_stereo_process(float *left, const uint8_t *ist_pos, const uint8_t *sfb, const uint8_t *hdr, int max_band[3], int mpeg2_sh)
  654. {
  655. static const float g_pan[7*2] = { 0,1,0.21132487f,0.78867513f,0.36602540f,0.63397460f,0.5f,0.5f,0.63397460f,0.36602540f,0.78867513f,0.21132487f,1,0 };
  656. unsigned i, max_pos = HDR_TEST_MPEG1(hdr) ? 7 : 64;
  657. for (i = 0; sfb[i]; i++)
  658. {
  659. unsigned ipos = ist_pos[i];
  660. if ((int)i > max_band[i % 3] && ipos < max_pos)
  661. {
  662. float kl, kr, s = HDR_TEST_MS_STEREO(hdr) ? 1.41421356f : 1;
  663. if (HDR_TEST_MPEG1(hdr))
  664. {
  665. kl = g_pan[2*ipos];
  666. kr = g_pan[2*ipos + 1];
  667. } else
  668. {
  669. kl = 1;
  670. kr = L3_ldexp_q2(1, (ipos + 1) >> 1 << mpeg2_sh);
  671. if (ipos & 1)
  672. {
  673. kl = kr;
  674. kr = 1;
  675. }
  676. }
  677. L3_intensity_stereo_band(left, sfb[i], kl*s, kr*s);
  678. } else if (HDR_TEST_MS_STEREO(hdr))
  679. {
  680. L3_midside_stereo(left, sfb[i]);
  681. }
  682. left += sfb[i];
  683. }
  684. }
  685. static void L3_intensity_stereo(float *left, uint8_t *ist_pos, const L3_gr_info_t *gr, const uint8_t *hdr)
  686. {
  687. int max_band[3], n_sfb = gr->n_long_sfb + gr->n_short_sfb;
  688. int i, max_blocks = gr->n_short_sfb ? 3 : 1;
  689. L3_stereo_top_band(left + 576, gr->sfbtab, n_sfb, max_band);
  690. if (gr->n_long_sfb)
  691. {
  692. max_band[0] = max_band[1] = max_band[2] = MINIMP3_MAX(MINIMP3_MAX(max_band[0], max_band[1]), max_band[2]);
  693. }
  694. for (i = 0; i < max_blocks; i++)
  695. {
  696. int default_pos = HDR_TEST_MPEG1(hdr) ? 3 : 0;
  697. int itop = n_sfb - max_blocks + i;
  698. int prev = itop - max_blocks;
  699. ist_pos[itop] = max_band[i] >= prev ? default_pos : ist_pos[prev];
  700. }
  701. L3_stereo_process(left, ist_pos, gr->sfbtab, hdr, max_band, gr[1].scalefac_compress & 1);
  702. }
  703. static void L3_reorder(float *grbuf, float *scratch, const uint8_t *sfb)
  704. {
  705. int i, len;
  706. float *src = grbuf, *dst = scratch;
  707. for (;0 != (len = *sfb); sfb += 3, src += 2*len)
  708. {
  709. for (i = 0; i < len; i++, src++)
  710. {
  711. *dst++ = src[0*len];
  712. *dst++ = src[1*len];
  713. *dst++ = src[2*len];
  714. }
  715. }
  716. memcpy(grbuf, scratch, (dst - scratch)*sizeof(float));
  717. }
  718. static void L3_antialias(float *grbuf, int nbands)
  719. {
  720. static const float g_aa[2][8] = {
  721. {0.85749293f,0.88174200f,0.94962865f,0.98331459f,0.99551782f,0.99916056f,0.99989920f,0.99999316f},
  722. {0.51449576f,0.47173197f,0.31337745f,0.18191320f,0.09457419f,0.04096558f,0.01419856f,0.00369997f}
  723. };
  724. for (; nbands > 0; nbands--, grbuf += 18)
  725. {
  726. int i = 0;
  727. #if HAVE_SIMD
  728. if (have_simd()) for (; i < 8; i += 4)
  729. {
  730. f4 vu = VLD(grbuf + 18 + i);
  731. f4 vd = VLD(grbuf + 14 - i);
  732. f4 vc0 = VLD(g_aa[0] + i);
  733. f4 vc1 = VLD(g_aa[1] + i);
  734. vd = VREV(vd);
  735. VSTORE(grbuf + 18 + i, VSUB(VMUL(vu, vc0), VMUL(vd, vc1)));
  736. vd = VADD(VMUL(vu, vc1), VMUL(vd, vc0));
  737. VSTORE(grbuf + 14 - i, VREV(vd));
  738. }
  739. #endif /* HAVE_SIMD */
  740. #ifndef MINIMP3_ONLY_SIMD
  741. for(; i < 8; i++)
  742. {
  743. float u = grbuf[18 + i];
  744. float d = grbuf[17 - i];
  745. grbuf[18 + i] = u*g_aa[0][i] - d*g_aa[1][i];
  746. grbuf[17 - i] = u*g_aa[1][i] + d*g_aa[0][i];
  747. }
  748. #endif /* MINIMP3_ONLY_SIMD */
  749. }
  750. }
  751. static void L3_dct3_9(float *y)
  752. {
  753. float s0, s1, s2, s3, s4, s5, s6, s7, s8, t0, t2, t4;
  754. s0 = y[0]; s2 = y[2]; s4 = y[4]; s6 = y[6]; s8 = y[8];
  755. t0 = s0 + s6*0.5f;
  756. s0 -= s6;
  757. t4 = (s4 + s2)*0.93969262f;
  758. t2 = (s8 + s2)*0.76604444f;
  759. s6 = (s4 - s8)*0.17364818f;
  760. s4 += s8 - s2;
  761. s2 = s0 - s4*0.5f;
  762. y[4] = s4 + s0;
  763. s8 = t0 - t2 + s6;
  764. s0 = t0 - t4 + t2;
  765. s4 = t0 + t4 - s6;
  766. s1 = y[1]; s3 = y[3]; s5 = y[5]; s7 = y[7];
  767. s3 *= 0.86602540f;
  768. t0 = (s5 + s1)*0.98480775f;
  769. t4 = (s5 - s7)*0.34202014f;
  770. t2 = (s1 + s7)*0.64278761f;
  771. s1 = (s1 - s5 - s7)*0.86602540f;
  772. s5 = t0 - s3 - t2;
  773. s7 = t4 - s3 - t0;
  774. s3 = t4 + s3 - t2;
  775. y[0] = s4 - s7;
  776. y[1] = s2 + s1;
  777. y[2] = s0 - s3;
  778. y[3] = s8 + s5;
  779. y[5] = s8 - s5;
  780. y[6] = s0 + s3;
  781. y[7] = s2 - s1;
  782. y[8] = s4 + s7;
  783. }
  784. static void L3_imdct36(float *grbuf, float *overlap, const float *window, int nbands)
  785. {
  786. int i, j;
  787. static const float g_twid9[18] = {
  788. 0.73727734f,0.79335334f,0.84339145f,0.88701083f,0.92387953f,0.95371695f,0.97629601f,0.99144486f,0.99904822f,0.67559021f,0.60876143f,0.53729961f,0.46174861f,0.38268343f,0.30070580f,0.21643961f,0.13052619f,0.04361938f
  789. };
  790. for (j = 0; j < nbands; j++, grbuf += 18, overlap += 9)
  791. {
  792. float co[9], si[9];
  793. co[0] = -grbuf[0];
  794. si[0] = grbuf[17];
  795. for (i = 0; i < 4; i++)
  796. {
  797. si[8 - 2*i] = grbuf[4*i + 1] - grbuf[4*i + 2];
  798. co[1 + 2*i] = grbuf[4*i + 1] + grbuf[4*i + 2];
  799. si[7 - 2*i] = grbuf[4*i + 4] - grbuf[4*i + 3];
  800. co[2 + 2*i] = -(grbuf[4*i + 3] + grbuf[4*i + 4]);
  801. }
  802. L3_dct3_9(co);
  803. L3_dct3_9(si);
  804. si[1] = -si[1];
  805. si[3] = -si[3];
  806. si[5] = -si[5];
  807. si[7] = -si[7];
  808. i = 0;
  809. #if HAVE_SIMD
  810. if (have_simd()) for (; i < 8; i += 4)
  811. {
  812. f4 vovl = VLD(overlap + i);
  813. f4 vc = VLD(co + i);
  814. f4 vs = VLD(si + i);
  815. f4 vr0 = VLD(g_twid9 + i);
  816. f4 vr1 = VLD(g_twid9 + 9 + i);
  817. f4 vw0 = VLD(window + i);
  818. f4 vw1 = VLD(window + 9 + i);
  819. f4 vsum = VADD(VMUL(vc, vr1), VMUL(vs, vr0));
  820. VSTORE(overlap + i, VSUB(VMUL(vc, vr0), VMUL(vs, vr1)));
  821. VSTORE(grbuf + i, VSUB(VMUL(vovl, vw0), VMUL(vsum, vw1)));
  822. vsum = VADD(VMUL(vovl, vw1), VMUL(vsum, vw0));
  823. VSTORE(grbuf + 14 - i, VREV(vsum));
  824. }
  825. #endif /* HAVE_SIMD */
  826. for (; i < 9; i++)
  827. {
  828. float ovl = overlap[i];
  829. float sum = co[i]*g_twid9[9 + i] + si[i]*g_twid9[0 + i];
  830. overlap[i] = co[i]*g_twid9[0 + i] - si[i]*g_twid9[9 + i];
  831. grbuf[i] = ovl*window[0 + i] - sum*window[9 + i];
  832. grbuf[17 - i] = ovl*window[9 + i] + sum*window[0 + i];
  833. }
  834. }
  835. }
  836. static void L3_idct3(float x0, float x1, float x2, float *dst)
  837. {
  838. float m1 = x1*0.86602540f;
  839. float a1 = x0 - x2*0.5f;
  840. dst[1] = x0 + x2;
  841. dst[0] = a1 + m1;
  842. dst[2] = a1 - m1;
  843. }
  844. static void L3_imdct12(float *x, float *dst, float *overlap)
  845. {
  846. static const float g_twid3[6] = { 0.79335334f,0.92387953f,0.99144486f, 0.60876143f,0.38268343f,0.13052619f };
  847. float co[3], si[3];
  848. int i;
  849. L3_idct3(-x[0], x[6] + x[3], x[12] + x[9], co);
  850. L3_idct3(x[15], x[12] - x[9], x[6] - x[3], si);
  851. si[1] = -si[1];
  852. for (i = 0; i < 3; i++)
  853. {
  854. float ovl = overlap[i];
  855. float sum = co[i]*g_twid3[3 + i] + si[i]*g_twid3[0 + i];
  856. overlap[i] = co[i]*g_twid3[0 + i] - si[i]*g_twid3[3 + i];
  857. dst[i] = ovl*g_twid3[2 - i] - sum*g_twid3[5 - i];
  858. dst[5 - i] = ovl*g_twid3[5 - i] + sum*g_twid3[2 - i];
  859. }
  860. }
  861. static void L3_imdct_short(float *grbuf, float *overlap, int nbands)
  862. {
  863. for (;nbands > 0; nbands--, overlap += 9, grbuf += 18)
  864. {
  865. float tmp[18];
  866. memcpy(tmp, grbuf, sizeof(tmp));
  867. memcpy(grbuf, overlap, 6*sizeof(float));
  868. L3_imdct12(tmp, grbuf + 6, overlap + 6);
  869. L3_imdct12(tmp + 1, grbuf + 12, overlap + 6);
  870. L3_imdct12(tmp + 2, overlap, overlap + 6);
  871. }
  872. }
  873. static void L3_change_sign(float *grbuf)
  874. {
  875. int b, i;
  876. for (b = 0, grbuf += 18; b < 32; b += 2, grbuf += 36)
  877. for (i = 1; i < 18; i += 2)
  878. grbuf[i] = -grbuf[i];
  879. }
  880. static void L3_imdct_gr(float *grbuf, float *overlap, unsigned block_type, unsigned n_long_bands)
  881. {
  882. static const float g_mdct_window[2][18] = {
  883. { 0.99904822f,0.99144486f,0.97629601f,0.95371695f,0.92387953f,0.88701083f,0.84339145f,0.79335334f,0.73727734f,0.04361938f,0.13052619f,0.21643961f,0.30070580f,0.38268343f,0.46174861f,0.53729961f,0.60876143f,0.67559021f },
  884. { 1,1,1,1,1,1,0.99144486f,0.92387953f,0.79335334f,0,0,0,0,0,0,0.13052619f,0.38268343f,0.60876143f }
  885. };
  886. if (n_long_bands)
  887. {
  888. L3_imdct36(grbuf, overlap, g_mdct_window[0], n_long_bands);
  889. grbuf += 18*n_long_bands;
  890. overlap += 9*n_long_bands;
  891. }
  892. if (block_type == SHORT_BLOCK_TYPE)
  893. L3_imdct_short(grbuf, overlap, 32 - n_long_bands);
  894. else
  895. L3_imdct36(grbuf, overlap, g_mdct_window[block_type == STOP_BLOCK_TYPE], 32 - n_long_bands);
  896. }
  897. static void L3_save_reservoir(mp3dec_t *h, mp3dec_scratch_t *s)
  898. {
  899. int pos = (s->bs.pos + 7)/8u;
  900. int remains = s->bs.limit/8u - pos;
  901. if (remains > MAX_BITRESERVOIR_BYTES)
  902. {
  903. pos += remains - MAX_BITRESERVOIR_BYTES;
  904. remains = MAX_BITRESERVOIR_BYTES;
  905. }
  906. if (remains > 0)
  907. {
  908. memmove(h->reserv_buf, s->maindata + pos, remains);
  909. }
  910. h->reserv = remains;
  911. }
  912. static int L3_restore_reservoir(mp3dec_t *h, bs_t *bs, mp3dec_scratch_t *s, int main_data_begin)
  913. {
  914. int frame_bytes = (bs->limit - bs->pos)/8;
  915. int bytes_have = MINIMP3_MIN(h->reserv, main_data_begin);
  916. memcpy(s->maindata, h->reserv_buf + MINIMP3_MAX(0, h->reserv - main_data_begin), MINIMP3_MIN(h->reserv, main_data_begin));
  917. memcpy(s->maindata + bytes_have, bs->buf + bs->pos/8, frame_bytes);
  918. bs_init(&s->bs, s->maindata, bytes_have + frame_bytes);
  919. return h->reserv >= main_data_begin;
  920. }
  921. static void L3_decode(mp3dec_t *h, mp3dec_scratch_t *s, L3_gr_info_t *gr_info, int nch)
  922. {
  923. int ch;
  924. for (ch = 0; ch < nch; ch++)
  925. {
  926. int layer3gr_limit = s->bs.pos + gr_info[ch].part_23_length;
  927. L3_decode_scalefactors(h->header, s->ist_pos[ch], &s->bs, gr_info + ch, s->scf, ch);
  928. L3_huffman(s->grbuf[ch], &s->bs, gr_info + ch, s->scf, layer3gr_limit);
  929. }
  930. if (HDR_TEST_I_STEREO(h->header))
  931. {
  932. L3_intensity_stereo(s->grbuf[0], s->ist_pos[1], gr_info, h->header);
  933. } else if (HDR_IS_MS_STEREO(h->header))
  934. {
  935. L3_midside_stereo(s->grbuf[0], 576);
  936. }
  937. for (ch = 0; ch < nch; ch++, gr_info++)
  938. {
  939. int aa_bands = 31;
  940. int n_long_bands = (gr_info->mixed_block_flag ? 2 : 0) << (int)(HDR_GET_MY_SAMPLE_RATE(h->header) == 2);
  941. if (gr_info->n_short_sfb)
  942. {
  943. aa_bands = n_long_bands - 1;
  944. L3_reorder(s->grbuf[ch] + n_long_bands*18, s->syn[0], gr_info->sfbtab + gr_info->n_long_sfb);
  945. }
  946. L3_antialias(s->grbuf[ch], aa_bands);
  947. L3_imdct_gr(s->grbuf[ch], h->mdct_overlap[ch], gr_info->block_type, n_long_bands);
  948. L3_change_sign(s->grbuf[ch]);
  949. }
  950. }
  951. static void mp3d_DCT_II(float *grbuf, int n)
  952. {
  953. static const float g_sec[24] = {
  954. 10.19000816f,0.50060302f,0.50241929f,3.40760851f,0.50547093f,0.52249861f,2.05778098f,0.51544732f,0.56694406f,1.48416460f,0.53104258f,0.64682180f,1.16943991f,0.55310392f,0.78815460f,0.97256821f,0.58293498f,1.06067765f,0.83934963f,0.62250412f,1.72244716f,0.74453628f,0.67480832f,5.10114861f
  955. };
  956. int i, k = 0;
  957. #if HAVE_SIMD
  958. if (have_simd()) for (; k < n; k += 4)
  959. {
  960. f4 t[4][8], *x;
  961. float *y = grbuf + k;
  962. for (x = t[0], i = 0; i < 8; i++, x++)
  963. {
  964. f4 x0 = VLD(&y[i*18]);
  965. f4 x1 = VLD(&y[(15 - i)*18]);
  966. f4 x2 = VLD(&y[(16 + i)*18]);
  967. f4 x3 = VLD(&y[(31 - i)*18]);
  968. f4 t0 = VADD(x0, x3);
  969. f4 t1 = VADD(x1, x2);
  970. f4 t2 = VMUL_S(VSUB(x1, x2), g_sec[3*i + 0]);
  971. f4 t3 = VMUL_S(VSUB(x0, x3), g_sec[3*i + 1]);
  972. x[0] = VADD(t0, t1);
  973. x[8] = VMUL_S(VSUB(t0, t1), g_sec[3*i + 2]);
  974. x[16] = VADD(t3, t2);
  975. x[24] = VMUL_S(VSUB(t3, t2), g_sec[3*i + 2]);
  976. }
  977. for (x = t[0], i = 0; i < 4; i++, x += 8)
  978. {
  979. f4 x0 = x[0], x1 = x[1], x2 = x[2], x3 = x[3], x4 = x[4], x5 = x[5], x6 = x[6], x7 = x[7], xt;
  980. xt = VSUB(x0, x7); x0 = VADD(x0, x7);
  981. x7 = VSUB(x1, x6); x1 = VADD(x1, x6);
  982. x6 = VSUB(x2, x5); x2 = VADD(x2, x5);
  983. x5 = VSUB(x3, x4); x3 = VADD(x3, x4);
  984. x4 = VSUB(x0, x3); x0 = VADD(x0, x3);
  985. x3 = VSUB(x1, x2); x1 = VADD(x1, x2);
  986. x[0] = VADD(x0, x1);
  987. x[4] = VMUL_S(VSUB(x0, x1), 0.70710677f);
  988. x5 = VADD(x5, x6);
  989. x6 = VMUL_S(VADD(x6, x7), 0.70710677f);
  990. x7 = VADD(x7, xt);
  991. x3 = VMUL_S(VADD(x3, x4), 0.70710677f);
  992. x5 = VSUB(x5, VMUL_S(x7, 0.198912367f)); /* rotate by PI/8 */
  993. x7 = VADD(x7, VMUL_S(x5, 0.382683432f));
  994. x5 = VSUB(x5, VMUL_S(x7, 0.198912367f));
  995. x0 = VSUB(xt, x6); xt = VADD(xt, x6);
  996. x[1] = VMUL_S(VADD(xt, x7), 0.50979561f);
  997. x[2] = VMUL_S(VADD(x4, x3), 0.54119611f);
  998. x[3] = VMUL_S(VSUB(x0, x5), 0.60134488f);
  999. x[5] = VMUL_S(VADD(x0, x5), 0.89997619f);
  1000. x[6] = VMUL_S(VSUB(x4, x3), 1.30656302f);
  1001. x[7] = VMUL_S(VSUB(xt, x7), 2.56291556f);
  1002. }
  1003. if (k > n - 3)
  1004. {
  1005. #if HAVE_SSE
  1006. #define VSAVE2(i, v) _mm_storel_pi((__m64 *)(void*)&y[i*18], v)
  1007. #else /* HAVE_SSE */
  1008. #define VSAVE2(i, v) vst1_f32((float32_t *)&y[i*18], vget_low_f32(v))
  1009. #endif /* HAVE_SSE */
  1010. for (i = 0; i < 7; i++, y += 4*18)
  1011. {
  1012. f4 s = VADD(t[3][i], t[3][i + 1]);
  1013. VSAVE2(0, t[0][i]);
  1014. VSAVE2(1, VADD(t[2][i], s));
  1015. VSAVE2(2, VADD(t[1][i], t[1][i + 1]));
  1016. VSAVE2(3, VADD(t[2][1 + i], s));
  1017. }
  1018. VSAVE2(0, t[0][7]);
  1019. VSAVE2(1, VADD(t[2][7], t[3][7]));
  1020. VSAVE2(2, t[1][7]);
  1021. VSAVE2(3, t[3][7]);
  1022. } else
  1023. {
  1024. #define VSAVE4(i, v) VSTORE(&y[i*18], v)
  1025. for (i = 0; i < 7; i++, y += 4*18)
  1026. {
  1027. f4 s = VADD(t[3][i], t[3][i + 1]);
  1028. VSAVE4(0, t[0][i]);
  1029. VSAVE4(1, VADD(t[2][i], s));
  1030. VSAVE4(2, VADD(t[1][i], t[1][i + 1]));
  1031. VSAVE4(3, VADD(t[2][1 + i], s));
  1032. }
  1033. VSAVE4(0, t[0][7]);
  1034. VSAVE4(1, VADD(t[2][7], t[3][7]));
  1035. VSAVE4(2, t[1][7]);
  1036. VSAVE4(3, t[3][7]);
  1037. }
  1038. } else
  1039. #endif /* HAVE_SIMD */
  1040. #ifdef MINIMP3_ONLY_SIMD
  1041. {} /* for HAVE_SIMD=1, MINIMP3_ONLY_SIMD=1 case we do not need non-intrinsic "else" branch */
  1042. #else /* MINIMP3_ONLY_SIMD */
  1043. for (; k < n; k++)
  1044. {
  1045. float t[4][8], *x, *y = grbuf + k;
  1046. for (x = t[0], i = 0; i < 8; i++, x++)
  1047. {
  1048. float x0 = y[i*18];
  1049. float x1 = y[(15 - i)*18];
  1050. float x2 = y[(16 + i)*18];
  1051. float x3 = y[(31 - i)*18];
  1052. float t0 = x0 + x3;
  1053. float t1 = x1 + x2;
  1054. float t2 = (x1 - x2)*g_sec[3*i + 0];
  1055. float t3 = (x0 - x3)*g_sec[3*i + 1];
  1056. x[0] = t0 + t1;
  1057. x[8] = (t0 - t1)*g_sec[3*i + 2];
  1058. x[16] = t3 + t2;
  1059. x[24] = (t3 - t2)*g_sec[3*i + 2];
  1060. }
  1061. for (x = t[0], i = 0; i < 4; i++, x += 8)
  1062. {
  1063. float x0 = x[0], x1 = x[1], x2 = x[2], x3 = x[3], x4 = x[4], x5 = x[5], x6 = x[6], x7 = x[7], xt;
  1064. xt = x0 - x7; x0 += x7;
  1065. x7 = x1 - x6; x1 += x6;
  1066. x6 = x2 - x5; x2 += x5;
  1067. x5 = x3 - x4; x3 += x4;
  1068. x4 = x0 - x3; x0 += x3;
  1069. x3 = x1 - x2; x1 += x2;
  1070. x[0] = x0 + x1;
  1071. x[4] = (x0 - x1)*0.70710677f;
  1072. x5 = x5 + x6;
  1073. x6 = (x6 + x7)*0.70710677f;
  1074. x7 = x7 + xt;
  1075. x3 = (x3 + x4)*0.70710677f;
  1076. x5 -= x7*0.198912367f; /* rotate by PI/8 */
  1077. x7 += x5*0.382683432f;
  1078. x5 -= x7*0.198912367f;
  1079. x0 = xt - x6; xt += x6;
  1080. x[1] = (xt + x7)*0.50979561f;
  1081. x[2] = (x4 + x3)*0.54119611f;
  1082. x[3] = (x0 - x5)*0.60134488f;
  1083. x[5] = (x0 + x5)*0.89997619f;
  1084. x[6] = (x4 - x3)*1.30656302f;
  1085. x[7] = (xt - x7)*2.56291556f;
  1086. }
  1087. for (i = 0; i < 7; i++, y += 4*18)
  1088. {
  1089. y[0*18] = t[0][i];
  1090. y[1*18] = t[2][i] + t[3][i] + t[3][i + 1];
  1091. y[2*18] = t[1][i] + t[1][i + 1];
  1092. y[3*18] = t[2][i + 1] + t[3][i] + t[3][i + 1];
  1093. }
  1094. y[0*18] = t[0][7];
  1095. y[1*18] = t[2][7] + t[3][7];
  1096. y[2*18] = t[1][7];
  1097. y[3*18] = t[3][7];
  1098. }
  1099. #endif /* MINIMP3_ONLY_SIMD */
  1100. }
  1101. #ifndef MINIMP3_FLOAT_OUTPUT
  1102. static int16_t mp3d_scale_pcm(float sample)
  1103. {
  1104. #if HAVE_ARMV6
  1105. int32_t s32 = (int32_t)(sample + .5f);
  1106. s32 -= (s32 < 0);
  1107. int16_t s = (int16_t)minimp3_clip_int16_arm(s32);
  1108. #else
  1109. if (sample >= 32766.5) return (int16_t) 32767;
  1110. if (sample <= -32767.5) return (int16_t)-32768;
  1111. int16_t s = (int16_t)(sample + .5f);
  1112. s -= (s < 0); /* away from zero, to be compliant */
  1113. #endif
  1114. return s;
  1115. }
  1116. #else /* MINIMP3_FLOAT_OUTPUT */
  1117. static float mp3d_scale_pcm(float sample)
  1118. {
  1119. return sample*(1.f/32768.f);
  1120. }
  1121. #endif /* MINIMP3_FLOAT_OUTPUT */
  1122. static void mp3d_synth_pair(mp3d_sample_t *pcm, int nch, const float *z)
  1123. {
  1124. float a;
  1125. a = (z[14*64] - z[ 0]) * 29;
  1126. a += (z[ 1*64] + z[13*64]) * 213;
  1127. a += (z[12*64] - z[ 2*64]) * 459;
  1128. a += (z[ 3*64] + z[11*64]) * 2037;
  1129. a += (z[10*64] - z[ 4*64]) * 5153;
  1130. a += (z[ 5*64] + z[ 9*64]) * 6574;
  1131. a += (z[ 8*64] - z[ 6*64]) * 37489;
  1132. a += z[ 7*64] * 75038;
  1133. pcm[0] = mp3d_scale_pcm(a);
  1134. z += 2;
  1135. a = z[14*64] * 104;
  1136. a += z[12*64] * 1567;
  1137. a += z[10*64] * 9727;
  1138. a += z[ 8*64] * 64019;
  1139. a += z[ 6*64] * -9975;
  1140. a += z[ 4*64] * -45;
  1141. a += z[ 2*64] * 146;
  1142. a += z[ 0*64] * -5;
  1143. pcm[16*nch] = mp3d_scale_pcm(a);
  1144. }
  1145. static void mp3d_synth(float *xl, mp3d_sample_t *dstl, int nch, float *lins)
  1146. {
  1147. int i;
  1148. float *xr = xl + 576*(nch - 1);
  1149. mp3d_sample_t *dstr = dstl + (nch - 1);
  1150. static const float g_win[] = {
  1151. -1,26,-31,208,218,401,-519,2063,2000,4788,-5517,7134,5959,35640,-39336,74992,
  1152. -1,24,-35,202,222,347,-581,2080,1952,4425,-5879,7640,5288,33791,-41176,74856,
  1153. -1,21,-38,196,225,294,-645,2087,1893,4063,-6237,8092,4561,31947,-43006,74630,
  1154. -1,19,-41,190,227,244,-711,2085,1822,3705,-6589,8492,3776,30112,-44821,74313,
  1155. -1,17,-45,183,228,197,-779,2075,1739,3351,-6935,8840,2935,28289,-46617,73908,
  1156. -1,16,-49,176,228,153,-848,2057,1644,3004,-7271,9139,2037,26482,-48390,73415,
  1157. -2,14,-53,169,227,111,-919,2032,1535,2663,-7597,9389,1082,24694,-50137,72835,
  1158. -2,13,-58,161,224,72,-991,2001,1414,2330,-7910,9592,70,22929,-51853,72169,
  1159. -2,11,-63,154,221,36,-1064,1962,1280,2006,-8209,9750,-998,21189,-53534,71420,
  1160. -2,10,-68,147,215,2,-1137,1919,1131,1692,-8491,9863,-2122,19478,-55178,70590,
  1161. -3,9,-73,139,208,-29,-1210,1870,970,1388,-8755,9935,-3300,17799,-56778,69679,
  1162. -3,8,-79,132,200,-57,-1283,1817,794,1095,-8998,9966,-4533,16155,-58333,68692,
  1163. -4,7,-85,125,189,-83,-1356,1759,605,814,-9219,9959,-5818,14548,-59838,67629,
  1164. -4,7,-91,117,177,-106,-1428,1698,402,545,-9416,9916,-7154,12980,-61289,66494,
  1165. -5,6,-97,111,163,-127,-1498,1634,185,288,-9585,9838,-8540,11455,-62684,65290
  1166. };
  1167. float *zlin = lins + 15*64;
  1168. const float *w = g_win;
  1169. zlin[4*15] = xl[18*16];
  1170. zlin[4*15 + 1] = xr[18*16];
  1171. zlin[4*15 + 2] = xl[0];
  1172. zlin[4*15 + 3] = xr[0];
  1173. zlin[4*31] = xl[1 + 18*16];
  1174. zlin[4*31 + 1] = xr[1 + 18*16];
  1175. zlin[4*31 + 2] = xl[1];
  1176. zlin[4*31 + 3] = xr[1];
  1177. mp3d_synth_pair(dstr, nch, lins + 4*15 + 1);
  1178. mp3d_synth_pair(dstr + 32*nch, nch, lins + 4*15 + 64 + 1);
  1179. mp3d_synth_pair(dstl, nch, lins + 4*15);
  1180. mp3d_synth_pair(dstl + 32*nch, nch, lins + 4*15 + 64);
  1181. #if HAVE_SIMD
  1182. if (have_simd()) for (i = 14; i >= 0; i--)
  1183. {
  1184. #define VLOAD(k) f4 w0 = VSET(*w++); f4 w1 = VSET(*w++); f4 vz = VLD(&zlin[4*i - 64*k]); f4 vy = VLD(&zlin[4*i - 64*(15 - k)]);
  1185. #define V0(k) { VLOAD(k) b = VADD(VMUL(vz, w1), VMUL(vy, w0)) ; a = VSUB(VMUL(vz, w0), VMUL(vy, w1)); }
  1186. #define V1(k) { VLOAD(k) b = VADD(b, VADD(VMUL(vz, w1), VMUL(vy, w0))); a = VADD(a, VSUB(VMUL(vz, w0), VMUL(vy, w1))); }
  1187. #define V2(k) { VLOAD(k) b = VADD(b, VADD(VMUL(vz, w1), VMUL(vy, w0))); a = VADD(a, VSUB(VMUL(vy, w1), VMUL(vz, w0))); }
  1188. f4 a, b;
  1189. zlin[4*i] = xl[18*(31 - i)];
  1190. zlin[4*i + 1] = xr[18*(31 - i)];
  1191. zlin[4*i + 2] = xl[1 + 18*(31 - i)];
  1192. zlin[4*i + 3] = xr[1 + 18*(31 - i)];
  1193. zlin[4*i + 64] = xl[1 + 18*(1 + i)];
  1194. zlin[4*i + 64 + 1] = xr[1 + 18*(1 + i)];
  1195. zlin[4*i - 64 + 2] = xl[18*(1 + i)];
  1196. zlin[4*i - 64 + 3] = xr[18*(1 + i)];
  1197. V0(0) V2(1) V1(2) V2(3) V1(4) V2(5) V1(6) V2(7)
  1198. {
  1199. #ifndef MINIMP3_FLOAT_OUTPUT
  1200. #if HAVE_SSE
  1201. static const f4 g_max = { 32767.0f, 32767.0f, 32767.0f, 32767.0f };
  1202. static const f4 g_min = { -32768.0f, -32768.0f, -32768.0f, -32768.0f };
  1203. __m128i pcm8 = _mm_packs_epi32(_mm_cvtps_epi32(_mm_max_ps(_mm_min_ps(a, g_max), g_min)),
  1204. _mm_cvtps_epi32(_mm_max_ps(_mm_min_ps(b, g_max), g_min)));
  1205. dstr[(15 - i)*nch] = _mm_extract_epi16(pcm8, 1);
  1206. dstr[(17 + i)*nch] = _mm_extract_epi16(pcm8, 5);
  1207. dstl[(15 - i)*nch] = _mm_extract_epi16(pcm8, 0);
  1208. dstl[(17 + i)*nch] = _mm_extract_epi16(pcm8, 4);
  1209. dstr[(47 - i)*nch] = _mm_extract_epi16(pcm8, 3);
  1210. dstr[(49 + i)*nch] = _mm_extract_epi16(pcm8, 7);
  1211. dstl[(47 - i)*nch] = _mm_extract_epi16(pcm8, 2);
  1212. dstl[(49 + i)*nch] = _mm_extract_epi16(pcm8, 6);
  1213. #else /* HAVE_SSE */
  1214. int16x4_t pcma, pcmb;
  1215. a = VADD(a, VSET(0.5f));
  1216. b = VADD(b, VSET(0.5f));
  1217. pcma = vqmovn_s32(vqaddq_s32(vcvtq_s32_f32(a), vreinterpretq_s32_u32(vcltq_f32(a, VSET(0)))));
  1218. pcmb = vqmovn_s32(vqaddq_s32(vcvtq_s32_f32(b), vreinterpretq_s32_u32(vcltq_f32(b, VSET(0)))));
  1219. vst1_lane_s16(dstr + (15 - i)*nch, pcma, 1);
  1220. vst1_lane_s16(dstr + (17 + i)*nch, pcmb, 1);
  1221. vst1_lane_s16(dstl + (15 - i)*nch, pcma, 0);
  1222. vst1_lane_s16(dstl + (17 + i)*nch, pcmb, 0);
  1223. vst1_lane_s16(dstr + (47 - i)*nch, pcma, 3);
  1224. vst1_lane_s16(dstr + (49 + i)*nch, pcmb, 3);
  1225. vst1_lane_s16(dstl + (47 - i)*nch, pcma, 2);
  1226. vst1_lane_s16(dstl + (49 + i)*nch, pcmb, 2);
  1227. #endif /* HAVE_SSE */
  1228. #else /* MINIMP3_FLOAT_OUTPUT */
  1229. static const f4 g_scale = { 1.0f/32768.0f, 1.0f/32768.0f, 1.0f/32768.0f, 1.0f/32768.0f };
  1230. a = VMUL(a, g_scale);
  1231. b = VMUL(b, g_scale);
  1232. #if HAVE_SSE
  1233. _mm_store_ss(dstr + (15 - i)*nch, _mm_shuffle_ps(a, a, _MM_SHUFFLE(1, 1, 1, 1)));
  1234. _mm_store_ss(dstr + (17 + i)*nch, _mm_shuffle_ps(b, b, _MM_SHUFFLE(1, 1, 1, 1)));
  1235. _mm_store_ss(dstl + (15 - i)*nch, _mm_shuffle_ps(a, a, _MM_SHUFFLE(0, 0, 0, 0)));
  1236. _mm_store_ss(dstl + (17 + i)*nch, _mm_shuffle_ps(b, b, _MM_SHUFFLE(0, 0, 0, 0)));
  1237. _mm_store_ss(dstr + (47 - i)*nch, _mm_shuffle_ps(a, a, _MM_SHUFFLE(3, 3, 3, 3)));
  1238. _mm_store_ss(dstr + (49 + i)*nch, _mm_shuffle_ps(b, b, _MM_SHUFFLE(3, 3, 3, 3)));
  1239. _mm_store_ss(dstl + (47 - i)*nch, _mm_shuffle_ps(a, a, _MM_SHUFFLE(2, 2, 2, 2)));
  1240. _mm_store_ss(dstl + (49 + i)*nch, _mm_shuffle_ps(b, b, _MM_SHUFFLE(2, 2, 2, 2)));
  1241. #else /* HAVE_SSE */
  1242. vst1q_lane_f32(dstr + (15 - i)*nch, a, 1);
  1243. vst1q_lane_f32(dstr + (17 + i)*nch, b, 1);
  1244. vst1q_lane_f32(dstl + (15 - i)*nch, a, 0);
  1245. vst1q_lane_f32(dstl + (17 + i)*nch, b, 0);
  1246. vst1q_lane_f32(dstr + (47 - i)*nch, a, 3);
  1247. vst1q_lane_f32(dstr + (49 + i)*nch, b, 3);
  1248. vst1q_lane_f32(dstl + (47 - i)*nch, a, 2);
  1249. vst1q_lane_f32(dstl + (49 + i)*nch, b, 2);
  1250. #endif /* HAVE_SSE */
  1251. #endif /* MINIMP3_FLOAT_OUTPUT */
  1252. }
  1253. } else
  1254. #endif /* HAVE_SIMD */
  1255. #ifdef MINIMP3_ONLY_SIMD
  1256. {} /* for HAVE_SIMD=1, MINIMP3_ONLY_SIMD=1 case we do not need non-intrinsic "else" branch */
  1257. #else /* MINIMP3_ONLY_SIMD */
  1258. for (i = 14; i >= 0; i--)
  1259. {
  1260. #define LOAD(k) float w0 = *w++; float w1 = *w++; float *vz = &zlin[4*i - k*64]; float *vy = &zlin[4*i - (15 - k)*64];
  1261. #define S0(k) { int j; LOAD(k); for (j = 0; j < 4; j++) b[j] = vz[j]*w1 + vy[j]*w0, a[j] = vz[j]*w0 - vy[j]*w1; }
  1262. #define S1(k) { int j; LOAD(k); for (j = 0; j < 4; j++) b[j] += vz[j]*w1 + vy[j]*w0, a[j] += vz[j]*w0 - vy[j]*w1; }
  1263. #define S2(k) { int j; LOAD(k); for (j = 0; j < 4; j++) b[j] += vz[j]*w1 + vy[j]*w0, a[j] += vy[j]*w1 - vz[j]*w0; }
  1264. float a[4], b[4];
  1265. zlin[4*i] = xl[18*(31 - i)];
  1266. zlin[4*i + 1] = xr[18*(31 - i)];
  1267. zlin[4*i + 2] = xl[1 + 18*(31 - i)];
  1268. zlin[4*i + 3] = xr[1 + 18*(31 - i)];
  1269. zlin[4*(i + 16)] = xl[1 + 18*(1 + i)];
  1270. zlin[4*(i + 16) + 1] = xr[1 + 18*(1 + i)];
  1271. zlin[4*(i - 16) + 2] = xl[18*(1 + i)];
  1272. zlin[4*(i - 16) + 3] = xr[18*(1 + i)];
  1273. S0(0) S2(1) S1(2) S2(3) S1(4) S2(5) S1(6) S2(7)
  1274. dstr[(15 - i)*nch] = mp3d_scale_pcm(a[1]);
  1275. dstr[(17 + i)*nch] = mp3d_scale_pcm(b[1]);
  1276. dstl[(15 - i)*nch] = mp3d_scale_pcm(a[0]);
  1277. dstl[(17 + i)*nch] = mp3d_scale_pcm(b[0]);
  1278. dstr[(47 - i)*nch] = mp3d_scale_pcm(a[3]);
  1279. dstr[(49 + i)*nch] = mp3d_scale_pcm(b[3]);
  1280. dstl[(47 - i)*nch] = mp3d_scale_pcm(a[2]);
  1281. dstl[(49 + i)*nch] = mp3d_scale_pcm(b[2]);
  1282. }
  1283. #endif /* MINIMP3_ONLY_SIMD */
  1284. }
  1285. static void mp3d_synth_granule(float *qmf_state, float *grbuf, int nbands, int nch, mp3d_sample_t *pcm, float *lins)
  1286. {
  1287. int i;
  1288. for (i = 0; i < nch; i++)
  1289. {
  1290. mp3d_DCT_II(grbuf + 576*i, nbands);
  1291. }
  1292. memcpy(lins, qmf_state, sizeof(float)*15*64);
  1293. for (i = 0; i < nbands; i += 2)
  1294. {
  1295. mp3d_synth(grbuf + i, pcm + 32*nch*i, nch, lins + i*64);
  1296. }
  1297. #ifndef MINIMP3_NONSTANDARD_BUT_LOGICAL
  1298. if (nch == 1)
  1299. {
  1300. for (i = 0; i < 15*64; i += 2)
  1301. {
  1302. qmf_state[i] = lins[nbands*64 + i];
  1303. }
  1304. } else
  1305. #endif /* MINIMP3_NONSTANDARD_BUT_LOGICAL */
  1306. {
  1307. memcpy(qmf_state, lins + nbands*64, sizeof(float)*15*64);
  1308. }
  1309. }
  1310. static int mp3d_match_frame(const uint8_t *hdr, int mp3_bytes, int frame_bytes)
  1311. {
  1312. int i, nmatch;
  1313. for (i = 0, nmatch = 0; nmatch < MAX_FRAME_SYNC_MATCHES; nmatch++)
  1314. {
  1315. i += hdr_frame_bytes(hdr + i, frame_bytes) + hdr_padding(hdr + i);
  1316. if (i + HDR_SIZE > mp3_bytes)
  1317. return nmatch > 0;
  1318. if (!hdr_compare(hdr, hdr + i))
  1319. return 0;
  1320. }
  1321. return 1;
  1322. }
  1323. static int mp3d_find_frame(const uint8_t *mp3, int mp3_bytes, int *free_format_bytes, int *ptr_frame_bytes)
  1324. {
  1325. int i, k;
  1326. for (i = 0; i < mp3_bytes - HDR_SIZE; i++, mp3++)
  1327. {
  1328. if (hdr_valid(mp3))
  1329. {
  1330. int frame_bytes = hdr_frame_bytes(mp3, *free_format_bytes);
  1331. int frame_and_padding = frame_bytes + hdr_padding(mp3);
  1332. for (k = HDR_SIZE; !frame_bytes && k < MAX_FREE_FORMAT_FRAME_SIZE && i + 2*k < mp3_bytes - HDR_SIZE; k++)
  1333. {
  1334. if (hdr_compare(mp3, mp3 + k))
  1335. {
  1336. int fb = k - hdr_padding(mp3);
  1337. int nextfb = fb + hdr_padding(mp3 + k);
  1338. if (i + k + nextfb + HDR_SIZE > mp3_bytes || !hdr_compare(mp3, mp3 + k + nextfb))
  1339. continue;
  1340. frame_and_padding = k;
  1341. frame_bytes = fb;
  1342. *free_format_bytes = fb;
  1343. }
  1344. }
  1345. if ((frame_bytes && i + frame_and_padding <= mp3_bytes &&
  1346. mp3d_match_frame(mp3, mp3_bytes - i, frame_bytes)) ||
  1347. (!i && frame_and_padding == mp3_bytes))
  1348. {
  1349. *ptr_frame_bytes = frame_and_padding;
  1350. return i;
  1351. }
  1352. *free_format_bytes = 0;
  1353. }
  1354. }
  1355. *ptr_frame_bytes = 0;
  1356. return mp3_bytes;
  1357. }
  1358. void mp3dec_init(mp3dec_t *dec)
  1359. {
  1360. dec->header[0] = 0;
  1361. }
  1362. int mp3dec_decode_frame(mp3dec_t *dec, const uint8_t *mp3, int mp3_bytes, mp3d_sample_t *pcm, mp3dec_frame_info_t *info)
  1363. {
  1364. int i = 0, igr, frame_size = 0, success = 1;
  1365. int result = 0;
  1366. const uint8_t *hdr;
  1367. bs_t bs_frame[1];
  1368. mp3dec_scratch_t *scratch = luat_heap_malloc(sizeof(mp3dec_scratch_t));
  1369. if (!scratch)
  1370. {
  1371. DBG("no mem!");
  1372. return -1;
  1373. }
  1374. memset(scratch, 0, sizeof(mp3dec_scratch_t));
  1375. if (mp3_bytes > 4 && dec->header[0] == 0xff && hdr_compare(dec->header, mp3))
  1376. {
  1377. frame_size = hdr_frame_bytes(mp3, dec->free_format_bytes) + hdr_padding(mp3);
  1378. if (frame_size != mp3_bytes && (frame_size + HDR_SIZE > mp3_bytes || !hdr_compare(mp3, mp3 + frame_size)))
  1379. {
  1380. frame_size = 0;
  1381. }
  1382. }
  1383. if (!frame_size)
  1384. {
  1385. memset(dec, 0, sizeof(mp3dec_t));
  1386. i = mp3d_find_frame(mp3, mp3_bytes, &dec->free_format_bytes, &frame_size);
  1387. if (!frame_size || i + frame_size > mp3_bytes)
  1388. {
  1389. info->frame_bytes = i;
  1390. goto MP3DEC_DECODE_FRAME_END;
  1391. }
  1392. }
  1393. hdr = mp3 + i;
  1394. memcpy(dec->header, hdr, HDR_SIZE);
  1395. info->frame_bytes = i + frame_size;
  1396. info->frame_offset = i;
  1397. info->channels = HDR_IS_MONO(hdr) ? 1 : 2;
  1398. info->hz = hdr_sample_rate_hz(hdr);
  1399. info->layer = 4 - HDR_GET_LAYER(hdr);
  1400. info->bitrate_kbps = hdr_bitrate_kbps(hdr);
  1401. if (!pcm)
  1402. {
  1403. result = hdr_frame_samples(hdr);
  1404. goto MP3DEC_DECODE_FRAME_END;
  1405. }
  1406. bs_init(bs_frame, hdr + HDR_SIZE, frame_size - HDR_SIZE);
  1407. if (HDR_IS_CRC(hdr))
  1408. {
  1409. get_bits(bs_frame, 16);
  1410. }
  1411. if (info->layer == 3)
  1412. {
  1413. int main_data_begin = L3_read_side_info(bs_frame, scratch->gr_info, hdr);
  1414. if (main_data_begin < 0 || bs_frame->pos > bs_frame->limit)
  1415. {
  1416. mp3dec_init(dec);
  1417. result = 0;
  1418. goto MP3DEC_DECODE_FRAME_END;
  1419. }
  1420. success = L3_restore_reservoir(dec, bs_frame, scratch, main_data_begin);
  1421. if (success)
  1422. {
  1423. for (igr = 0; igr < (HDR_TEST_MPEG1(hdr) ? 2 : 1); igr++, pcm += 576*info->channels)
  1424. {
  1425. memset(scratch->grbuf[0], 0, 576*2*sizeof(float));
  1426. L3_decode(dec, scratch, scratch->gr_info + igr*info->channels, info->channels);
  1427. mp3d_synth_granule(dec->qmf_state, scratch->grbuf[0], 18, info->channels, pcm, scratch->syn[0]);
  1428. }
  1429. }
  1430. L3_save_reservoir(dec, scratch);
  1431. } else
  1432. {
  1433. #ifdef MINIMP3_ONLY_MP3
  1434. result = 0;
  1435. goto MP3DEC_DECODE_FRAME_END;
  1436. #else /* MINIMP3_ONLY_MP3 */
  1437. L12_scale_info sci[1];
  1438. L12_read_scale_info(hdr, bs_frame, sci);
  1439. memset(scratch->grbuf[0], 0, 576*2*sizeof(float));
  1440. for (i = 0, igr = 0; igr < 3; igr++)
  1441. {
  1442. if (12 == (i += L12_dequantize_granule(scratch->grbuf[0] + i, bs_frame, sci, info->layer | 1)))
  1443. {
  1444. i = 0;
  1445. L12_apply_scf_384(sci, sci->scf + igr, scratch->grbuf[0]);
  1446. mp3d_synth_granule(dec->qmf_state, scratch->grbuf[0], 12, info->channels, pcm, scratch->syn[0]);
  1447. memset(scratch->grbuf[0], 0, 576*2*sizeof(float));
  1448. pcm += 384*info->channels;
  1449. }
  1450. if (bs_frame->pos > bs_frame->limit)
  1451. {
  1452. mp3dec_init(dec);
  1453. result = 0;
  1454. goto MP3DEC_DECODE_FRAME_END;
  1455. }
  1456. }
  1457. #endif /* MINIMP3_ONLY_MP3 */
  1458. }
  1459. result = success*hdr_frame_samples(dec->header);
  1460. MP3DEC_DECODE_FRAME_END:
  1461. luat_heap_free(scratch);
  1462. return result;
  1463. }
  1464. #ifdef MINIMP3_FLOAT_OUTPUT
  1465. void mp3dec_f32_to_s16(const float *in, int16_t *out, int num_samples)
  1466. {
  1467. int i = 0;
  1468. #if HAVE_SIMD
  1469. int aligned_count = num_samples & ~7;
  1470. for(; i < aligned_count; i += 8)
  1471. {
  1472. static const f4 g_scale = { 32768.0f, 32768.0f, 32768.0f, 32768.0f };
  1473. f4 a = VMUL(VLD(&in[i ]), g_scale);
  1474. f4 b = VMUL(VLD(&in[i+4]), g_scale);
  1475. #if HAVE_SSE
  1476. static const f4 g_max = { 32767.0f, 32767.0f, 32767.0f, 32767.0f };
  1477. static const f4 g_min = { -32768.0f, -32768.0f, -32768.0f, -32768.0f };
  1478. __m128i pcm8 = _mm_packs_epi32(_mm_cvtps_epi32(_mm_max_ps(_mm_min_ps(a, g_max), g_min)),
  1479. _mm_cvtps_epi32(_mm_max_ps(_mm_min_ps(b, g_max), g_min)));
  1480. out[i ] = _mm_extract_epi16(pcm8, 0);
  1481. out[i+1] = _mm_extract_epi16(pcm8, 1);
  1482. out[i+2] = _mm_extract_epi16(pcm8, 2);
  1483. out[i+3] = _mm_extract_epi16(pcm8, 3);
  1484. out[i+4] = _mm_extract_epi16(pcm8, 4);
  1485. out[i+5] = _mm_extract_epi16(pcm8, 5);
  1486. out[i+6] = _mm_extract_epi16(pcm8, 6);
  1487. out[i+7] = _mm_extract_epi16(pcm8, 7);
  1488. #else /* HAVE_SSE */
  1489. int16x4_t pcma, pcmb;
  1490. a = VADD(a, VSET(0.5f));
  1491. b = VADD(b, VSET(0.5f));
  1492. pcma = vqmovn_s32(vqaddq_s32(vcvtq_s32_f32(a), vreinterpretq_s32_u32(vcltq_f32(a, VSET(0)))));
  1493. pcmb = vqmovn_s32(vqaddq_s32(vcvtq_s32_f32(b), vreinterpretq_s32_u32(vcltq_f32(b, VSET(0)))));
  1494. vst1_lane_s16(out+i , pcma, 0);
  1495. vst1_lane_s16(out+i+1, pcma, 1);
  1496. vst1_lane_s16(out+i+2, pcma, 2);
  1497. vst1_lane_s16(out+i+3, pcma, 3);
  1498. vst1_lane_s16(out+i+4, pcmb, 0);
  1499. vst1_lane_s16(out+i+5, pcmb, 1);
  1500. vst1_lane_s16(out+i+6, pcmb, 2);
  1501. vst1_lane_s16(out+i+7, pcmb, 3);
  1502. #endif /* HAVE_SSE */
  1503. }
  1504. #endif /* HAVE_SIMD */
  1505. for(; i < num_samples; i++)
  1506. {
  1507. float sample = in[i] * 32768.0f;
  1508. if (sample >= 32766.5)
  1509. out[i] = (int16_t) 32767;
  1510. else if (sample <= -32767.5)
  1511. out[i] = (int16_t)-32768;
  1512. else
  1513. {
  1514. int16_t s = (int16_t)(sample + .5f);
  1515. s -= (s < 0); /* away from zero, to be compliant */
  1516. out[i] = s;
  1517. }
  1518. }
  1519. }
  1520. #endif /* MINIMP3_FLOAT_OUTPUT */