mad.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. /*
  2. * Squeezelite - lightweight headless squeezebox emulator
  3. *
  4. * (c) Adrian Smith 2012-2015, triode1@btinternet.com
  5. * Ralph Irving 2015-2017, ralph_irving@hotmail.com
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program 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
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. */
  21. #include "squeezelite.h"
  22. #include <mad.h>
  23. #define MAD_DELAY 529
  24. #define READBUF_SIZE 2048 // local buffer used by decoder: FIXME merge with any other decoders needing one?
  25. struct mad {
  26. u8_t *readbuf;
  27. unsigned readbuf_len;
  28. struct mad_stream stream;
  29. struct mad_frame frame;
  30. struct mad_synth synth;
  31. enum mad_error last_error;
  32. // for lame gapless processing
  33. int checktags;
  34. u32_t consume;
  35. u32_t skip;
  36. u64_t samples;
  37. u32_t padding;
  38. #if !LINKALL
  39. // mad symbols to be dynamically loaded
  40. void (* mad_stream_init)(struct mad_stream *);
  41. void (* mad_frame_init)(struct mad_frame *);
  42. void (* mad_synth_init)(struct mad_synth *);
  43. void (* mad_frame_finish)(struct mad_frame *);
  44. void (* mad_stream_finish)(struct mad_stream *);
  45. void (* mad_stream_buffer)(struct mad_stream *, unsigned char const *, unsigned long);
  46. int (* mad_frame_decode)(struct mad_frame *, struct mad_stream *);
  47. void (* mad_synth_frame)(struct mad_synth *, struct mad_frame const *);
  48. char const *(* mad_stream_errorstr)(struct mad_stream const *);
  49. #endif
  50. };
  51. static struct mad *m;
  52. extern log_level loglevel;
  53. extern struct buffer *streambuf;
  54. extern struct buffer *outputbuf;
  55. extern struct streamstate stream;
  56. extern struct outputstate output;
  57. extern struct decodestate decode;
  58. extern struct processstate process;
  59. #define LOCK_S mutex_lock(streambuf->mutex)
  60. #define UNLOCK_S mutex_unlock(streambuf->mutex)
  61. #define LOCK_O mutex_lock(outputbuf->mutex)
  62. #define UNLOCK_O mutex_unlock(outputbuf->mutex)
  63. #if PROCESS
  64. #define LOCK_O_direct if (decode.direct) mutex_lock(outputbuf->mutex)
  65. #define UNLOCK_O_direct if (decode.direct) mutex_unlock(outputbuf->mutex)
  66. #define IF_DIRECT(x) if (decode.direct) { x }
  67. #define IF_PROCESS(x) if (!decode.direct) { x }
  68. #else
  69. #define LOCK_O_direct mutex_lock(outputbuf->mutex)
  70. #define UNLOCK_O_direct mutex_unlock(outputbuf->mutex)
  71. #define IF_DIRECT(x) { x }
  72. #define IF_PROCESS(x)
  73. #endif
  74. #if LINKALL
  75. #define MAD(h, fn, ...) (mad_ ## fn)(__VA_ARGS__)
  76. #else
  77. #define MAD(h, fn, ...) (h)->mad_##fn(__VA_ARGS__)
  78. #endif
  79. // based on libmad minimad.c scale
  80. static inline u32_t scale(mad_fixed_t sample) {
  81. sample += (1L << (MAD_F_FRACBITS - 24));
  82. if (sample >= MAD_F_ONE)
  83. sample = MAD_F_ONE - 1;
  84. else if (sample < -MAD_F_ONE)
  85. sample = -MAD_F_ONE;
  86. return (s32_t)(sample >> (MAD_F_FRACBITS + 1 - 24)) << 8;
  87. }
  88. // check for id3.2 tag at start of file - http://id3.org/id3v2.4.0-structure, return length
  89. static unsigned _check_id3_tag(size_t bytes) {
  90. u8_t *ptr = streambuf->readp;
  91. u32_t size = 0;
  92. if (bytes > 10 && *ptr == 'I' && *(ptr+1) == 'D' && *(ptr+2) == '3') {
  93. // size is encoded as syncsafe integer, add 10 if footer present
  94. if (*(ptr+6) < 0x80 && *(ptr+7) < 0x80 && *(ptr+8) < 0x80 && *(ptr+9) < 0x80) {
  95. size = 10 + (*(ptr+6) << 21) + (*(ptr+7) << 14) + (*(ptr+8) << 7) + *(ptr+9) + ((*(ptr+5) & 0x10) ? 10 : 0);
  96. LOG_DEBUG("id3.2 tag len: %u", size);
  97. }
  98. }
  99. return size;
  100. }
  101. // check for lame gapless params, don't advance streambuf
  102. static void _check_lame_header(size_t bytes) {
  103. u8_t *ptr = streambuf->readp;
  104. if (*ptr == 0xff && (*(ptr+1) & 0xf0) == 0xf0 && bytes > 180) {
  105. u32_t frame_count = 0, enc_delay = 0, enc_padding = 0;
  106. u8_t flags;
  107. // 2 channels
  108. if (!memcmp(ptr + 36, "Xing", 4) || !memcmp(ptr + 36, "Info", 4)) {
  109. ptr += 36 + 7;
  110. // mono
  111. } else if (!memcmp(ptr + 21, "Xing", 4) || !memcmp(ptr + 21, "Info", 4)) {
  112. ptr += 21 + 7;
  113. }
  114. flags = *ptr;
  115. if (flags & 0x01) {
  116. frame_count = unpackN((u32_t *)(ptr + 1));
  117. ptr += 4;
  118. }
  119. if (flags & 0x02) ptr += 4;
  120. if (flags & 0x04) ptr += 100;
  121. if (flags & 0x08) ptr += 4;
  122. if (!!memcmp(ptr+1, "LAME", 4)) {
  123. return;
  124. }
  125. ptr += 22;
  126. enc_delay = (*ptr << 4 | *(ptr + 1) >> 4) + MAD_DELAY;
  127. enc_padding = (*(ptr + 1) & 0xF) << 8 | *(ptr + 2);
  128. enc_padding = enc_padding > MAD_DELAY ? enc_padding - MAD_DELAY : 0;
  129. // add one frame to initial skip for this (empty) frame
  130. m->skip = enc_delay + 1152;
  131. m->samples = frame_count * 1152 - enc_delay - enc_padding;
  132. m->padding = enc_padding;
  133. LOG_INFO("gapless: skip: %u samples: " FMT_u64 " delay: %u padding: %u", m->skip, m->samples, enc_delay, enc_padding);
  134. }
  135. }
  136. static decode_state mad_decode(void) {
  137. size_t bytes;
  138. bool eos = false;
  139. LOCK_S;
  140. bytes = min(_buf_used(streambuf), _buf_cont_read(streambuf));
  141. if (m->checktags) {
  142. if (m->checktags == 1) {
  143. m->consume = _check_id3_tag(bytes);
  144. m->checktags = 2;
  145. }
  146. if (m->consume) {
  147. u32_t consume = min(m->consume, bytes);
  148. LOG_DEBUG("consume: %u of %u", consume, m->consume);
  149. _buf_inc_readp(streambuf, consume);
  150. m->consume -= consume;
  151. UNLOCK_S;
  152. return DECODE_RUNNING;
  153. }
  154. if (m->checktags == 2) {
  155. if (!stream.meta_interval) {
  156. _check_lame_header(bytes);
  157. }
  158. m->checktags = 0;
  159. }
  160. }
  161. if (m->stream.next_frame && m->readbuf_len) {
  162. m->readbuf_len -= m->stream.next_frame - m->readbuf;
  163. memmove(m->readbuf, m->stream.next_frame, m->readbuf_len);
  164. }
  165. bytes = min(bytes, READBUF_SIZE - m->readbuf_len);
  166. memcpy(m->readbuf + m->readbuf_len, streambuf->readp, bytes);
  167. m->readbuf_len += bytes;
  168. _buf_inc_readp(streambuf, bytes);
  169. if (stream.state <= DISCONNECT && _buf_used(streambuf) == 0) {
  170. eos = true;
  171. LOG_DEBUG("end of stream");
  172. memset(m->readbuf + m->readbuf_len, 0, MAD_BUFFER_GUARD);
  173. m->readbuf_len += MAD_BUFFER_GUARD;
  174. }
  175. UNLOCK_S;
  176. MAD(m, stream_buffer, &m->stream, m->readbuf, m->readbuf_len);
  177. while (true) {
  178. size_t frames;
  179. s32_t *iptrl;
  180. s32_t *iptrr;
  181. unsigned max_frames;
  182. if (MAD(m, frame_decode, &m->frame, &m->stream) == -1) {
  183. decode_state ret;
  184. if (!eos && m->stream.error == MAD_ERROR_BUFLEN) {
  185. ret = DECODE_RUNNING;
  186. } else if (eos && (m->stream.error == MAD_ERROR_BUFLEN || m->stream.error == MAD_ERROR_LOSTSYNC
  187. || m->stream.error == MAD_ERROR_BADBITRATE)) {
  188. ret = DECODE_COMPLETE;
  189. } else if (!MAD_RECOVERABLE(m->stream.error)) {
  190. LOG_INFO("mad_frame_decode error: %s - stopping decoder", MAD(m, stream_errorstr, &m->stream));
  191. ret = DECODE_COMPLETE;
  192. } else {
  193. if (m->stream.error != m->last_error) {
  194. // suppress repeat error messages
  195. LOG_DEBUG("mad_frame_decode error: %s", MAD(m, stream_errorstr, &m->stream));
  196. }
  197. ret = DECODE_RUNNING;
  198. }
  199. m->last_error = m->stream.error;
  200. return ret;
  201. };
  202. MAD(m, synth_frame, &m->synth, &m->frame);
  203. if (decode.new_stream) {
  204. LOCK_O;
  205. LOG_INFO("setting track_start");
  206. output.next_sample_rate = decode_newstream(m->synth.pcm.samplerate, output.supported_rates);
  207. IF_DSD( output.next_fmt = PCM; )
  208. output.track_start = outputbuf->writep;
  209. if (output.fade_mode) _checkfade(true);
  210. decode.new_stream = false;
  211. UNLOCK_O;
  212. }
  213. LOCK_O_direct;
  214. IF_DIRECT(
  215. max_frames = _buf_space(outputbuf) / BYTES_PER_FRAME;
  216. );
  217. IF_PROCESS(
  218. max_frames = process.max_in_frames - process.in_frames;
  219. );
  220. if (m->synth.pcm.length > max_frames) {
  221. LOG_WARN("too many samples - dropping samples");
  222. m->synth.pcm.length = max_frames;
  223. }
  224. frames = m->synth.pcm.length;
  225. iptrl = m->synth.pcm.samples[0];
  226. iptrr = m->synth.pcm.samples[ m->synth.pcm.channels - 1 ];
  227. if (m->skip) {
  228. u32_t skip = min(m->skip, frames);
  229. LOG_DEBUG("gapless: skipping %u frames at start", skip);
  230. frames -= skip;
  231. m->skip -= skip;
  232. iptrl += skip;
  233. iptrr += skip;
  234. }
  235. if (m->samples) {
  236. if (m->samples < frames) {
  237. LOG_DEBUG("gapless: trimming %u frames from end", frames - m->samples);
  238. frames = (size_t)m->samples;
  239. }
  240. m->samples -= frames;
  241. if (m->samples > 0 && eos && !(m->stream.next_frame[0] == 0xff && (m->stream.next_frame[1] & 0xf0) == 0xf0)) {
  242. // this is the last frame to be decoded, but more samples expected so we must have skipped, remove padding
  243. // note this only works if the padding is less than one frame of 1152 bytes otherswise some gap will remain
  244. LOG_DEBUG("gapless: early end - trimming padding from end");
  245. if (frames >= m->padding) {
  246. frames -= m->padding;
  247. } else {
  248. frames = 0;
  249. }
  250. m->samples = 0;
  251. }
  252. }
  253. LOG_SDEBUG("write %u frames", frames);
  254. while (frames > 0) {
  255. size_t f, count;
  256. s32_t *optr;
  257. IF_DIRECT(
  258. f = min(frames, _buf_cont_write(outputbuf) / BYTES_PER_FRAME);
  259. optr = (s32_t *)outputbuf->writep;
  260. );
  261. IF_PROCESS(
  262. f = min(frames, process.max_in_frames - process.in_frames);
  263. optr = (s32_t *)((u8_t *)process.inbuf + process.in_frames * BYTES_PER_FRAME);
  264. );
  265. count = f;
  266. while (count--) {
  267. *optr++ = scale(*iptrl++);
  268. *optr++ = scale(*iptrr++);
  269. }
  270. frames -= f;
  271. IF_DIRECT(
  272. _buf_inc_writep(outputbuf, f * BYTES_PER_FRAME);
  273. );
  274. IF_PROCESS(
  275. process.in_frames += f;
  276. );
  277. }
  278. UNLOCK_O_direct;
  279. }
  280. return eos ? DECODE_COMPLETE : DECODE_RUNNING;
  281. }
  282. static void mad_open(u8_t size, u8_t rate, u8_t chan, u8_t endianness) {
  283. if (!m->readbuf) {
  284. m->readbuf = malloc(READBUF_SIZE + MAD_BUFFER_GUARD);
  285. }
  286. m->checktags = 1;
  287. m->consume = 0;
  288. m->skip = MAD_DELAY;
  289. m->samples = 0;
  290. m->readbuf_len = 0;
  291. m->last_error = MAD_ERROR_NONE;
  292. MAD(m, stream_init, &m->stream);
  293. MAD(m, frame_init, &m->frame);
  294. MAD(m, synth_init, &m->synth);
  295. }
  296. static void mad_close(void) {
  297. mad_synth_finish(&m->synth); // macro only in current version
  298. MAD(m, frame_finish, &m->frame);
  299. MAD(m, stream_finish, &m->stream);
  300. free(m->readbuf);
  301. m->readbuf = NULL;
  302. }
  303. static bool load_mad() {
  304. #if !LINKALL
  305. void *handle = dlopen(LIBMAD, RTLD_NOW);
  306. char *err;
  307. if (!handle) {
  308. LOG_INFO("dlerror: %s", dlerror());
  309. return false;
  310. }
  311. m->mad_stream_init = dlsym(handle, "mad_stream_init");
  312. m->mad_frame_init = dlsym(handle, "mad_frame_init");
  313. m->mad_synth_init = dlsym(handle, "mad_synth_init");
  314. m->mad_frame_finish = dlsym(handle, "mad_frame_finish");
  315. m->mad_stream_finish = dlsym(handle, "mad_stream_finish");
  316. m->mad_stream_buffer = dlsym(handle, "mad_stream_buffer");
  317. m->mad_frame_decode = dlsym(handle, "mad_frame_decode");
  318. m->mad_synth_frame = dlsym(handle, "mad_synth_frame");
  319. m->mad_stream_errorstr = dlsym(handle, "mad_stream_errorstr");
  320. if ((err = dlerror()) != NULL) {
  321. LOG_INFO("dlerror: %s", err);
  322. return false;
  323. }
  324. LOG_INFO("loaded "LIBMAD);
  325. #endif
  326. return true;
  327. }
  328. struct codec *register_mad(void) {
  329. static struct codec ret = {
  330. 'm', // id
  331. "mp3", // types
  332. READBUF_SIZE, // min read
  333. 206800, // min space
  334. mad_open, // open
  335. mad_close, // close
  336. mad_decode, // decode
  337. };
  338. m = malloc(sizeof(struct mad));
  339. if (!m) {
  340. return NULL;
  341. }
  342. m->readbuf = NULL;
  343. m->readbuf_len = 0;
  344. if (!load_mad()) {
  345. return NULL;
  346. }
  347. LOG_INFO("using mad to decode mp3");
  348. return &ret;
  349. }