search for: speex_format

Displaying 4 results from an estimated 4 matches for "speex_format".

2003 Dec 11
1
Problems building vorbis tools 1.0.1
...g solved this, I get a new error: --- gcc -O20 -ffast-math -fsigned-char -o ogg123 audio.o buffer.o callbacks.o cfgfile_options.o cmdline_options.o file_transport.o format.o http_transport.o ogg123.o oggvorbis_format.o playlist.o status.o transport.o vorbis_comments.o flac_format.o easyflac.o speex_format.o ../share/libutf8.a ../share/libgetopt.a /usr/local/lib/libvorbisfile.so /usr/local/lib/libvorbis.so /usr/local/lib/libao.so -lnsl /usr/lib/libcurl.so -L/tmp/curl-7.10.7/lib -lssl -lcrypto -ldl -lz -lpthread /usr/lib/libOggFLAC.so -L/usr/lib /usr/lib/libFLAC.so /usr/local/lib/libogg.so /usr/l...
2006 Jul 13
0
[vorbis-tools] Some patches coming from Debian bugs
...******************************************/ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <stdio.h> #include <string.h> -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif #include "transport.h" #include "i18n.h" Index: ogg123/speex_format.c =================================================================== --- ogg123/speex_format.c (revision 11702) +++ ogg123/speex_format.c (working copy) @@ -15,6 +15,10 @@ ********************************************************************/ +#ifdef HAVE_CONFIG_H +#include <config.h> +...
2006 Jul 13
0
[vorbis-tools] Some patches coming from Debian bugs
...******************************************/ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <stdio.h> #include <string.h> -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif #include "transport.h" #include "i18n.h" Index: ogg123/speex_format.c =================================================================== --- ogg123/speex_format.c (revision 11702) +++ ogg123/speex_format.c (working copy) @@ -15,6 +15,10 @@ ********************************************************************/ +#ifdef HAVE_CONFIG_H +#include <config.h> +...
2005 Jun 04
0
Allignment of vorbis, flac and speex headers
...th "vorbis" and "fLaC" start at char 29 (the 30th char in the file) and "speex " starts at char 28 (the 29th char in the file). Speex appears to correlate with the documents supplied and the other two not. Speex ---------- In the file at \vorbis-tools-1.0.1\ogg123\speex_format.c I find the following int speex_can_decode (data_source_t *source) { char buf[36]; int len; len = source->transport->peek(source, buf, sizeof(char), 36); if (len >= 32 && memcmp(buf, "OggS", 4) == 0 && memcmp(buf+28, "Speex ", 8) ==...