search for: have_sys_audioio_h

Displaying 3 results from an estimated 3 matches for "have_sys_audioio_h".

2004 Aug 06
0
Sun audio driver for speexdec
...AC_ARG_ENABLE(ogg, [ --enable-ogg=[yes/no] Turn on or off the use of ogg --- src/speexdec.c.orig Thu Jun 12 01:11:28 2003 +++ src/speexdec.c Thu Jun 12 01:14:31 2003 @@ -56,6 +56,14 @@ #include <sys/stat.h> #include <fcntl.h> #include <sys/ioctl.h> +#elif defined HAVE_SYS_AUDIOIO_H +#include <sys/types.h> +#include <sys/ioctl.h> +#include <sys/audioio.h> +#include <fcntl.h> +#ifndef AUDIO_ENCODING_SLINEAR +#define AUDIO_ENCODING_SLINEAR AUDIO_ENCODING_LINEAR /* Solaris */ +#endif #endif #include <string.h> @@ -166,6 +174,32 @@ FILE *out_file_...
2008 Apr 04
0
speexdec 1.2.3
...clude <fcntl.h> #endif #include <math.h> #ifdef __MINGW32__ #include "wave_out.c" #endif #ifdef HAVE_SYS_SOUNDCARD_H #include <sys/soundcard.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <sys/ioctl.h> #elif defined HAVE_SYS_AUDIOIO_H #include <sys/types.h> #include <fcntl.h> #include <sys/ioctl.h> #include <sys/audioio.h> #ifndef AUDIO_ENCODING_SLINEAR #define AUDIO_ENCODING_SLINEAR AUDIO_ENCODING_LINEAR /* Solaris */ #endif #endif #include <string.h> #include "wav_io.h" #include <sp...
2008 Apr 04
2
speexdec 1.2.3
On Fri, Apr 4, 2008 at 12:19 AM, Jean-Marc Valin <jean-marc.valin at usherbrooke.ca> wrote: > Jahn, Ray (R.) a ?crit : > > > Dear Speex codec community: > > > > I am working on conversion of voice files. I could not figure out how to use speexdec.exe 1.2.3 in piped mode in order to avoid the creation of the potentially large intermediate *.wav or *.pcm files. Any