oggplay.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. /* -*- mode: c; tab-width: 4; c-basic-offset: 4; c-file-style: "linux" -*- */
  2. //
  3. // Copyright (c) 2009-2011, Wei Mingzhi <whistler_wmz@users.sf.net>.
  4. // Copyright (c) 2011-2017, SDLPAL development team.
  5. // All rights reserved.
  6. //
  7. // This file is part of SDLPAL.
  8. //
  9. // SDLPAL is free software: you can redistribute it and/or modify
  10. // it under the terms of the GNU General Public License as published by
  11. // the Free Software Foundation, either version 3 of the License, or
  12. // (at your option) any later version.
  13. //
  14. // This program is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. // GNU General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU General Public License
  20. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. //
  22. // oggplay.h: Player of OGG files.
  23. // @Author: Lou Yihua <louyihua@21cn.com>, 2015-07-28.
  24. //
  25. #include "util.h"
  26. #include "global.h"
  27. #include "palcfg.h"
  28. #include "players.h"
  29. #include "audio.h"
  30. #include <math.h>
  31. #if PAL_HAS_OGG
  32. #define OV_EXCLUDE_STATIC_CALLBACKS
  33. #include <vorbis/vorbisfile.h>
  34. #include "resampler.h"
  35. #define FLAG_OY 0x01
  36. #define FLAG_VI 0x02
  37. #define FLAG_VC 0x04
  38. #define FLAG_OS 0x08
  39. #define FLAG_VD 0x10
  40. #define FLAG_VB 0x20
  41. #define STAGE_PAGEOUT 1
  42. #define STAGE_PACKETOUT 2
  43. #define STAGE_PCMOUT 3
  44. #define STAGE_REWIND 4
  45. #define OGG_BUFFER_LENGTH 4096
  46. typedef struct tagOGGPLAYER
  47. {
  48. AUDIOPLAYER_COMMONS;
  49. ogg_sync_state oy; /* sync and verify incoming physical bitstream */
  50. ogg_stream_state os; /* take physical pages, weld into a logical stream of packets */
  51. ogg_page og; /* one Ogg bitstream page. Vorbis packets are inside */
  52. vorbis_info vi; /* struct that stores all the static vorbis bitstream settings */
  53. vorbis_comment vc; /* struct that stores all the bitstream user comments */
  54. vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */
  55. vorbis_block vb; /* local working space for packet->PCM decode */
  56. FILE *fp;
  57. void *resampler[2];
  58. INT iFlags;
  59. INT iMusic;
  60. INT iStage;
  61. INT nChannels;
  62. BOOL fLoop;
  63. BOOL fReady;
  64. BOOL fUseResampler;
  65. } OGGPLAYER, *LPOGGPLAYER;
  66. PAL_FORCE_INLINE ogg_int16_t OGG_GetSample(float pcm)
  67. {
  68. int val = (int)(floor(pcm * 32767.f + .5f));
  69. /* might as well guard against clipping */
  70. if (val > 32767) {
  71. val = 32767;
  72. }
  73. else if (val < -32768) {
  74. val = -32768;
  75. }
  76. return (ogg_int16_t)val;
  77. }
  78. PAL_FORCE_INLINE void OGG_FillResample(LPOGGPLAYER player, ogg_int16_t* stream)
  79. {
  80. if (gConfig.iAudioChannels == 2) {
  81. stream[0] = resampler_get_and_remove_sample(player->resampler[0]);
  82. stream[1] = (player->vi.channels > 1) ? resampler_get_and_remove_sample(player->resampler[1]) : stream[0];
  83. }
  84. else {
  85. if (player->vi.channels > 1) {
  86. *stream = (short)((int)(resampler_get_and_remove_sample(player->resampler[0]) + resampler_get_and_remove_sample(player->resampler[1])) >> 1);
  87. }
  88. else {
  89. *stream = resampler_get_and_remove_sample(player->resampler[0]);
  90. }
  91. }
  92. }
  93. static void OGG_Cleanup(LPOGGPLAYER player)
  94. {
  95. int i;
  96. for (i = 0; i < gConfig.iAudioChannels; i++) resampler_clear(player->resampler[0]);
  97. /* Do various cleanups */
  98. if (player->iFlags & FLAG_VB) vorbis_block_clear(&player->vb);
  99. if (player->iFlags & FLAG_VD) vorbis_dsp_clear(&player->vd);
  100. if (player->iFlags & FLAG_OS) ogg_stream_clear(&player->os);
  101. if (player->iFlags & FLAG_VC) vorbis_comment_clear(&player->vc);
  102. if (player->iFlags & FLAG_VI) vorbis_info_clear(&player->vi); /* must be called last */
  103. if (player->iFlags & FLAG_OY) ogg_sync_clear(&player->oy);
  104. player->iFlags = player->iStage = 0;
  105. player->fReady = FALSE;
  106. }
  107. static BOOL OGG_Rewind(LPOGGPLAYER player)
  108. {
  109. ogg_packet op; /* one raw packet of data for decode */
  110. char *buffer;
  111. int i, bytes;
  112. OGG_Cleanup(player);
  113. fseek(player->fp, 0, SEEK_SET);
  114. ogg_sync_init(&player->oy); player->iFlags = FLAG_OY;
  115. /* grab some data at the head of the stream. We want the first page
  116. (which is guaranteed to be small and only contain the Vorbis
  117. stream initial header) We need the first page to get the stream
  118. serialno. */
  119. /* submit a 4k block to libvorbis' Ogg layer */
  120. buffer = ogg_sync_buffer(&player->oy, OGG_BUFFER_LENGTH);
  121. bytes = fread(buffer, 1, OGG_BUFFER_LENGTH, player->fp);
  122. ogg_sync_wrote(&player->oy, bytes);
  123. /* Get the first page. */
  124. if (ogg_sync_pageout(&player->oy, &player->og) != 1) {
  125. /* have we simply run out of data? If so, we're done. */
  126. /* error case. Must not be Vorbis data */
  127. OGG_Cleanup(player);
  128. return (player->fReady = FALSE);
  129. }
  130. /* Get the serial number and set up the rest of decode. */
  131. /* serialno first; use it to set up a logical stream */
  132. ogg_stream_init(&player->os, ogg_page_serialno(&player->og));
  133. player->iFlags |= FLAG_OS;
  134. /* extract the initial header from the first page and verify that the
  135. Ogg bitstream is in fact Vorbis data */
  136. /* I handle the initial header first instead of just having the code
  137. read all three Vorbis headers at once because reading the initial
  138. header is an easy way to identify a Vorbis bitstream and it's
  139. useful to see that functionality seperated out. */
  140. vorbis_info_init(&player->vi); player->iFlags |= FLAG_VI;
  141. vorbis_comment_init(&player->vc); player->iFlags |= FLAG_VC;
  142. if (ogg_stream_pagein(&player->os, &player->og)<0) {
  143. /* error; stream version mismatch perhaps */
  144. OGG_Cleanup(player);
  145. return (player->fReady = FALSE);
  146. }
  147. if (ogg_stream_packetout(&player->os, &op) != 1) {
  148. /* no page? must not be vorbis */
  149. OGG_Cleanup(player);
  150. return (player->fReady = FALSE);
  151. }
  152. if (vorbis_synthesis_headerin(&player->vi, &player->vc, &op)<0) {
  153. /* error case; not a vorbis header */
  154. OGG_Cleanup(player);
  155. return (player->fReady = FALSE);
  156. }
  157. /* At this point, we're sure we're Vorbis. We've set up the logical
  158. (Ogg) bitstream decoder. Get the comment and codebook headers and
  159. set up the Vorbis decoder */
  160. /* The next two packets in order are the comment and codebook headers.
  161. They're likely large and may span multiple pages. Thus we read
  162. and submit data until we get our two packets, watching that no
  163. pages are missing. If a page is missing, error out; losing a
  164. header page is the only place where missing data is fatal. */
  165. i = 0;
  166. while (i < 2) {
  167. while (i < 2) {
  168. int result = ogg_sync_pageout(&player->oy, &player->og);
  169. if (result == 0)break; /* Need more data */
  170. /* Don't complain about missing or corrupt data yet. We'll
  171. catch it at the packet output phase */
  172. if (result == 1) {
  173. ogg_stream_pagein(&player->os, &player->og); /* we can ignore any errors here
  174. as they'll also become apparent
  175. at packetout */
  176. while (i < 2) {
  177. result = ogg_stream_packetout(&player->os, &op);
  178. if (result == 0)break;
  179. if (result < 0) {
  180. /* Uh oh; data at some point was corrupted or missing!
  181. We can't tolerate that in a header. Die. */
  182. OGG_Cleanup(player);
  183. return (player->fReady = FALSE);
  184. }
  185. result = vorbis_synthesis_headerin(&player->vi, &player->vc, &op);
  186. if (result < 0) {
  187. OGG_Cleanup(player);
  188. return (player->fReady = FALSE);
  189. }
  190. i++;
  191. }
  192. }
  193. }
  194. /* no harm in not checking before adding more */
  195. buffer = ogg_sync_buffer(&player->oy, OGG_BUFFER_LENGTH);
  196. bytes = fread(buffer, 1, OGG_BUFFER_LENGTH, player->fp);
  197. if (bytes == 0 && i < 2) {
  198. OGG_Cleanup(player);
  199. return (player->fReady = FALSE);
  200. }
  201. ogg_sync_wrote(&player->oy, bytes);
  202. }
  203. if (vorbis_synthesis_init(&player->vd, &player->vi) == 0) { /* central decode state */
  204. vorbis_block_init(&player->vd, &player->vb); /* local state for most of the decode
  205. so multiple block decodes can
  206. proceed in parallel. We could init
  207. multiple vorbis_block structures
  208. for vd here */
  209. player->iStage = STAGE_PAGEOUT;
  210. player->iFlags |= FLAG_VD | FLAG_VB;
  211. player->fUseResampler = (player->vi.rate != gConfig.iSampleRate);
  212. if (player->fUseResampler) {
  213. double factor = (double)player->vi.rate / (double)gConfig.iSampleRate;
  214. for (i = 0; i < min(player->vi.channels, 2); i++)
  215. {
  216. resampler_set_quality(player->resampler[i], AUDIO_IsIntegerConversion(player->vi.rate) ? RESAMPLER_QUALITY_MIN : gConfig.iResampleQuality);
  217. resampler_set_rate(player->resampler[i], factor);
  218. resampler_clear(player->resampler[i]);
  219. }
  220. }
  221. return (player->fReady = TRUE);
  222. }
  223. else {
  224. OGG_Cleanup(player);
  225. return (player->fReady = FALSE);
  226. }
  227. }
  228. static VOID
  229. OGG_FillBuffer(
  230. VOID *object,
  231. LPBYTE stream,
  232. INT len
  233. )
  234. {
  235. LPOGGPLAYER player = (LPOGGPLAYER)object;
  236. if (player->fReady) {
  237. ogg_packet op; /* one raw packet of data for decode */
  238. int total_bytes = 0, stage = player->iStage;
  239. while (total_bytes < len) {
  240. float **pcm;
  241. int samples, result;
  242. switch (stage)
  243. {
  244. case STAGE_PAGEOUT: /* PAGEOUT stage */
  245. result = ogg_sync_pageout(&player->oy, &player->og);
  246. if (result > 0) {
  247. /* can safely ignore errors at this point */
  248. ogg_stream_pagein(&player->os, &player->og);
  249. stage = STAGE_PACKETOUT;
  250. }
  251. else {
  252. if (result == 0) { /* need more data */
  253. char *buffer = ogg_sync_buffer(&player->oy, OGG_BUFFER_LENGTH);
  254. int bytes = fread(buffer, 1, OGG_BUFFER_LENGTH, player->fp);
  255. ogg_sync_wrote(&player->oy, bytes);
  256. stage = (bytes > 0) ? STAGE_PAGEOUT : STAGE_REWIND;
  257. }
  258. break;
  259. }
  260. case STAGE_PACKETOUT:
  261. result = ogg_stream_packetout(&player->os, &op);
  262. if (result > 0) {
  263. /* we have a packet. Decode it */
  264. if (vorbis_synthesis(&player->vb, &op) == 0) { /* test for success! */
  265. vorbis_synthesis_blockin(&player->vd, &player->vb);
  266. }
  267. stage = STAGE_PCMOUT;
  268. }
  269. else {
  270. if (result == 0) { /* need more data */
  271. if (ogg_page_eos(&player->og)) {
  272. if (player->fLoop) {
  273. stage = STAGE_REWIND;
  274. }
  275. else {
  276. OGG_Cleanup(player);
  277. UTIL_CloseFile(player->fp);
  278. player->fp = NULL;
  279. return;
  280. }
  281. }
  282. else {
  283. stage = STAGE_PAGEOUT;
  284. }
  285. }
  286. break;
  287. }
  288. case STAGE_PCMOUT:
  289. if ((samples = vorbis_synthesis_pcmout(&player->vd, &pcm)) > 0) {
  290. int bout;
  291. if (player->fUseResampler) { /* Resampler is available and should be used */
  292. bout = 0;
  293. while (total_bytes < len && samples > 0) { /* Fill as many samples into resampler as possible */
  294. int i, j, to_write = resampler_get_free_count(player->resampler[0]);
  295. if (to_write > 0) {
  296. if (to_write >= samples) to_write = samples;
  297. for (i = 0; i < min(player->vi.channels, 2); i++) {
  298. float *mono = pcm[i] + bout;
  299. for (j = 0; j < to_write; j++) {
  300. resampler_write_sample(player->resampler[i], OGG_GetSample(mono[j]));
  301. }
  302. }
  303. }
  304. /* Fetch resampled samples if available */
  305. j = resampler_get_sample_count(player->resampler[0]);
  306. while (total_bytes < len && resampler_get_sample_count(player->resampler[0]) > 0) {
  307. OGG_FillResample(player, (ogg_int16_t *)(stream + total_bytes));
  308. total_bytes += gConfig.iAudioChannels * sizeof(ogg_int16_t);
  309. }
  310. samples -= to_write; bout += to_write;
  311. }
  312. }
  313. else {
  314. int i;
  315. ogg_int16_t *ptr = (ogg_int16_t *)(stream + total_bytes);
  316. bout = (len - total_bytes) / gConfig.iAudioChannels / sizeof(ogg_int16_t);
  317. if (bout > samples) bout = samples;
  318. for (i = 0; i < bout; i++) {
  319. if (gConfig.iAudioChannels == 2) {
  320. ptr[0] = OGG_GetSample(pcm[0][i]);
  321. ptr[1] = (player->vi.channels > 1) ? OGG_GetSample(pcm[1][i]) : ptr[0];
  322. }
  323. else {
  324. if (player->vi.channels > 1) {
  325. ptr[0] = (short)((int)(OGG_GetSample(pcm[0][i]) + OGG_GetSample(pcm[1][i])) >> 1);
  326. }
  327. else {
  328. ptr[0] = OGG_GetSample(pcm[0][i]);
  329. }
  330. }
  331. ptr += gConfig.iAudioChannels;
  332. }
  333. total_bytes += bout * gConfig.iAudioChannels * sizeof(ogg_int16_t);
  334. }
  335. /* tell libvorbis how many samples we actually consumed */
  336. vorbis_synthesis_read(&player->vd, bout);
  337. }
  338. else {
  339. stage = STAGE_PACKETOUT;
  340. }
  341. break;
  342. case STAGE_REWIND:
  343. if (player->vi.rate != gConfig.iSampleRate) { /* If there are samples in the resampler, fetch them first */
  344. while (total_bytes < len && resampler_get_sample_count(player->resampler[0]) > 0) {
  345. OGG_FillResample(player, (ogg_int16_t *)(stream + total_bytes));
  346. total_bytes += gConfig.iAudioChannels * sizeof(ogg_int16_t);
  347. }
  348. /* Break out if there are still samples in the resampler */
  349. if (resampler_get_sample_count(player->resampler[0]) > 0) break;
  350. }
  351. OGG_Rewind(player);
  352. stage = player->iStage;
  353. break;
  354. default:
  355. return;
  356. }
  357. }
  358. player->iStage = stage;
  359. }
  360. }
  361. static BOOL
  362. OGG_Play(
  363. VOID *object,
  364. INT iNum,
  365. BOOL fLoop,
  366. FLOAT flFadeTime
  367. )
  368. {
  369. LPOGGPLAYER player = (LPOGGPLAYER)object;
  370. //
  371. // Check for NULL pointer.
  372. //
  373. if (player == NULL)
  374. {
  375. return FALSE;
  376. }
  377. player->fLoop = fLoop;
  378. if (iNum == player->iMusic)
  379. {
  380. return TRUE;
  381. }
  382. player->fReady = FALSE;
  383. OGG_Cleanup(player);
  384. if (player->fp)
  385. {
  386. UTIL_CloseFile(player->fp);
  387. player->fp = NULL;
  388. }
  389. if (iNum == -1)
  390. {
  391. return TRUE;
  392. }
  393. player->iMusic = iNum;
  394. player->fp = UTIL_OpenFile(PAL_va(0, "ogg/%.2d.ogg", iNum));
  395. if (player->fp == NULL)
  396. {
  397. return FALSE;
  398. }
  399. if (!OGG_Rewind(player))
  400. {
  401. UTIL_CloseFile(player->fp);
  402. player->fp = NULL;
  403. return FALSE;
  404. }
  405. return TRUE;
  406. }
  407. static VOID
  408. OGG_Shutdown(
  409. VOID *object
  410. )
  411. {
  412. if (object)
  413. {
  414. LPOGGPLAYER player = (LPOGGPLAYER)object;
  415. OGG_Cleanup(player);
  416. resampler_delete(player->resampler[0]);
  417. resampler_delete(player->resampler[1]);
  418. UTIL_CloseFile(player->fp);
  419. free(player);
  420. }
  421. }
  422. LPAUDIOPLAYER
  423. OGG_Init(
  424. VOID
  425. )
  426. {
  427. LPOGGPLAYER player;
  428. if ((player = (LPOGGPLAYER)malloc(sizeof(OGGPLAYER))) != NULL)
  429. {
  430. memset(player, 0, sizeof(OGGPLAYER));
  431. player->FillBuffer = OGG_FillBuffer;
  432. player->Play = OGG_Play;
  433. player->Shutdown = OGG_Shutdown;
  434. player->fp = NULL;
  435. player->iMusic = -1;
  436. player->iFlags = 0;
  437. player->iStage = 0;
  438. player->fLoop = FALSE;
  439. player->fReady = FALSE;
  440. player->fUseResampler = FALSE;
  441. player->resampler[0] = resampler_create();
  442. if (player->resampler[0])
  443. {
  444. player->resampler[1] = resampler_create();
  445. if (player->resampler[1] == NULL)
  446. {
  447. resampler_delete(player->resampler[0]);
  448. player->resampler[0] = NULL;
  449. }
  450. }
  451. }
  452. return (LPAUDIOPLAYER)player;
  453. }
  454. #else
  455. LPAUDIOPLAYER
  456. OGG_Init(
  457. VOID
  458. )
  459. {
  460. return NULL;
  461. }
  462. #endif