Displaying 5 results from an estimated 5 matches for "ao_nul".
Did you mean:
ao_null
2000 Aug 12
1
libao patch: Minor clean up / Byte-order proposal
...@
else
copy_len = s->buf_size-s->buf_end;
- memcpy(s->buf + s->buf_end,
- output_samples + packed,
- copy_len);
+ memcpy(s->buf + s->buf_end, samples + packed, copy_len);
packed += copy_len;
s->buf_end += copy_len;
Index: vorbis-tools/libao/ao_null.c
===================================================================
RCS file: /usr/local/cvsroot/vorbis/vorbis-tools/libao/ao_null.c,v
retrieving revision 1.1
diff -u -r1.1 ao_null.c
--- vorbis-tools/libao/ao_null.c 2000/07/22 01:57:05 1.1
+++ vorbis-tools/libao/ao_null.c 2000/08/13 00:30:01
@@...
2001 May 08
2
libao AU driver
...]
Index: include/ao/ao.h
===================================================================
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
--- sr...
2004 Oct 22
0
libao-0.8.5 patch
...ULL, /* No options */
@@ -115,7 +116,12 @@
static int ao_au_set_option(ao_device *device, const char *key,
const char *value)
{
- return 1; /* No options! */
+ if (!strcmp(key, "file"))
+ ;
+ else
+ return 0; /* No options! */
+
+ return 1;
}
diff -ur libao-0.8.5/src/ao_null.c libao-0.8.5.new/src/ao_null.c
--- libao-0.8.5/src/ao_null.c 2001-12-18 23:39:23.000000000 +0100
+++ libao-0.8.5.new/src/ao_null.c 2004-10-22 12:13:26.000000000 +0200
@@ -37,6 +37,7 @@
"null",
"Stan Seibert <volsung@asu.edu>",
"This driver does nothing.",...
2001 Jan 14
1
libao driver stuff
I'm also working on writing the raw driver 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/
O...
2002 Jul 27
0
libao patch
...le
Only in libao-0.8.2-new/include: Makefile
Only in libao-0.8.2-new/include/ao: 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...