Displaying 3 results from an estimated 3 matches for "pecif".
Did you mean:
peci
2001 Mar 31
2
Playing ogg files in C++
Does anyone have a code samples in C++ to play the ogg files. I can’t find
anything anywhere. I was hoping this could be shared since it seems as
though you decode the file and read the byte stream. I can’t find anything
windows api shortcuts. Help!
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a
2004 Oct 31
3
a question about Bitstream Header.
Hi,
I have a question about the format of Theora bitstream header.
It seems to me that there are differences between the specification[1]
(version 2004 Oct 1) and its reference implementation in
libtheora 1.0alpha3 released at 2004 Jun 1.
I mean that... please refer to Section 6.2 'Identification Header Decode'
in that specification[1] and the function '_theora_unpack_info()'
included in 'lib/tople...
2004 Aug 06
1
some portability fixes ...
...there is a compilation option to feed to
cygwin's gcc: "-mno-cygwin" so the preprocessor would get rid of the
usual posix semantics and use only mingw (msvcrt) and some windows
headers. also there is a flag "-mno-win32" to get rid of win32 semantics
and use posix only.
pecifically, the file "vsnprintf.c" has a portability bug (though not
apparent) when compiled in win32. it doesn't distinguish the platform
type and thus include <config.h> inconditionally, whereas on win32 it
should have included <win32config.h> instead. see the patch in
at...