search for: ao_info_t

Displaying 4 results from an estimated 4 matches for "ao_info_t".

2001 Jan 02
0
ogg123: close_dsp_on_suspend and next_on_SIGUSR1 patches submission
...evices(void) +{ + int bits, rate, channels; + devices *current; + + /* Open all of the devices */ + bits = 16; + rate = 44100; + channels = 2; + current = param.outdevices; + + if (param.quiet < 1) + fprintf(stderr, "Opening devices...\n"); + + while (current != NULL) { + ao_info_t *info = ao_get_driver_info(current->driver_id); + + if (param.quiet < 1) { + fprintf(stderr, "Device: %s\n", info->name); + fprintf(stderr, "Author: %s\n", info->author); + fprintf(stderr, "Comments: %s\n", info->comment); + } +...
2000 Dec 30
1
selecting driver for ao
I added a couple of functions to my copy of ao. int ao_get_driver_count(void); const char * ao_get_driver_name(int index); With these, I can get a list of drivers and give the user a choice by using radio buttons, e.g. [ ] alsa [*] oss [ ] esd [ ] null [ ] wav This is a lot nicer than just asking them to enter the name of the driver. Here's the code I added to audio_out.c: const char *
2001 Sep 02
1
ao-python 0.0.2 not building under latest libs
...parse error before `)' src/aomodule.c: At top level: src/aomodule.c:95: parse error before `*' src/aomodule.c: In function `py_ao_dealloc': src/aomodule.c:97: `self' undeclared (first use in this function) src/aomodule.c: In function `py_ao_get_driver_info': src/aomodule.c:125: `ao_info_t' undeclared (first use in this function) src/aomodule.c:125: `info' undeclared (first use in this function) src/aomodule.c:126: parse error before `*' src/aomodule.c:131: `ao_self' undeclared (first use in this function) src/aomodule.c:131: parse error before `)' src/aomodule.c:...
2000 Dec 27
1
ao_arts
Hi, I've written an ao plugin for aRts, the soundserver that comes with KDE. Any chance of including this in the ao distribution ? Pretty please ? :) Sources and patches attached. This is a very simple plugin because it uses the easy-to-use 'artsc' C wrapper that aRts installs. configure.in.diff is for ao/configure.in Makefile.am.diff is for ao/src/plugins/Makefile.am Makefile.am