search for: ao_functions_t

Displaying 2 results from an estimated 2 matches for "ao_functions_t".

2001 May 08
2
libao AU driver
...x: src/audio_out.c =================================================================== RCS file: /usr/local/cvsroot/ao/src/audio_out.c,v retrieving revision 1.14 diff -u -r1.14 audio_out.c --- src/audio_out.c 2001/05/06 00:13:59 1.14 +++ src/audio_out.c 2001/05/09 01:39:18 @@ -56,6 +56,7 @@ extern ao_functions_t ao_null; extern ao_functions_t ao_wav; extern ao_functions_t ao_raw; +extern ao_functions_t ao_au; driver_tree_t *driver_head = NULL; @@ -99,6 +100,7 @@ driver_tree_t *dnull; driver_tree_t *dwav; driver_tree_t *draw; + driver_tree_t *dau; driver_tree_t *plug...
2000 Aug 12
1
libao patch: Minor clean up / Byte-order proposal
...u -r1.1 audio_out.c --- vorbis-tools/libao/audio_out.c 2000/07/22 01:57:05 1.1 +++ vorbis-tools/libao/audio_out.c 2000/08/13 00:30:01 @@ -109,10 +109,6 @@ -/* --- Device Table --- */ - - - /* --- Driver Functions --- */ /* This should have been set by the Makefile */ @@ -169,7 +165,6 @@ ao_functions_t *funcs; ao_internal_t *state; ao_device_t *device; - int dev_id; if (ao_check_driver_id(driver_id)) { @@ -209,37 +204,28 @@ char *copy; char *value_ptr; char *colon; - ao_option_t *op; - int fail = 0; - - copy = strdup(op_str); - - colon = strchr(copy, ':'); - if (colon == N...