vorbis.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  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. // automatically select between floating point (preferred) and fixed point libraries:
  23. // NOTE: works with Tremor version here: http://svn.xiph.org/trunk/Tremor, not vorbisidec.1.0.2 currently in ubuntu
  24. #include <ogg/ogg.h>
  25. #ifdef TREMOR_ONLY
  26. #include <vorbis/ivorbiscodec.h>
  27. #else
  28. #include <vorbis/codec.h>
  29. static bool tremor = false;
  30. #endif
  31. // this is tremor packing, not mine...
  32. static inline int32_t clip15(int32_t x) {
  33. int ret = x;
  34. ret -= ((x<=32767)-1)&(x-32767);
  35. ret -= ((x>=-32768)-1)&(x+32768);
  36. return ret;
  37. }
  38. #if BYTES_PER_FRAME == 4
  39. #define ALIGN(n) clip15((n) >> 9);
  40. #define ALIGN_FLOAT(n) ((n)*32768.0f + 0.5f)
  41. #else
  42. #define ALIGN(n) (clip15((n) >> 9) << 16)
  43. #define ALIGN_FLOAT ((n)*32768.0f*65536.0f + 0.5f)
  44. #endif
  45. struct vorbis {
  46. bool opened;
  47. enum { OGG_SYNC, OGG_ID_HEADER, OGG_COMMENT_HEADER, OGG_SETUP_HEADER } status;
  48. struct {
  49. ogg_stream_state state;
  50. ogg_packet packet;
  51. ogg_sync_state sync;
  52. ogg_page page;
  53. };
  54. struct {
  55. vorbis_dsp_state decoder;
  56. vorbis_info info;
  57. vorbis_comment comment;
  58. vorbis_block block;
  59. };
  60. int rate, channels;
  61. uint32_t overflow;
  62. };
  63. #if !LINKALL
  64. static struct vorbis {
  65. // vorbis symbols to be dynamically loaded - from either vorbisfile or vorbisidec (tremor) version of library
  66. vorbis_info *(* ov_info)(OggVorbis_File *vf, int link);
  67. int (* ov_clear)(OggVorbis_File *vf);
  68. void (* ov_info_init)(vorbis_info* vi);
  69. void (* ov_info_clear)(vorbis_info* vi);
  70. void (* ov_comment_init)(vorbis_comment* vc);
  71. void (* ov_comment_clear(vorbis_comment *vc);
  72. int (* ov_block_init)(vorbis_dsp_state* v, vorbis_block* vb);
  73. int (* ov_block_clear)(vorbis_block* vb);
  74. void (* ov_vorbis_dsp_clear)(vorbis_dsp_state* v);
  75. long (* ov_read)(OggVorbis_File *vf, char *buffer, int length, int bigendianp, int word, int sgned, int *bitstream);
  76. long (* ov_read_tremor)(OggVorbis_File *vf, char *buffer, int length, int *bitstream);
  77. int (* ov_open_callbacks)(void *datasource, OggVorbis_File *vf, const char *initial, long ibytes, ov_callbacks callbacks);
  78. } gv;
  79. static struct {
  80. void *handle;
  81. int (*ogg_stream_init)(ogg_stream_state* os, int serialno);
  82. int (*ogg_stream_clear)(ogg_stream_state* os);
  83. int (*ogg_stream_reset)(ogg_stream_state* os);
  84. int (*ogg_stream_eos)(ogg_stream_state* os);
  85. int (*ogg_stream_reset_serialno)(ogg_stream_state* os, int serialno);
  86. int (*ogg_sync_clear)(ogg_sync_state* oy);
  87. void (*ogg_packet_clear)(ogg_packet* op);
  88. char* (*ogg_sync_buffer)(ogg_sync_state* oy, long size);
  89. int (*ogg_sync_wrote)(ogg_sync_state* oy, long bytes);
  90. long (*ogg_sync_pageseek)(ogg_sync_state* oy, ogg_page* og);
  91. int (*ogg_sync_pageout)(ogg_sync_state* oy, ogg_page* og);
  92. int (*ogg_stream_pagein)(ogg_stream_state* os, ogg_page* og);
  93. int (*ogg_stream_packetout)(ogg_stream_state* os, ogg_packet* op);
  94. int (*ogg_page_packets)(const ogg_page* og);
  95. } go;
  96. #endif
  97. static struct vorbis *v;
  98. extern log_level loglevel;
  99. extern struct buffer *streambuf;
  100. extern struct buffer *outputbuf;
  101. extern struct streamstate stream;
  102. extern struct outputstate output;
  103. extern struct decodestate decode;
  104. extern struct processstate process;
  105. #define LOCK_S mutex_lock(streambuf->mutex)
  106. #define UNLOCK_S mutex_unlock(streambuf->mutex)
  107. #define LOCK_O mutex_lock(outputbuf->mutex)
  108. #define UNLOCK_O mutex_unlock(outputbuf->mutex)
  109. #if PROCESS
  110. #define LOCK_O_direct if (decode.direct) mutex_lock(outputbuf->mutex)
  111. #define UNLOCK_O_direct if (decode.direct) mutex_unlock(outputbuf->mutex)
  112. #define IF_DIRECT(x) if (decode.direct) { x }
  113. #define IF_PROCESS(x) if (!decode.direct) { x }
  114. #else
  115. #define LOCK_O_direct mutex_lock(outputbuf->mutex)
  116. #define UNLOCK_O_direct mutex_unlock(outputbuf->mutex)
  117. #define IF_DIRECT(x) { x }
  118. #define IF_PROCESS(x)
  119. #endif
  120. #if LINKALL
  121. #define OV(h, fn, ...) (vorbis_ ## fn)(__VA_ARGS__)
  122. #define OG(h, fn, ...) (ogg_ ## fn)(__VA_ARGS__)
  123. #else
  124. #define OV(h, fn, ...) (h)->ov_##fn(__VA_ARGS__)
  125. #define OG(h, fn, ...) (h)->ogg_ ## fn(__VA_ARGS__)
  126. #endif
  127. static int get_ogg_packet(void) {
  128. int status, packet = -1;
  129. LOCK_S;
  130. size_t bytes = min(_buf_used(streambuf), _buf_cont_read(streambuf));
  131. while (!(status = OG(&go, stream_packetout, &v->state, &v->packet)) && bytes) {
  132. // if sync_pageout (or sync_pageseek) is not called first, sync buffers build ups
  133. while (!(status = OG(&go, sync_pageout, &v->sync, &v->page)) && bytes) {
  134. size_t consumed = min(bytes, 4096);
  135. char* buffer = OG(&gv, sync_buffer, &v->sync, consumed);
  136. memcpy(buffer, streambuf->readp, consumed);
  137. OG(&gv, sync_wrote, &v->sync, consumed);
  138. _buf_inc_readp(streambuf, consumed);
  139. bytes -= consumed;
  140. }
  141. // if we have a new page, put it in
  142. if (status) OG(&go, stream_pagein, &v->state, &v->page);
  143. }
  144. // only return a negative value when true end of streaming is reached
  145. if (status > 0) packet = status;
  146. else if (stream.state > DISCONNECT || _buf_used(streambuf)) packet = 0;
  147. UNLOCK_S;
  148. return packet;
  149. }
  150. static int read_vorbis_header(void) {
  151. int status = 0;
  152. bool fetch = true;
  153. LOCK_S;
  154. size_t bytes = min(_buf_used(streambuf), _buf_cont_read(streambuf));
  155. while (bytes && !status) {
  156. // first fetch a page if we need one
  157. if (fetch) {
  158. size_t consumed = min(bytes, 4096);
  159. char* buffer = OG(&go, sync_buffer, &v->sync, consumed);
  160. memcpy(buffer, streambuf->readp, consumed);
  161. OG(&go, sync_wrote, &v->sync, consumed);
  162. _buf_inc_readp(streambuf, consumed);
  163. bytes -= consumed;
  164. if (!OG(&go, sync_pageseek, &v->sync, &v->page)) continue;
  165. }
  166. switch (v->status) {
  167. case OGG_SYNC:
  168. v->status = OGG_ID_HEADER;
  169. OG(&go, stream_reset_serialno, &v->state, OG(&go, page_serialno, &v->page));
  170. fetch = false;
  171. break;
  172. case OGG_ID_HEADER:
  173. status = OG(&go, stream_pagein, &v->state, &v->page);
  174. if (!OG(&go, stream_packetout, &v->state, &v->packet)) break;
  175. OV(&gv, info_init, &v->info);
  176. status = OV(&gv, synthesis_headerin, &v->info, &v->comment, &v->packet);
  177. if (status) {
  178. LOG_ERROR("vorbis id header packet error %d", status);
  179. status = -1;
  180. } else {
  181. v->channels = v->info.channels;
  182. v->rate = v->info.rate;
  183. v->status = OGG_COMMENT_HEADER;
  184. // only fetch if no other packet already in (they should not)
  185. fetch = OG(&go, page_packets, &v->page) <= 1;
  186. if (!fetch) LOG_INFO("id packet should terminate page");
  187. LOG_INFO("id acquired");
  188. }
  189. break;
  190. case OGG_SETUP_HEADER:
  191. // header packets don't align with pages on Vorbis (contrary to Opus)
  192. if (fetch) OG(&go, stream_pagein, &v->state, &v->page);
  193. // finally build a codec if we have the packet
  194. status = OG(&go, stream_packetout, &v->state, &v->packet);
  195. if (status && ((status = OV(&gv, synthesis_headerin, &v->info, &v->comment, &v->packet)) ||
  196. (status = OV(&gv, synthesis_init, &v->decoder, &v->info)))) {
  197. LOG_ERROR("vorbis setup header packet error %d", status);
  198. // no need to free comment, it's fake
  199. OV(&gv, info_clear, &v->info);
  200. status = -1;
  201. } else {
  202. OV(&gv, block_init, &v->decoder, &v->block);
  203. v->opened = true;
  204. LOG_INFO("codec up and running (rate: %d, channels:%d)", v->rate, v->channels);
  205. status = 1;
  206. }
  207. //@FIXME: can we have audio on that page as well?
  208. break;
  209. case OGG_COMMENT_HEADER: {
  210. // don't consume VorbisComment, just skip it
  211. int packets = OG(&go, page_packets, &v->page);
  212. if (packets) {
  213. v->status = OGG_SETUP_HEADER;
  214. OG(&go, stream_pagein, &v->state, &v->page);
  215. OG(&go, stream_packetout, &v->state, &v->packet);
  216. OV(&gv, comment_init, &v->comment);
  217. v->comment.vendor = "N/A";
  218. // because of lack of page alignment, we might have the setup page already fully in
  219. if (packets > 1) fetch = false;
  220. LOG_INFO("comment skipped succesfully");
  221. }
  222. break;
  223. }
  224. default:
  225. break;
  226. }
  227. }
  228. UNLOCK_S;
  229. return status;
  230. }
  231. inline int pcm_out(vorbis_dsp_state* decoder, void*** pcm) {
  232. #ifndef TREMOR_ONLY
  233. if (!tremor) return OV(&gv, synthesis_pcmout, decoder, (ogg_float_t***) pcm);
  234. #endif
  235. return OV(&gv, synthesis_pcmout, decoder, (ogg_int32_t***) pcm);
  236. }
  237. static decode_state vorbis_decode(void) {
  238. frames_t frames;
  239. u8_t *write_buf;
  240. if (decode.new_stream) {
  241. int status = read_vorbis_header();
  242. if (status == 0) {
  243. return DECODE_RUNNING;
  244. } else if (status < 0) {
  245. LOG_WARN("can't create codec");
  246. return DECODE_ERROR;
  247. }
  248. LOCK_O;
  249. output.next_sample_rate = decode_newstream(v->rate, output.supported_rates);
  250. IF_DSD( output.next_fmt = PCM; )
  251. output.track_start = outputbuf->writep;
  252. if (output.fade_mode) _checkfade(true);
  253. decode.new_stream = false;
  254. UNLOCK_O;
  255. if (v->channels > 2) {
  256. LOG_WARN("too many channels: %d", v->channels);
  257. return DECODE_ERROR;
  258. }
  259. LOG_INFO("setting track_start");
  260. }
  261. LOCK_O_direct;
  262. IF_DIRECT(
  263. frames = min(_buf_space(outputbuf), _buf_cont_write(outputbuf)) / BYTES_PER_FRAME;
  264. write_buf = outputbuf->writep;
  265. );
  266. IF_PROCESS(
  267. frames = process.max_in_frames;
  268. write_buf = process.inbuf;
  269. );
  270. void** pcm = NULL;
  271. int packet, n = 0;
  272. if (v->overflow) {
  273. n = pcm_out(&v->decoder, &pcm);
  274. v->overflow = n - min(n, frames);
  275. } else if ((packet = get_ogg_packet()) > 0) {
  276. n = OV(&gv, synthesis, &v->block, &v->packet);
  277. if (n == 0) n = OV(&gv, synthesis_blockin, &v->decoder, &v->block);
  278. if (n == 0) n = pcm_out(&v->decoder, &pcm);
  279. v->overflow = n - min(n, frames);
  280. } else if (!packet && !OG(&go, page_eos, &v->page)) {
  281. UNLOCK_O_direct;
  282. return DECODE_RUNNING;
  283. }
  284. if (n > 0) {
  285. ISAMPLE_T *optr = (ISAMPLE_T*) write_buf;
  286. frames = min(n, frames);
  287. frames_t count = frames;
  288. #ifndef TREMOR_ONLY
  289. if (!tremor) {
  290. if (v->channels == 2) {
  291. float* iptr_l = (float*) pcm[0];
  292. float* iptr_r = (float*) pcm[1];
  293. while (count--) {
  294. *optr++ = ALIGN_FLOAT(*iptr_l++);
  295. *optr++ = ALIGN_FLOAT(*iptr_r++);;
  296. }
  297. } else if (v->channels == 1) {
  298. float* iptr = pcm[0];
  299. while (count--) {
  300. *optr++ = ALIGN_FLOAT(*iptr);
  301. *optr++ = ALIGN_FLOAT(*iptr++);
  302. }
  303. }
  304. } else
  305. #else
  306. {
  307. if (v->channels == 2) {
  308. s32_t* iptr_l = (s32_t*) pcm[0];
  309. s32_t* iptr_r = (s32_t*) pcm[1];
  310. while (count--) {
  311. *optr++ = ALIGN(*iptr_l++);
  312. *optr++ = ALIGN(*iptr_r++);
  313. }
  314. } else if (v->channels == 1) {
  315. s32_t* iptr = (s32_t*) pcm[0];
  316. while (count--) {
  317. *optr++ = ALIGN(*iptr);
  318. *optr++ = ALIGN(*iptr++);
  319. }
  320. }
  321. }
  322. #endif
  323. // return samples to vorbis/tremor decoder
  324. OV(&gv, synthesis_read, &v->decoder, frames);
  325. IF_DIRECT(
  326. _buf_inc_writep(outputbuf, frames * BYTES_PER_FRAME);
  327. );
  328. IF_PROCESS(
  329. process.in_frames = frames;
  330. );
  331. LOG_SDEBUG("wrote %u frames", frames);
  332. } else if (n == 0) {
  333. if (packet < 0) {
  334. LOG_INFO("end of decode");
  335. UNLOCK_O_direct;
  336. return DECODE_COMPLETE;
  337. } else {
  338. LOG_INFO("no frame decoded");
  339. }
  340. } else {
  341. LOG_INFO("ov_read error: %d", n);
  342. UNLOCK_O_direct;
  343. return DECODE_COMPLETE;
  344. }
  345. UNLOCK_O_direct;
  346. return DECODE_RUNNING;
  347. }
  348. static void vorbis_open(u8_t size, u8_t rate, u8_t chan, u8_t endianness) {
  349. if (v->opened) {
  350. OV(&gv, block_clear, &v->block);
  351. OV(&gv, dsp_clear, &v->decoder);
  352. OV(&gv, info_clear, &v->info);
  353. }
  354. v->opened = false;
  355. v->status = OGG_SYNC;
  356. v->overflow = 0;
  357. OG(&go, stream_clear, &v->state);
  358. OG(&go, sync_clear, &v->sync);
  359. OG(&go, stream_init, &v->state, -1);
  360. }
  361. static void vorbis_close() {
  362. if (v->opened) {
  363. OV(&gv, block_clear, &v->block);
  364. OV(&gv, dsp_clear, &v->decoder);
  365. // info must be last otherwise there is memory leak (where is it said... nowhere)
  366. OV(&gv, info_clear, &v->info);
  367. // we don' t have comments to free
  368. }
  369. v->opened = false;
  370. OG(&go, stream_clear, &v->state);
  371. OG(&go, sync_clear, &v->sync);
  372. }
  373. static bool load_vorbis() {
  374. #if !LINKALL
  375. char *err;
  376. void *g_handle = dlopen(LIBOGG, RTLD_NOW);
  377. if (!g_handle) {
  378. LOG_INFO("ogg dlerror: %s", dlerror());
  379. return false
  380. }
  381. void *v_handle = NULL;
  382. #ifndef TREMOR_ONLY
  383. v_handle = dlopen(LIBVORBIS, RTLD_NOW);
  384. #endif
  385. if (!v_handle) {
  386. v_handle = dlopen(LIBTREMOR, RTLD_NOW);
  387. if (v_handle) {
  388. tremor = true;
  389. } else {
  390. dlclose(g_handle);
  391. LOG_INFO("vorbis/tremor dlerror: %s", dlerror());
  392. return false;
  393. }
  394. }
  395. g_handle->ogg_stream_clear = dlsym(g_handle->handle, "ogg_stream_clear");
  396. g_handle->ogg_stream_reset = dlsym(g_handle->handle, "ogg_stream_reset");
  397. g_handle->ogg_stream_eos = dlsym(g_handle->handle, "ogg_stream_eos");
  398. g_handle->ogg_stream_reset_serialno = dlsym(g_handle->handle, "ogg_stream_reset_serialno");
  399. g_handle->ogg_sync_clear = dlsym(g_handle->handle, "ogg_sync_clear");
  400. g_handle->ogg_packet_clear = dlsym(g_handle->handle, "ogg_packet_clear");
  401. g_handle->ogg_sync_buffer = dlsym(g_handle->handle, "ogg_sync_buffer");
  402. g_handle->ogg_sync_wrote = dlsym(g_handle->handle, "ogg_sync_wrote");
  403. g_handle->ogg_sync_pageseek = dlsym(g_handle->handle, "ogg_sync_pageseek");
  404. g_handle->ogg_sync_pageout = dlsym(g_handle->handle, "ogg_sync_pageout");
  405. g_handle->ogg_stream_pagein = dlsym(g_handle->handle, "ogg_stream_pagein");
  406. g_handle->ogg_stream_packetout = dlsym(g_handle->handle, "ogg_stream_packetout");
  407. g_handle->ogg_page_packets = dlsym(g_handle->handle, "ogg_page_packets");
  408. v_handle.ov_read = dlsym(handle, "ov_read");
  409. v_handle.ov_info = dlsym(handle, "ov_info");
  410. v_handle.ov_clear = dlsym(handle, "ov_clear");
  411. v.handle.ov_info_clear = dlsym(gv.handle, "vorbis_info_clear");
  412. v.handle.ov_comment_init = dlsym(gv.handle, "vorbis_comment_init");
  413. v.handle.ov_comment_clear = dlsym(gv.handle, "vorbis_comment_clear");
  414. v.handle.ov_block_init = dlsym(gv.handle, "vorbis_block_init");
  415. v.handle.ov_block_clear = dlsym(gv.handle, "vorbis_block_clear");
  416. v_handle.ov_open_callbacks = dlsym(handle, "ov_open_callbacks");
  417. if ((err = dlerror()) != NULL) {
  418. LOG_INFO("dlerror: %s", err);
  419. return false;
  420. }
  421. LOG_INFO("loaded %s", tremor ? LIBTREMOR : LIBVORBIS);
  422. #endif
  423. return true;
  424. }
  425. struct codec *register_vorbis(void) {
  426. static struct codec ret = {
  427. 'o', // id
  428. "ogg", // types
  429. 4096, // min read
  430. 20480, // min space
  431. vorbis_open, // open
  432. vorbis_close, // close
  433. vorbis_decode,// decode
  434. };
  435. if ((v = calloc(1, sizeof(struct vorbis))) == NULL) {
  436. return NULL;
  437. }
  438. v->opened = false;
  439. if (!load_vorbis()) {
  440. return NULL;
  441. }
  442. LOG_INFO("using vorbis to decode ogg");
  443. return &ret;
  444. }