QUOTE
Originally posted by jianxin yan
hi.
could anyone have compiled ogg source code under win2k MSVC6.0?
Yes.
QUOTE
yesterday i had compiled oggenc.exe and oggdrop.exe, but the whole file structure of ogg source code make me puzzled, i had to try them without aim.
It can be a bit confusing at first. I generally work with my own project files anyway (so that I can play with options freely).
In general, each package (see below) is available as a static .lib-file or a dynamic .dll, with or without debug code. For each combination there's a project file and bat file (that compiles that project) in the win32 folder (e.g., in vorbiswin32).
QUOTE
would you give comments about these source code dirrectory usage?(such as AO, ogg, vorbis, ogg_phyon, win32sdk ....)
ao - portable audio output library. Used by ogg123, but since ogg123 won't compile with MSVC it is of little use at the moment.
ogg - low-level bitstream packaging.
vorbis - the vorbis codec.
vorbisfile - easy file-based decoder interface.
vorbisenc - easy encoder setup interface.
ogg_python - Ogg bindings for Python (a script language).
win32sdk - Files used to build the Windows SDK, AFAIK. Haven't looked much at it.
What you really need to use Vorbis is ogg, vorbis, vorbisfile and vorbisenc, and possibly some of the tools (which use the previously mentioned modules).