lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


for a nice portable soundfile library, you might also have a peak at libsndfile:

http://www.mega-nerd.com/libsndfile/

and by the same guy, secret rabbit code (libsamplerate):

http://www.mega-nerd.com/SRC/

and for portable audio i/o have a look at portaudio:

http://www.portaudio.com/

both small libs which do one thing and do them well, imho.
don't know if they'll do what you want though, i have no idea what "voip work" is.

cheers,
_c


On 08/01/2005, at 9:28 PM, Adrian Sietsma wrote:

Philippe Lhoste wrote:
Pure Win32 or portable to Linux that you mention above?

My initial desire is for a windows (.dll) library.
The question is : is it better to have cross-compilable c code,
or a defined ui / table structure, and dedicated platform libraries ?

a pure win32 binding is much simpler than piggybacking on a large OS multiplatform library, which still won't support (palm, ... device of choice, etc)

I have no experience with it, but I often see references to OpenAL for audio uses: http://www.openal.org/

i'll take a peek. thanx

Adrian