search for: ao_raw

Displaying 6 results from an estimated 6 matches for "ao_raw".

2001 Jan 20
0
libao: Raw audio device
...erless, unformatted audio data to the file of your choice. The driver also supports writing to stdout by specifying the output file to be "-". This is the better way to stream uncompressed audio for now, thereby avoiding the headaches contained in wav files. To add the driver: 1) Copy ao_raw.c into ao/src/ 2) Apply ao_raw.patch to the ao/ tree. (Note that this patch also updates the documentation and fixes an error where the esd driver was explained twice in ao/doc/DRIVERS. 3) Apply vorbis-tools_raw.patch to the vorbis-tools/ tree. This just changes documentation and the help functio...
2001 Mar 14
0
Raw driver patch for libao (New Version)
...s output in native, little-endian, and big-endian (to make the .cdr people happy) order. I've now had two different people request this driver, so I know there is some demand for it. Below are the patching directions cut-and-pasted from the original email: To add the driver: 1) Copy ao_raw.c into ao/src/ 2) Apply ao_raw.patch to the ao/ tree. 3) Apply vorbis-tools_raw.patch to the vorbis-tools/ tree. This just changes documentation and the help function for ogg123 to explain the new driver. 4) Rerun autogen.sh in ao/ and recompile. 5)...
2001 Jan 14
1
libao driver stuff
...iver I mentioned in the last email, but noticed that Jack has rearranged some of the guts of ao since I last looked at it. In ao/include/ao/ao.h you define AO_NULL and AO_WAV to be 0 and 1, respectively. If I want to add a raw driver that is compiled into the main library, can I just add #define AO_RAW 2 and then modify ao_initialize to put ao_raw into the driver tree? --- Stan Seibert --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing...
2001 May 08
2
libao AU driver
...============================================== RCS file: /usr/local/cvsroot/ao/include/ao/ao.h,v retrieving revision 1.12 diff -u -r1.12 ao.h --- include/ao/ao.h 2001/05/06 00:13:59 1.12 +++ include/ao/ao.h 2001/05/09 01:39:18 @@ -76,6 +76,7 @@ #define AO_NULL 0 #define AO_WAV 1 #define AO_RAW 2 +#define AO_AU 3 /* --- Functions --- */ Index: src/Makefile.am =================================================================== RCS file: /usr/local/cvsroot/ao/src/Makefile.am,v retrieving revision 1.5 diff -u -r1.5 Makefile.am --- src/Makefile.am 2001/05/06 00:13:59 1.5 +++ src/...
2004 Oct 22
0
libao-0.8.5 patch
...ot;Stan Seibert <volsung@asu.edu>", "This driver does nothing.", + NULL, AO_FMT_NATIVE, 0, ao_null_options, @@ -87,7 +88,8 @@ if (!strcmp(key, "debug")) { internal->debug_output = 1; - } + } else + return 0; return 1; } diff -ur libao-0.8.5/src/ao_raw.c libao-0.8.5.new/src/ao_raw.c --- libao-0.8.5/src/ao_raw.c 2001-09-05 21:34:02.000000000 +0200 +++ libao-0.8.5.new/src/ao_raw.c 2004-10-22 12:57:06.000000000 +0200 @@ -37,6 +37,7 @@ "raw", "Stan Seibert <indigo@aztec.asu.edu>", "Writes raw audio samples to a fi...
2002 Jul 27
0
libao patch
...: Makefile Only in libao-0.8.2-new: libtool Only in libao-0.8.2-new/src: .libs Only in libao-0.8.2-new/src: Makefile Only in libao-0.8.2-new/src: ao_au.lo Only in libao-0.8.2-new/src: ao_au.o Only in libao-0.8.2-new/src: ao_null.lo Only in libao-0.8.2-new/src: ao_null.o Only in libao-0.8.2-new/src: ao_raw.lo Only in libao-0.8.2-new/src: ao_raw.o Only in libao-0.8.2-new/src: ao_wav.lo Only in libao-0.8.2-new/src: ao_wav.o Only in libao-0.8.2-new/src: audio_out.lo Only in libao-0.8.2-new/src: audio_out.o Only in libao-0.8.2-new/src: config.lo Only in libao-0.8.2-new/src: config.o Only in libao-0.8.2-n...