vorbis.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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. #define MAX_FRAMES 4096
  23. #if BYTES_PER_FRAME == 4
  24. #define ALIGN(n) (n)
  25. #else
  26. #define ALIGN(n) (n << 16)
  27. #endif
  28. // automatically select between floating point (preferred) and fixed point libraries:
  29. // NOTE: works with Tremor version here: http://svn.xiph.org/trunk/Tremor, not vorbisidec.1.0.2 currently in ubuntu
  30. // we take common definations from <vorbis/vorbisfile.h> even though we can use tremor at run time
  31. // tremor's OggVorbis_File struct is normally smaller so this is ok, but padding added to malloc in case it is bigger
  32. #define OV_EXCLUDE_STATIC_CALLBACKS
  33. #ifdef TREMOR_ONLY
  34. #include <ivorbisfile.h>
  35. #else
  36. #include <vorbis/vorbisfile.h>
  37. #endif
  38. struct vorbis {
  39. OggVorbis_File *vf;
  40. bool opened;
  41. #if !LINKALL
  42. // vorbis symbols to be dynamically loaded - from either vorbisfile or vorbisidec (tremor) version of library
  43. vorbis_info *(* ov_info)(OggVorbis_File *vf, int link);
  44. int (* ov_clear)(OggVorbis_File *vf);
  45. long (* ov_read)(OggVorbis_File *vf, char *buffer, int length, int bigendianp, int word, int sgned, int *bitstream);
  46. long (* ov_read_tremor)(OggVorbis_File *vf, char *buffer, int length, int *bitstream);
  47. int (* ov_open_callbacks)(void *datasource, OggVorbis_File *vf, const char *initial, long ibytes, ov_callbacks callbacks);
  48. #endif
  49. };
  50. static struct vorbis *v;
  51. extern log_level loglevel;
  52. extern struct buffer *streambuf;
  53. extern struct buffer *outputbuf;
  54. extern struct streamstate stream;
  55. extern struct outputstate output;
  56. extern struct decodestate decode;
  57. extern struct processstate process;
  58. #define LOCK_S mutex_lock(streambuf->mutex)
  59. #define UNLOCK_S mutex_unlock(streambuf->mutex)
  60. #define LOCK_O mutex_lock(outputbuf->mutex)
  61. #define UNLOCK_O mutex_unlock(outputbuf->mutex)
  62. #if PROCESS
  63. #define LOCK_O_direct if (decode.direct) mutex_lock(outputbuf->mutex)
  64. #define UNLOCK_O_direct if (decode.direct) mutex_unlock(outputbuf->mutex)
  65. #define LOCK_O_not_direct if (!decode.direct) mutex_lock(outputbuf->mutex)
  66. #define UNLOCK_O_not_direct if (!decode.direct) mutex_unlock(outputbuf->mutex)
  67. #define IF_DIRECT(x) if (decode.direct) { x }
  68. #define IF_PROCESS(x) if (!decode.direct) { x }
  69. #else
  70. #define LOCK_O_direct mutex_lock(outputbuf->mutex)
  71. #define UNLOCK_O_direct mutex_unlock(outputbuf->mutex)
  72. #define LOCK_O_not_direct
  73. #define UNLOCK_O_not_direct
  74. #define IF_DIRECT(x) { x }
  75. #define IF_PROCESS(x)
  76. #endif
  77. #if LINKALL
  78. #define OV(h, fn, ...) (ov_ ## fn)(__VA_ARGS__)
  79. #define TREMOR(h) 0
  80. #if !WIN
  81. extern int ov_read_tremor(); // needed to enable compilation, not linked
  82. #endif
  83. #else
  84. #define OV(h, fn, ...) (h)->ov_##fn(__VA_ARGS__)
  85. #define TREMOR(h) (h)->ov_read_tremor
  86. #endif
  87. // called with mutex locked within vorbis_decode to avoid locking O before S
  88. static size_t _read_cb(void *ptr, size_t size, size_t nmemb, void *datasource) {
  89. size_t bytes;
  90. LOCK_S;
  91. bytes = min(_buf_used(streambuf), _buf_cont_read(streambuf));
  92. bytes = min(bytes, size * nmemb);
  93. memcpy(ptr, streambuf->readp, bytes);
  94. _buf_inc_readp(streambuf, bytes);
  95. UNLOCK_S;
  96. return bytes / size;
  97. }
  98. // these are needed for older versions of tremor, later versions and libvorbis allow NULL to be used
  99. static int _seek_cb(void *datasource, ogg_int64_t offset, int whence) { return -1; }
  100. static int _close_cb(void *datasource) { return 0; }
  101. static long _tell_cb(void *datasource) { return 0; }
  102. static decode_state vorbis_decode(void) {
  103. static int channels;
  104. frames_t frames;
  105. int bytes, s, n;
  106. u8_t *write_buf;
  107. LOCK_S;
  108. if (stream.state <= DISCONNECT && !_buf_used(streambuf)) {
  109. UNLOCK_S;
  110. return DECODE_COMPLETE;
  111. }
  112. UNLOCK_S;
  113. if (decode.new_stream) {
  114. ov_callbacks cbs;
  115. int err;
  116. struct vorbis_info *info;
  117. cbs.read_func = _read_cb;
  118. if (TREMOR(v)) {
  119. cbs.seek_func = _seek_cb; cbs.close_func = _close_cb; cbs.tell_func = _tell_cb;
  120. } else {
  121. cbs.seek_func = NULL; cbs.close_func = NULL; cbs.tell_func = NULL;
  122. }
  123. if ((err = OV(v, open_callbacks, streambuf, v->vf, NULL, 0, cbs)) < 0) {
  124. LOG_WARN("open_callbacks error: %d", err);
  125. return DECODE_COMPLETE;
  126. }
  127. v->opened = true;
  128. info = OV(v, info, v->vf, -1);
  129. LOG_INFO("setting track_start");
  130. LOCK_O;
  131. output.next_sample_rate = decode_newstream(info->rate, output.supported_rates);
  132. IF_DSD( output.next_fmt = PCM; )
  133. output.track_start = outputbuf->writep;
  134. if (output.fade_mode) _checkfade(true);
  135. decode.new_stream = false;
  136. UNLOCK_O;
  137. channels = info->channels;
  138. if (channels > 2) {
  139. LOG_WARN("too many channels: %d", channels);
  140. return DECODE_ERROR;
  141. }
  142. }
  143. LOCK_O_direct;
  144. IF_DIRECT(
  145. frames = min(_buf_space(outputbuf), _buf_cont_write(outputbuf)) / BYTES_PER_FRAME;
  146. write_buf = outputbuf->writep;
  147. );
  148. IF_PROCESS(
  149. frames = process.max_in_frames;
  150. write_buf = process.inbuf;
  151. );
  152. // should be fine to unlock here. This is needed b/c other tasks need to tip intot the output buf
  153. UNLOCK_O_direct;
  154. frames = min(frames, MAX_FRAMES);
  155. bytes = frames * 2 * channels; // samples returned are 16 bits
  156. // write the decoded frames into outputbuf even though they are 16 bits per sample, then unpack them
  157. #ifdef TREMOR_ONLY
  158. n = OV(v, read, v->vf, (char *)write_buf, bytes, &s);
  159. #else
  160. if (!TREMOR(v)) {
  161. #if SL_LITTLE_ENDIAN
  162. n = OV(v, read, v->vf, (char *)write_buf, bytes, 0, 2, 1, &s);
  163. #else
  164. n = OV(v, read, v->vf, (char *)write_buf, bytes, 1, 2, 1, &s);
  165. #endif
  166. #if !WIN
  167. } else {
  168. n = OV(v, read_tremor, v->vf, (char *)write_buf, bytes, &s);
  169. #endif
  170. }
  171. #endif
  172. if (n > 0) {
  173. frames_t count;
  174. s16_t *iptr;
  175. ISAMPLE_T *optr;
  176. frames = n / 2 / channels;
  177. count = frames * channels;
  178. iptr = (s16_t *)write_buf + count;
  179. optr = (ISAMPLE_T *)write_buf + frames * 2;
  180. if (channels == 2) {
  181. #if BYTES_PER_FRAME == 8
  182. while (count--) {
  183. *--optr = *--iptr << 16;
  184. }
  185. #endif
  186. } else if (channels == 1) {
  187. while (count--) {
  188. *--optr = ALIGN(*--iptr);
  189. *--optr = ALIGN(*iptr);
  190. }
  191. }
  192. LOCK_O_direct;
  193. IF_DIRECT(
  194. _buf_inc_writep(outputbuf, frames * BYTES_PER_FRAME);
  195. );
  196. IF_PROCESS(
  197. process.in_frames = frames;
  198. );
  199. UNLOCK_O_direct;
  200. LOG_SDEBUG("wrote %u frames", frames);
  201. } else if (n == 0) {
  202. LOG_INFO("end of stream");
  203. return DECODE_COMPLETE;
  204. } else if (n == OV_HOLE) {
  205. // recoverable hole in stream, seen when skipping
  206. LOG_DEBUG("hole in stream");
  207. } else {
  208. LOG_INFO("ov_read error: %d", n);
  209. return DECODE_COMPLETE;
  210. }
  211. return DECODE_RUNNING;
  212. }
  213. static void vorbis_open(u8_t size, u8_t rate, u8_t chan, u8_t endianness) {
  214. if (!v->vf) {
  215. v->vf = malloc(sizeof(OggVorbis_File) + 128); // add some padding as struct size may be larger
  216. memset(v->vf, 0, sizeof(OggVorbis_File) + 128);
  217. } else {
  218. if (v->opened) {
  219. OV(v, clear, v->vf);
  220. v->opened = false;
  221. }
  222. }
  223. }
  224. static void vorbis_close(void) {
  225. if (v->opened) {
  226. OV(v, clear, v->vf);
  227. v->opened = false;
  228. }
  229. free(v->vf);
  230. v->vf = NULL;
  231. }
  232. static bool load_vorbis() {
  233. #if !LINKALL
  234. void *handle = dlopen(LIBVORBIS, RTLD_NOW);
  235. char *err;
  236. bool tremor = false;
  237. if (!handle) {
  238. handle = dlopen(LIBTREMOR, RTLD_NOW);
  239. if (handle) {
  240. tremor = true;
  241. } else {
  242. LOG_INFO("dlerror: %s", dlerror());
  243. return false;
  244. }
  245. }
  246. v->ov_read = tremor ? NULL : dlsym(handle, "ov_read");
  247. v->ov_read_tremor = tremor ? dlsym(handle, "ov_read") : NULL;
  248. v->ov_info = dlsym(handle, "ov_info");
  249. v->ov_clear = dlsym(handle, "ov_clear");
  250. v->ov_open_callbacks = dlsym(handle, "ov_open_callbacks");
  251. if ((err = dlerror()) != NULL) {
  252. LOG_INFO("dlerror: %s", err);
  253. return false;
  254. }
  255. LOG_INFO("loaded %s", tremor ? LIBTREMOR : LIBVORBIS);
  256. #endif
  257. return true;
  258. }
  259. struct codec *register_vorbis(void) {
  260. static struct codec ret = {
  261. 'o', // id
  262. "ogg", // types
  263. 2048, // min read
  264. 20480, // min space
  265. vorbis_open, // open
  266. vorbis_close, // close
  267. vorbis_decode,// decode
  268. };
  269. v = malloc(sizeof(struct vorbis));
  270. if (!v) {
  271. return NULL;
  272. }
  273. v->vf = NULL;
  274. v->opened = false;
  275. if (!load_vorbis()) {
  276. return NULL;
  277. }
  278. LOG_INFO("using vorbis to decode ogg");
  279. return &ret;
  280. }