search for: ao_device_t

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

Did you mean: ao_device
2001 Sep 02
1
ao-python 0.0.2 not building under latest libs
...-I /usr/local/include -I/usr/include/python1.5 -c src/aomodule.c -o build/temp.linux-i686-1.5/src/aomodule.o In file included from src/aomodule.c:1: src/aomodule.h:108:8: warning: extra tokens at end of #endif directive In file included from src/aomodule.c:1: src/aomodule.h:11: parse error before `ao_device_t' src/aomodule.h:11: warning: no semicolon at end of struct or union src/aomodule.h:12: warning: data definition has no type or storage class src/aomodule.h:16: parse error before `*' src/aomodule.h:16: warning: data definition has no type or storage class src/aomodule.h:19: parse error befo...
2000 Aug 12
1
libao patch: Minor clean up / Byte-order proposal
...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 == NULL) - fail = 1; - else - { - value_ptr = co...