251 lines
5.8 KiB
C
251 lines
5.8 KiB
C
|
#include "quakedef.h"
|
||
|
|
||
|
#ifdef AVAIL_OGGVORBIS
|
||
|
|
||
|
#include <vorbis/vorbisfile.h>
|
||
|
|
||
|
|
||
|
|
||
|
#if defined(_WIN32) && !defined(STATICVORBIS)
|
||
|
#define WINDOWSDYNAMICLINK
|
||
|
#include <windows.h>
|
||
|
HINSTANCE oggvorbislibrary;
|
||
|
#endif
|
||
|
|
||
|
int (*p_ov_open_callbacks) (void *datasource, OggVorbis_File *vf, char *initial, long ibytes, ov_callbacks callbacks);
|
||
|
int (*p_ov_clear)(OggVorbis_File *vf);
|
||
|
vorbis_info *(*p_ov_info)(OggVorbis_File *vf,int link);
|
||
|
vorbis_comment *(*p_ov_comment) (OggVorbis_File *vf,int link);
|
||
|
ogg_int64_t (*p_ov_pcm_total)(OggVorbis_File *vf,int i);
|
||
|
long (*p_ov_read)(OggVorbis_File *vf,char *buffer,int length,
|
||
|
int bigendianp,int word,int sgned,int *bitstream);
|
||
|
|
||
|
|
||
|
typedef struct {
|
||
|
unsigned char *start; //file positions
|
||
|
unsigned long length;
|
||
|
unsigned long pos;
|
||
|
|
||
|
qboolean failed;
|
||
|
|
||
|
sfxcache_t mediasc;
|
||
|
char *mediaaswavdata;
|
||
|
int mediaaswavpos;
|
||
|
int mediaaswavbuflen;
|
||
|
|
||
|
OggVorbis_File vf;
|
||
|
|
||
|
sfx_t *s;
|
||
|
} ovdecoderbuffer_t;
|
||
|
|
||
|
int OV_DecodeSome(sfx_t *s, int minlength);
|
||
|
void OV_CancelDecoder(sfx_t *s);
|
||
|
int OV_StartDecode(unsigned char *start, unsigned long length, ovdecoderbuffer_t *buffer);
|
||
|
|
||
|
qbyte *COM_LoadFile (char *path, int usehunk);
|
||
|
|
||
|
sfxcache_t *S_LoadOVSound (sfx_t *s)
|
||
|
{
|
||
|
char namebuffer[MAX_OSPATH];
|
||
|
char *name;
|
||
|
ovdecoderbuffer_t *buffer;
|
||
|
FILE *f;
|
||
|
|
||
|
char *data;
|
||
|
qboolean telluser;
|
||
|
int len;
|
||
|
|
||
|
name = s->name;
|
||
|
|
||
|
if (name[0] == '#')
|
||
|
strcpy(namebuffer, &name[1]);
|
||
|
else
|
||
|
sprintf (namebuffer, "sound/%s", name);
|
||
|
|
||
|
len = strlen(namebuffer);
|
||
|
telluser = strcmp(namebuffer+len-4, ".wav");
|
||
|
if (!telluser)
|
||
|
strcpy(namebuffer+len-4, ".ogg");
|
||
|
|
||
|
//try opening from a quake path
|
||
|
data = COM_LoadMallocFile(namebuffer);
|
||
|
if (!data)
|
||
|
{//if that didn't work, try opening direct from exe - this is media after all.
|
||
|
|
||
|
if (!telluser)
|
||
|
return NULL; //never go out of the quake path for a wav replacement.
|
||
|
#ifndef _WIN32
|
||
|
char unixname[128];
|
||
|
if (name[1] == ':' && name[2] == '\\') //convert from windows to a suitable alternative.
|
||
|
{
|
||
|
sprintf(unixname, "/mnt/%c/%s", name[0]-'A'+'a', name+3);
|
||
|
name = unixname;
|
||
|
while (*name)
|
||
|
{
|
||
|
if (*name == '\\')
|
||
|
*name = '/';
|
||
|
name++;
|
||
|
}
|
||
|
name = unixname;
|
||
|
}
|
||
|
#endif
|
||
|
if ((f = fopen(name, "rb")))
|
||
|
{
|
||
|
com_filesize = COM_filelength(f);
|
||
|
data = BZ_Malloc(com_filesize);
|
||
|
fread(data, 1, com_filesize, f);
|
||
|
fseek(f, 0, SEEK_SET);
|
||
|
fclose(f);
|
||
|
f = NULL;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
Con_SafePrintf ("Couldn't load %s\n", namebuffer);
|
||
|
return NULL;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (!s->decoder)
|
||
|
s->decoder = Z_Malloc(sizeof(ovdecoderbuffer_t) + sizeof(sfxdecode_t));
|
||
|
buffer = (ovdecoderbuffer_t*)(s->decoder+1);
|
||
|
|
||
|
buffer->mediaaswavpos=0;
|
||
|
buffer->mediasc.length=0;
|
||
|
buffer->s = s;
|
||
|
s->decoder->buf = buffer;
|
||
|
s->decoder->decodemore = OV_DecodeSome;
|
||
|
s->decoder->abort = OV_CancelDecoder;
|
||
|
|
||
|
if (!OV_StartDecode(data, com_filesize, buffer))
|
||
|
{
|
||
|
if (buffer->mediaaswavdata)
|
||
|
{
|
||
|
free(buffer->mediaaswavdata);
|
||
|
|
||
|
buffer->mediaaswavdata=NULL;
|
||
|
}
|
||
|
Z_Free(s->decoder);
|
||
|
s->decoder=NULL;
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
s->decoder->decodemore(s, 100);
|
||
|
|
||
|
s->cache.fake=true;
|
||
|
return buffer->s->cache.data;
|
||
|
}
|
||
|
|
||
|
int OV_DecodeSome(sfx_t *s, int minlength)
|
||
|
{
|
||
|
ovdecoderbuffer_t *dec = s->decoder->buf;
|
||
|
int bytesread;
|
||
|
|
||
|
// while ((bytesread = ov_read(&dec->vf, s->cache+dec->, int length, int bigendianp, int word, int sgned, int *bitstream))
|
||
|
// ov_read(
|
||
|
return 0;
|
||
|
}
|
||
|
void OV_CancelDecoder(sfx_t *s)
|
||
|
{
|
||
|
ovdecoderbuffer_t *buffer;
|
||
|
buffer = s->decoder->buf;
|
||
|
p_ov_clear (&buffer->vf);
|
||
|
}
|
||
|
|
||
|
static size_t read_func (void *ptr, size_t size, size_t nmemb, void *datasource)
|
||
|
{
|
||
|
ovdecoderbuffer_t *buffer = datasource;
|
||
|
int spare = buffer->length - buffer->pos;
|
||
|
|
||
|
if (size*nmemb > spare)
|
||
|
nmemb = spare / size;
|
||
|
memcpy(ptr, &buffer->start[buffer->pos], size*nmemb);
|
||
|
buffer->pos += size*nmemb;
|
||
|
return nmemb;
|
||
|
}
|
||
|
|
||
|
static int seek_func (void *datasource, ogg_int64_t offset, int whence)
|
||
|
{
|
||
|
ovdecoderbuffer_t *buffer = datasource;
|
||
|
switch(whence)
|
||
|
{
|
||
|
case SEEK_SET:
|
||
|
buffer->pos = offset;
|
||
|
break;
|
||
|
case SEEK_END:
|
||
|
buffer->pos = buffer->length+offset;
|
||
|
break;
|
||
|
case SEEK_CUR:
|
||
|
buffer->pos+=offset;
|
||
|
break;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int close_func (void *datasource)
|
||
|
{
|
||
|
ovdecoderbuffer_t *buffer = datasource;
|
||
|
free(buffer->start);
|
||
|
buffer->start=0;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static long tell_func (void *datasource)
|
||
|
{
|
||
|
ovdecoderbuffer_t *buffer = datasource;
|
||
|
return buffer->pos;
|
||
|
}
|
||
|
static ov_callbacks callbacks = {
|
||
|
read_func,
|
||
|
seek_func,
|
||
|
close_func,
|
||
|
tell_func,
|
||
|
};
|
||
|
qboolean OV_StartDecode(unsigned char *start, unsigned long length, ovdecoderbuffer_t *buffer)
|
||
|
{
|
||
|
#ifdef WINDOWSDYNAMICLINK
|
||
|
if (!oggvorbislibrary)
|
||
|
{
|
||
|
oggvorbislibrary = LoadLibrary("vorbisfile.dll");
|
||
|
if (!oggvorbislibrary)
|
||
|
{
|
||
|
Con_Printf("Couldn't load DLL: \"vorbisfile.dll\".\n");
|
||
|
return false;
|
||
|
}
|
||
|
p_ov_open_callbacks = (void *)GetProcAddress(oggvorbislibrary, "ov_open_callbacks");
|
||
|
p_ov_comment = (void *)GetProcAddress(oggvorbislibrary, "ov_comment");
|
||
|
p_ov_pcm_total = (void *)GetProcAddress(oggvorbislibrary, "ov_pcm_total");
|
||
|
p_ov_clear = (void *)GetProcAddress(oggvorbislibrary, "ov_clear");
|
||
|
p_ov_info = (void *)GetProcAddress(oggvorbislibrary, "ov_info");
|
||
|
}
|
||
|
#else
|
||
|
p_ov_open_callbacks = ov_open_callbacks;
|
||
|
#endif
|
||
|
|
||
|
buffer->start = start;
|
||
|
buffer->length = length;
|
||
|
buffer->pos = 0;
|
||
|
if (p_ov_open_callbacks(buffer, &buffer->vf, NULL, 0, callbacks))
|
||
|
{
|
||
|
Con_Printf("Input does not appear to be an Ogg bitstream.\n");
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/* Throw the comments plus a few lines about the bitstream we're
|
||
|
decoding */
|
||
|
{
|
||
|
char **ptr=p_ov_comment(&buffer->vf,-1)->user_comments;
|
||
|
vorbis_info *vi=p_ov_info(&buffer->vf,-1);
|
||
|
while(*ptr){
|
||
|
Con_Printf("%s\n",*ptr);
|
||
|
++ptr;
|
||
|
}
|
||
|
Con_Printf("\nBitstream is %d channel, %ldHz\n",vi->channels,vi->rate);
|
||
|
Con_Printf("\nDecoded length: %ld samples\n",
|
||
|
(long)p_ov_pcm_total(&buffer->vf,-1));
|
||
|
Con_Printf("Encoded by: %s\n\n",p_ov_comment(&buffer->vf,-1)->vendor);
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
#endif
|
||
|
|