2 Copyright (C) 2003-2004 Mathieu Olivier
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to:
18 Free Software Foundation, Inc.
19 59 Temple Place - Suite 330
20 Boston, MA 02111-1307, USA
32 =================================================================
34 Minimal set of definitions from the Ogg Vorbis lib
35 (C) COPYRIGHT 1994-2001 by the XIPHOPHORUS Company
38 WARNING: for a matter of simplicity, several pointer types are
39 casted to "void*", and most enumerated values are not included
41 =================================================================
45 typedef __int64 ogg_int64_t;
47 typedef long long ogg_int64_t;
52 size_t (*read_func) (void *ptr, size_t size, size_t nmemb, void *datasource);
53 int (*seek_func) (void *datasource, ogg_int64_t offset, int whence);
54 int (*close_func) (void *datasource);
55 long (*tell_func) (void *datasource);
83 unsigned char *body_data;
88 ogg_int64_t *granule_vals;
93 unsigned char header[282];
100 ogg_int64_t granulepos;
118 ogg_int64_t granulepos;
119 ogg_int64_t sequence;
120 ogg_int64_t glue_bits;
121 ogg_int64_t time_bits;
122 ogg_int64_t floor_bits;
123 ogg_int64_t res_bits;
131 unsigned char *buffer;
146 ogg_int64_t granulepos;
147 ogg_int64_t sequence;
148 vorbis_dsp_state *vd;
153 void *reap; // VOIDED POINTER
169 ogg_int64_t *offsets;
170 ogg_int64_t *dataoffsets;
172 ogg_int64_t *pcmlengths;
174 void *vc; // VOIDED POINTER
175 ogg_int64_t pcm_offset;
177 long current_serialno;
184 ov_callbacks callbacks;
189 =================================================================
191 DarkPlaces definitions
193 =================================================================
196 // Functions exported from the vorbisfile library
197 static int (*qov_clear) (OggVorbis_File *vf);
198 static vorbis_info* (*qov_info) (OggVorbis_File *vf,int link);
199 static int (*qov_open_callbacks) (void *datasource, OggVorbis_File *vf,
200 char *initial, long ibytes,
201 ov_callbacks callbacks);
202 static int (*qov_pcm_seek) (OggVorbis_File *vf,ogg_int64_t pos);
203 static ogg_int64_t (*qov_pcm_total) (OggVorbis_File *vf,int i);
204 static long (*qov_read) (OggVorbis_File *vf,char *buffer,int length,
205 int bigendianp,int word,int sgned,int *bitstream);
207 static dllfunction_t oggvorbisfuncs[] =
209 {"ov_clear", (void **) &qov_clear},
210 {"ov_info", (void **) &qov_info},
211 {"ov_open_callbacks", (void **) &qov_open_callbacks},
212 {"ov_pcm_seek", (void **) &qov_pcm_seek},
213 {"ov_pcm_total", (void **) &qov_pcm_total},
214 {"ov_read", (void **) &qov_read},
218 // Handles for the Vorbis and Vorbisfile DLLs
219 static dllhandle_t vo_dll = NULL;
220 static dllhandle_t vf_dll = NULL;
225 ogg_int64_t ind, buffsize;
229 static size_t ovcb_read (void *ptr, size_t size, size_t nb, void *datasource)
231 ov_decode_t *ov_decode = (ov_decode_t*)datasource;
234 remain = ov_decode->buffsize - ov_decode->ind;
237 len = remain - remain % size;
239 memcpy (ptr, ov_decode->buffer + ov_decode->ind, len);
240 ov_decode->ind += len;
245 static int ovcb_seek (void *datasource, ogg_int64_t offset, int whence)
247 ov_decode_t *ov_decode = (ov_decode_t*)datasource;
254 offset += ov_decode->ind;
257 offset += ov_decode->buffsize;
262 if (offset < 0 || offset > ov_decode->buffsize)
265 ov_decode->ind = offset;
269 static int ovcb_close (void *ov_decode)
274 static long ovcb_tell (void *ov_decode)
276 return ((ov_decode_t*)ov_decode)->ind;
281 =================================================================
285 =================================================================
292 Try to load the VorbisFile DLL
295 qboolean OGG_OpenLibrary (void)
297 const char* dllnames_vo [] =
301 #elif defined(MACOSX)
309 const char* dllnames_vf [] =
313 #elif defined(MACOSX)
314 "libvorbisfile.dylib",
316 "libvorbisfile.so.3",
326 // COMMANDLINEOPTION: Sound: -novorbis disables ogg vorbis sound support
327 if (COM_CheckParm("-novorbis"))
331 // We need to load both by hand because some OSes seem to not load
332 // the vorbis DLL automatically when loading the VorbisFile DLL
333 if (! Sys_LoadLibrary (dllnames_vo, &vo_dll, NULL) ||
334 ! Sys_LoadLibrary (dllnames_vf, &vf_dll, oggvorbisfuncs))
336 Sys_UnloadLibrary (&vo_dll);
337 Con_Printf ("Ogg Vorbis support disabled\n");
341 Con_Printf ("Ogg Vorbis support enabled\n");
350 Unload the VorbisFile DLL
353 void OGG_CloseLibrary (void)
355 Sys_UnloadLibrary (&vf_dll);
356 Sys_UnloadLibrary (&vo_dll);
361 =================================================================
365 =================================================================
368 #define STREAM_BUFFER_DURATION 1.5f // 1.5 sec
370 // We work with 1 sec sequences, so this buffer must be able to contain
371 // 1 sec of sound of the highest quality (48 KHz, 16 bit samples, stereo)
372 static qbyte resampling_buffer [48000 * 2 * 2];
375 // Per-sfx data structure
381 } ogg_stream_persfx_t;
383 // Per-channel data structure
387 ov_decode_t ov_decode;
389 sfxbuffer_t sb; // must be at the end due to its dynamically allocated size
390 } ogg_stream_perchannel_t;
393 static const ov_callbacks callbacks = {ovcb_read, ovcb_seek, ovcb_close, ovcb_tell};
400 static const sfxbuffer_t* OGG_FetchSound (channel_t* ch, unsigned int start, unsigned int nbsamples)
402 ogg_stream_perchannel_t* per_ch;
405 ogg_stream_persfx_t* per_sfx;
406 int newlength, done, ret, bigendian;
410 per_ch = ch->fetcher_data;
412 per_sfx = sfx->fetcher_data;
413 buff_len = ceil (STREAM_BUFFER_DURATION * (sfx->format.speed * sfx->format.width * sfx->format.channels));
415 // If there's no fetcher structure attached to the channel yet
418 ogg_stream_persfx_t* per_sfx;
420 per_ch = Mem_Alloc (sfx->mempool, sizeof (*per_ch) - sizeof (per_ch->sb.data) + buff_len);
421 per_sfx = sfx->fetcher_data;
423 // Open it with the VorbisFile API
424 per_ch->ov_decode.buffer = per_sfx->file;
425 per_ch->ov_decode.ind = 0;
426 per_ch->ov_decode.buffsize = per_sfx->filesize;
427 if (qov_open_callbacks (&per_ch->ov_decode, &per_ch->vf, NULL, 0, callbacks) < 0)
429 Con_Printf("error while reading Ogg Vorbis stream \"%s\"\n", sfx->name);
434 per_ch->sb.offset = 0;
435 per_ch->sb.length = 0;
438 ch->fetcher_data = per_ch;
442 factor = per_sfx->format.width * per_sfx->format.channels;
444 // If the stream buffer can't contain that much samples anyway
445 if (nbsamples * factor > buff_len)
447 Con_Printf ("OGG_FetchSound: stream buffer too small (%u bytes required)\n", nbsamples * factor);
451 // If the data we need has already been decompressed in the sfxbuffer, just return it
452 if (sb->offset <= start && sb->offset + sb->length >= start + nbsamples)
455 newlength = sb->offset + sb->length - start;
457 // If we need to skip some data before decompressing the rest, or if the stream has looped
458 if (newlength < 0 || sb->offset > start)
460 if (qov_pcm_seek (&per_ch->vf, (ogg_int64_t)start) != 0)
467 // Else, move forward the samples we need to keep in the sfxbuffer
470 memmove (sb->data, sb->data + (start - sb->offset) * factor, newlength * factor);
472 sb->length = newlength;
475 // We add exactly 1 sec of sound to the buffer:
476 // 1- to ensure we won't lose any sample during the resampling process
477 // 2- to force one call to OGG_FetchSound per second to regulate the workload
478 if ((sfx->format.speed + sb->length) * factor > buff_len)
480 Con_Printf ("OGG_FetchSound: stream buffer overflow (%u bytes / %u)\n",
481 (sfx->format.speed + sb->length) * factor, buff_len);
484 newlength = per_sfx->format.speed * factor; // 1 sec of sound before resampling
486 // Decompress in the resampling_buffer
487 #if BYTE_ORDER == LITTLE_ENDIAN
493 while ((ret = qov_read (&per_ch->vf, &resampling_buffer[done], (int)(newlength - done), bigendian, 2, 1, &per_ch->bs)) > 0)
496 // Resample in the sfxbuffer
497 newlength = ResampleSfx (resampling_buffer, (size_t)done / factor, &per_sfx->format, sb->data + sb->length * factor, sfx->name);
498 sb->length += newlength;
509 static void OGG_FetchEnd (channel_t* ch)
511 ogg_stream_perchannel_t* per_ch;
513 per_ch = ch->fetcher_data;
516 // Free the ogg vorbis decoder
517 qov_clear (&per_ch->vf);
520 ch->fetcher_data = NULL;
524 static const snd_fetcher_t ogg_fetcher = { OGG_FetchSound, OGG_FetchEnd };
531 Load an Ogg Vorbis file into memory
534 qboolean OGG_LoadVorbisFile (const char *filename, sfx_t *s)
537 ov_decode_t ov_decode;
540 ogg_int64_t len, buff_len;
545 Mem_FreePool (&s->mempool);
546 s->mempool = Mem_AllocPool (s->name, 0, NULL);
549 data = FS_LoadFile (filename, s->mempool, false);
552 Mem_FreePool (&s->mempool);
556 Con_DPrintf ("Loading Ogg Vorbis file \"%s\"\n", filename);
558 // Open it with the VorbisFile API
559 ov_decode.buffer = data;
561 ov_decode.buffsize = fs_filesize;
562 if (qov_open_callbacks (&ov_decode, &vf, NULL, 0, callbacks) < 0)
564 Con_Printf ("error while opening Ogg Vorbis file \"%s\"\n", filename);
565 Mem_FreePool (&s->mempool);
569 // Get the stream information
570 vi = qov_info (&vf, -1);
571 if (vi->channels < 1 || vi->channels > 2)
573 Con_Printf("%s has an unsupported number of channels (%i)\n",
574 s->name, vi->channels);
576 Mem_FreePool (&s->mempool);
580 len = qov_pcm_total (&vf, -1) * vi->channels * 2; // 16 bits => "* 2"
582 // Decide if we go for a stream or a simple PCM cache
583 buff_len = ceil (STREAM_BUFFER_DURATION * (shm->format.speed * 2 * vi->channels));
584 if (snd_streaming.integer && len > fs_filesize + 3 * buff_len)
586 ogg_stream_persfx_t* per_sfx;
588 Con_DPrintf ("\"%s\" will be streamed\n", filename);
589 per_sfx = Mem_Alloc (s->mempool, sizeof (*per_sfx));
590 per_sfx->file = data;
591 per_sfx->filesize = fs_filesize;
593 per_sfx->format.speed = vi->rate;
594 per_sfx->format.width = 2; // We always work with 16 bits samples
595 per_sfx->format.channels = vi->channels;
596 s->format.speed = shm->format.speed;
597 s->format.width = per_sfx->format.width;
598 s->format.channels = per_sfx->format.channels;
600 s->fetcher_data = per_sfx;
601 s->fetcher = &ogg_fetcher;
603 s->flags |= SFXFLAG_STREAMED;
604 s->total_length = (size_t)len / per_sfx->format.channels / 2 * ((float)s->format.speed / per_sfx->format.speed);
614 Con_DPrintf ("\"%s\" will be cached\n", filename);
617 buff = Mem_Alloc (s->mempool, (int)len);
620 #if BYTE_ORDER == LITTLE_ENDIAN
625 while ((ret = qov_read (&vf, &buff[done], (int)(len - done), bigendian, 2, 1, &bs)) > 0)
628 // Calculate resampled length
629 len = (double)done * (double)shm->format.speed / (double)vi->rate;
632 sb = Mem_Alloc (s->mempool, (size_t)len + sizeof (*sb) - sizeof (sb->data));
633 s->fetcher_data = sb;
634 s->fetcher = &wav_fetcher;
635 s->format.speed = vi->rate;
636 s->format.width = 2; // We always work with 16 bits samples
637 s->format.channels = vi->channels;
639 s->flags &= ~SFXFLAG_STREAMED;
641 sb->length = ResampleSfx (buff, (size_t)done / (vi->channels * 2), &s->format, sb->data, s->name);
642 s->format.speed = shm->format.speed;
643 s->total_length = sb->length;