1
0
forked from 0ad/0ad
0ad/source/lib/res/sound/ogghack.cpp
janwas 22e4d2fd98 # win/macosx compat, add hooks to disable OpenGL feature usage
config: add 2 parameters to allow disabling s3tc/auto mipmap gen
wpthread: add support for named semaphores (required for macosx compat)
openal, ogghack: remove direct use of __APPLE__ macro (replace with
OS_MACOSX)
GraphicsSetupHandlers.cpp: fix incorrect usage of OS_ macros (they're
always defined, so the test should be if their value is != 0)

This was SVN commit r5316.
2007-09-02 21:44:56 +00:00

181 lines
3.1 KiB
C++

#include "precompiled.h"
#include <string>
#include <iostream>
#include <deque>
#include <algorithm>
#include <cassert>
#if OS_MACOSX
#include <OpenAL/al.h>
#else
#include <AL/al.h>
#endif
#include <vorbis/vorbisfile.h>
#include "ogghack.h" // HACK: must be included after al.h (bad interface)
#include "lib/sysdep/cpu.h"
#if MSC_VERSION
# ifdef NDEBUG
# pragma comment(lib, "vorbisfile.lib")
# else
# pragma comment(lib, "vorbisfile_d.lib")
# endif
#endif
#define BUFFER_SIZE (4096 * 4)
struct Buf
{
void* p;
size_t size;
size_t left;
size_t pos;
Buf(void* _p, size_t _size)
{
p = _p;
size = _size;
left = _size;
pos = 0;
}
};
typedef std::deque<Buf> IncomingBufs;
///////////////////////////////////////////////////////////////////////////////
//
// OGG CALLBACKS
//
///////////////////////////////////////////////////////////////////////////////
size_t read_func(void* ptr, size_t elements, size_t el_size, void* datasource)
{
IncomingBufs* incoming_bufs = (IncomingBufs*)datasource;
size_t size = elements*el_size;
size_t total_read = 0;
while(!incoming_bufs->empty())
{
Buf& b = incoming_bufs->front();
size_t copy_size = std::min(b.left, size);
cpu_memcpy(ptr, (char*)b.p+b.pos, copy_size);
total_read += copy_size;
b.pos += copy_size;
b.left -= copy_size;
if(b.left > 0)
break;
free(b.p);
incoming_bufs->pop_front();
}
return total_read;
}
int seek_func(void* UNUSED(datasource), ogg_int64_t UNUSED(offset), int UNUSED(whence))
{
return -1; // libvorbisfile: indicate "not implemented"
}
int close_func(void* UNUSED(datasource))
{
return 0;
}
struct Ogg
{
OggVorbis_File oggStream;
vorbis_info* vorbisInfo;
vorbis_comment* vorbisComment;
IncomingBufs incoming_bufs;
};
void ogg_give_raw(void* _o, void* p, size_t size)
{
Ogg* o = (Ogg*)_o;
IncomingBufs* incoming_bufs = &o->incoming_bufs;
void* copy = malloc(size);
cpu_memcpy(copy, p, size);
incoming_bufs->push_back(Buf(copy, size));
}
void* ogg_create()
{
return new Ogg;
}
void ogg_open(void* _o, ALenum& fmt, ALsizei& freq)
{
Ogg* o = (Ogg*)_o;
ov_callbacks cbs = { read_func, seek_func, close_func, 0 };
void* datasource = &o->incoming_bufs;
if(ov_open_callbacks(datasource, &o->oggStream, NULL, 0, cbs) < 0)
{
debug_warn("ov_open failed");
}
o->vorbisInfo = ov_info(&o->oggStream, -1);
o->vorbisComment = ov_comment(&o->oggStream, -1);
if(o->vorbisInfo->channels == 1)
fmt = AL_FORMAT_MONO16;
else
fmt = AL_FORMAT_STEREO16;
freq = o->vorbisInfo->rate;
}
void ogg_release(void* _o)
{
Ogg* o = (Ogg*)_o;
ov_clear(&o->oggStream);
delete o;
}
size_t ogg_read(void* _o, void* buf, size_t max_size)
{
Ogg* o = (Ogg*)_o;
size_t bytes_written = 0;
while(bytes_written < max_size)
{
int section; // unused
char* pos = (char*)buf + bytes_written;
size_t left_in_buf = max_size - bytes_written;
long result = ov_read(&o->oggStream, pos, (int)left_in_buf , 0,2,1, &section);
if(result > 0)
bytes_written += result;
else if(result < 0)
debug_warn("ogg read error");
// clean break - end of data
else
break;
}
return bytes_written;
}