flac.c 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /*
  2. * Squeezelite - lightweight headless squeezeplay emulator for linux
  3. *
  4. * (c) Adrian Smith 2012, triode1@btinternet.com
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. */
  20. #include "squeezelite.h"
  21. #include <FLAC/stream_decoder.h>
  22. struct flac {
  23. FLAC__StreamDecoder *decoder;
  24. #if !LINKALL
  25. // FLAC symbols to be dynamically loaded
  26. const char **FLAC__StreamDecoderErrorStatusString;
  27. const char **FLAC__StreamDecoderStateString;
  28. FLAC__StreamDecoder * (* FLAC__stream_decoder_new)(void);
  29. FLAC__bool (* FLAC__stream_decoder_reset)(FLAC__StreamDecoder *decoder);
  30. void (* FLAC__stream_decoder_delete)(FLAC__StreamDecoder *decoder);
  31. FLAC__StreamDecoderInitStatus (* FLAC__stream_decoder_init_stream)(
  32. FLAC__StreamDecoder *decoder,
  33. FLAC__StreamDecoderReadCallback read_callback,
  34. FLAC__StreamDecoderSeekCallback seek_callback,
  35. FLAC__StreamDecoderTellCallback tell_callback,
  36. FLAC__StreamDecoderLengthCallback length_callback,
  37. FLAC__StreamDecoderEofCallback eof_callback,
  38. FLAC__StreamDecoderWriteCallback write_callback,
  39. FLAC__StreamDecoderMetadataCallback metadata_callback,
  40. FLAC__StreamDecoderErrorCallback error_callback,
  41. void *client_data
  42. );
  43. FLAC__bool (* FLAC__stream_decoder_process_single)(FLAC__StreamDecoder *decoder);
  44. FLAC__StreamDecoderState (* FLAC__stream_decoder_get_state)(const FLAC__StreamDecoder *decoder);
  45. #endif
  46. };
  47. static struct flac *f;
  48. extern log_level loglevel;
  49. extern struct buffer *streambuf;
  50. extern struct buffer *outputbuf;
  51. extern struct streamstate stream;
  52. extern struct outputstate output;
  53. extern struct decodestate decode;
  54. extern struct processstate process;
  55. #define LOCK_S mutex_lock(streambuf->mutex)
  56. #define UNLOCK_S mutex_unlock(streambuf->mutex)
  57. #define LOCK_O mutex_lock(outputbuf->mutex)
  58. #define UNLOCK_O mutex_unlock(outputbuf->mutex)
  59. #if PROCESS
  60. #define LOCK_O_direct if (decode.direct) mutex_lock(outputbuf->mutex)
  61. #define UNLOCK_O_direct if (decode.direct) mutex_unlock(outputbuf->mutex)
  62. #define IF_DIRECT(x) if (decode.direct) { x }
  63. #define IF_PROCESS(x) if (!decode.direct) { x }
  64. #else
  65. #define LOCK_O_direct mutex_lock(outputbuf->mutex)
  66. #define UNLOCK_O_direct mutex_unlock(outputbuf->mutex)
  67. #define IF_DIRECT(x) { x }
  68. #define IF_PROCESS(x)
  69. #endif
  70. #if LINKALL
  71. #define FLAC(h, fn, ...) (FLAC__ ## fn)(__VA_ARGS__)
  72. #define FLAC_A(h, a) (FLAC__ ## a)
  73. #else
  74. #define FLAC(h, fn, ...) (h)->FLAC__##fn(__VA_ARGS__)
  75. #define FLAC_A(h, a) (h)->FLAC__ ## a
  76. #endif
  77. static FLAC__StreamDecoderReadStatus read_cb(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *want, void *client_data) {
  78. size_t bytes;
  79. bool end;
  80. LOCK_S;
  81. bytes = min(_buf_used(streambuf), _buf_cont_read(streambuf));
  82. bytes = min(bytes, *want);
  83. end = (stream.state <= DISCONNECT && bytes == 0);
  84. memcpy(buffer, streambuf->readp, bytes);
  85. _buf_inc_readp(streambuf, bytes);
  86. UNLOCK_S;
  87. *want = bytes;
  88. return end ? FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM : FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
  89. }
  90. static FLAC__StreamDecoderWriteStatus write_cb(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame,
  91. const FLAC__int32 *const buffer[], void *client_data) {
  92. size_t frames = frame->header.blocksize;
  93. unsigned bits_per_sample = frame->header.bits_per_sample;
  94. unsigned channels = frame->header.channels;
  95. FLAC__int32 *lptr = (FLAC__int32 *)buffer[0];
  96. FLAC__int32 *rptr = (FLAC__int32 *)buffer[channels > 1 ? 1 : 0];
  97. if (decode.new_stream) {
  98. LOCK_O;
  99. LOG_INFO("setting track_start");
  100. output.track_start = outputbuf->writep;
  101. decode.new_stream = false;
  102. #if DSD
  103. #if SL_LITTLE_ENDIAN
  104. #define MARKER_OFFSET 2
  105. #else
  106. #define MARKER_OFFSET 1
  107. #endif
  108. if (bits_per_sample == 24 && is_stream_dop(((u8_t *)lptr) + MARKER_OFFSET, ((u8_t *)rptr) + MARKER_OFFSET, 4, frames)) {
  109. LOG_INFO("file contains DOP");
  110. if (output.dsdfmt == DOP_S24_LE || output.dsdfmt == DOP_S24_3LE)
  111. output.next_fmt = output.dsdfmt;
  112. else
  113. output.next_fmt = DOP;
  114. output.next_sample_rate = frame->header.sample_rate;
  115. output.fade = FADE_INACTIVE;
  116. } else {
  117. output.next_sample_rate = decode_newstream(frame->header.sample_rate, output.supported_rates);
  118. output.next_fmt = PCM;
  119. if (output.fade_mode) _checkfade(true);
  120. }
  121. #else
  122. output.next_sample_rate = decode_newstream(frame->header.sample_rate, output.supported_rates);
  123. if (output.fade_mode) _checkfade(true);
  124. #endif
  125. UNLOCK_O;
  126. }
  127. LOCK_O_direct;
  128. while (frames > 0) {
  129. frames_t f;
  130. frames_t count;
  131. s32_t *optr;
  132. IF_DIRECT(
  133. optr = (s32_t *)outputbuf->writep;
  134. f = min(_buf_space(outputbuf), _buf_cont_write(outputbuf)) / BYTES_PER_FRAME;
  135. );
  136. IF_PROCESS(
  137. optr = (s32_t *)process.inbuf;
  138. f = process.max_in_frames;
  139. );
  140. f = min(f, frames);
  141. count = f;
  142. if (bits_per_sample == 8) {
  143. while (count--) {
  144. *optr++ = *lptr++ << 24;
  145. *optr++ = *rptr++ << 24;
  146. }
  147. } else if (bits_per_sample == 16) {
  148. while (count--) {
  149. *optr++ = *lptr++ << 16;
  150. *optr++ = *rptr++ << 16;
  151. }
  152. } else if (bits_per_sample == 24) {
  153. while (count--) {
  154. *optr++ = *lptr++ << 8;
  155. *optr++ = *rptr++ << 8;
  156. }
  157. } else if (bits_per_sample == 32) {
  158. while (count--) {
  159. *optr++ = *lptr++;
  160. *optr++ = *rptr++;
  161. }
  162. } else {
  163. LOG_ERROR("unsupported bits per sample: %u", bits_per_sample);
  164. }
  165. frames -= f;
  166. IF_DIRECT(
  167. _buf_inc_writep(outputbuf, f * BYTES_PER_FRAME);
  168. );
  169. IF_PROCESS(
  170. process.in_frames = f;
  171. if (frames) LOG_ERROR("unhandled case");
  172. );
  173. }
  174. UNLOCK_O_direct;
  175. return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
  176. }
  177. static void error_cb(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data) {
  178. LOG_INFO("flac error: %s", FLAC_A(f, StreamDecoderErrorStatusString)[status]);
  179. }
  180. static void flac_open(u8_t sample_size, u8_t sample_rate, u8_t channels, u8_t endianness) {
  181. if (f->decoder) {
  182. FLAC(f, stream_decoder_reset, f->decoder);
  183. } else {
  184. f->decoder = FLAC(f, stream_decoder_new);
  185. }
  186. FLAC(f, stream_decoder_init_stream, f->decoder, &read_cb, NULL, NULL, NULL, NULL, &write_cb, NULL, &error_cb, NULL);
  187. }
  188. static void flac_close(void) {
  189. FLAC(f, stream_decoder_delete, f->decoder);
  190. f->decoder = NULL;
  191. }
  192. static decode_state flac_decode(void) {
  193. bool ok = FLAC(f, stream_decoder_process_single, f->decoder);
  194. FLAC__StreamDecoderState state = FLAC(f, stream_decoder_get_state, f->decoder);
  195. if (!ok && state != FLAC__STREAM_DECODER_END_OF_STREAM) {
  196. LOG_INFO("flac error: %s", FLAC_A(f, StreamDecoderStateString)[state]);
  197. };
  198. if (state == FLAC__STREAM_DECODER_END_OF_STREAM) {
  199. return DECODE_COMPLETE;
  200. } else if (state > FLAC__STREAM_DECODER_END_OF_STREAM) {
  201. return DECODE_ERROR;
  202. } else {
  203. return DECODE_RUNNING;
  204. }
  205. }
  206. static bool load_flac() {
  207. #if !LINKALL
  208. void *handle = dlopen(LIBFLAC, RTLD_NOW);
  209. char *err;
  210. if (!handle) {
  211. LOG_INFO("dlerror: %s", dlerror());
  212. return false;
  213. }
  214. f->FLAC__StreamDecoderErrorStatusString = dlsym(handle, "FLAC__StreamDecoderErrorStatusString");
  215. f->FLAC__StreamDecoderStateString = dlsym(handle, "FLAC__StreamDecoderStateString");
  216. f->FLAC__stream_decoder_new = dlsym(handle, "FLAC__stream_decoder_new");
  217. f->FLAC__stream_decoder_reset = dlsym(handle, "FLAC__stream_decoder_reset");
  218. f->FLAC__stream_decoder_delete = dlsym(handle, "FLAC__stream_decoder_delete");
  219. f->FLAC__stream_decoder_init_stream = dlsym(handle, "FLAC__stream_decoder_init_stream");
  220. f->FLAC__stream_decoder_process_single = dlsym(handle, "FLAC__stream_decoder_process_single");
  221. f->FLAC__stream_decoder_get_state = dlsym(handle, "FLAC__stream_decoder_get_state");
  222. if ((err = dlerror()) != NULL) {
  223. LOG_INFO("dlerror: %s", err);
  224. return false;
  225. }
  226. LOG_INFO("loaded "LIBFLAC);
  227. #endif
  228. return true;
  229. }
  230. struct codec *register_flac(void) {
  231. static struct codec ret = {
  232. 'f', // id
  233. "flc", // types
  234. 16384, // min read
  235. 204800, // min space
  236. flac_open, // open
  237. flac_close, // close
  238. flac_decode, // decode
  239. };
  240. f = malloc(sizeof(struct flac));
  241. if (!f) {
  242. return NULL;
  243. }
  244. f->decoder = NULL;
  245. if (!load_flac()) {
  246. return NULL;
  247. }
  248. LOG_INFO("using flac to decode flc");
  249. return &ret;
  250. }