search for: ao_open_fil

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

Did you mean: ao_open_file
2001 Aug 21
2
ao changes
...n changed so that there are now two open() functions ? IMHO the original ao_open() was fine - if you wanted to set the filename for output, you could add an option via ao_append_option and if you wanted to avoid overwriting an existing file, you could stat() it yourself. Having ao_open_live() and ao_open_file() just makes more work for the user of the library for no gain, AFAICT. Rik --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word '...
2001 Aug 21
2
ao changes
...n changed so that there are now two open() functions ? IMHO the original ao_open() was fine - if you wanted to set the filename for output, you could add an option via ao_append_option and if you wanted to avoid overwriting an existing file, you could stat() it yourself. Having ao_open_live() and ao_open_file() just makes more work for the user of the library for no gain, AFAICT. Rik --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word '...
2009 Oct 06
0
[ao] Two patches for libao2
...{ > -- > 1.6.1.2 > > From e905c74eca5c504d1665125df7a9523a685b987f Mon Sep 17 00:00:00 2001 > From: Heikki Orsila <heikki.orsila at iki.fi> > Date: Sun, 30 Aug 2009 23:46:48 +0300 > Subject: [PATCH 2/2] Make driver specific options configurable > > --- > doc/ao_open_file.html | 3 ++- > doc/ao_open_live.html | 3 ++- > doc/config.html | 4 ++++ > libao.conf.5 | 4 ++++ > src/ao_private.h | 3 +++ > src/audio_out.c | 8 ++++++-- > src/config.c | 32 +++++++++++++++++++++++--------- > 7 file...
2004 Oct 22
0
libao-0.8.5 patch
...-In the ao_macosx.c file: in ao_plugin_set_option function has a ao_macosx_internal *internal = (ao_macosx_internal *) device->internal; line. There is no practical meaning. The attached diff file (-u) make the above needed changes on libao-0.8.5 tarball. The "file" option checked in ao_open_file, and skipped all the file-output driver. The "file" option have a precedence over the "filename" option in the ao_open_file, so the calling program may offer a default filename value in the function call parallell to set the user needed filename in the option section. In the ao...