Displaying 2 results from an estimated 2 matches for "ao_irix".
2004 Oct 22
0
libao-0.8.5 patch
...uts to the Enlightened Sound Daemon.",
+ NULL,
AO_FMT_NATIVE,
40,
ao_esd_options,
@@ -104,7 +105,8 @@
if (!strcmp(key, "host")) {
free(internal->host);
internal->host = strdup(value);
- }
+ } else
+ return 0;
return 1;
}
diff -ur libao-0.8.5/src/plugins/irix/ao_irix.c libao-0.8.5.new/src/plugins/irix/ao_irix.c
--- libao-0.8.5/src/plugins/irix/ao_irix.c 2002-04-12 16:22:26.000000000 +0200
+++ libao-0.8.5.new/src/plugins/irix/ao_irix.c 2004-10-22 11:54:17.000000000 +0200
@@ -53,6 +53,7 @@
"irix",
"Jim Miller <???@sgi.com>",
"...
2002 Apr 11
1
libao: IRIX patch
Here's a patch for the current CVS version of libao which makes the IRIX
plug-in compile and work properly.
Michael
--- ./src/plugins/irix/ao_irix.c Fri Aug 3 19:56:17 2001
+++ ../libao-0.8.2/./src/plugins/irix/ao_irix.c Thu Apr 11 20:16:41 2002
@@ -36,12 +36,13 @@
#include <ao/ao.h>
+#define AO_IRIX_BUFFER_SIZE 32768
typedef struct ao_irix_internal {
- static ALport alport = 0;
- static ALconfig alconfig = 0;
- static int byte...