search for: audio_encoding_linear

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

Did you mean: audio_encoding_slinear
2004 Aug 06
0
Sun audio driver for speexdec
...#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_open(char *outFile, int r close(audio_fd); exit(1); } + fout = fdopen(audio_fd, "w"); +#elif defined HAVE_SYS_AUDIOIO_H + audio_info_t info; + int audio...
2008 Apr 04
0
speexdec 1.2.3
...s.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 <speex/speex_header.h> #include <speex/speex_stereo.h> #include <speex/speex_callbacks.h> #define MAX_FRAME_SIZE 2000 #define readint(buf, base) (((buf[base+3]<<24)&0xff00000...
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