search for: ao_alsa09

Displaying 3 results from an estimated 3 matches for "ao_alsa09".

Did you mean: ao_alsa
2002 Jul 27
0
libao patch
...8.2-new/src: config.o Only in libao-0.8.2-new/src: libao.la Only in libao-0.8.2-new/src/plugins: Makefile Only in libao-0.8.2-new/src/plugins/alsa: Makefile Only in libao-0.8.2-new/src/plugins/alsa09: .libs Only in libao-0.8.2-new/src/plugins/alsa09: Makefile diff -ur libao-0.8.2/src/plugins/alsa09/ao_alsa09.c libao-0.8.2-new/src/plugins/alsa09/ao_alsa09.c --- libao-0.8.2/src/plugins/alsa09/ao_alsa09.c Tue Dec 18 17:39:24 2001 +++ libao-0.8.2-new/src/plugins/alsa09/ao_alsa09.c Sat Apr 20 21:41:39 2002 @@ -90,17 +90,33 @@ return &ao_alsa_info; } +static int get_alsa_environment_buf_size(void) +...
2003 Mar 26
1
libao alsa output
...#39;ve found out that removing the call to *_set_periods and *_set_period_size is a better solution to the problem. It seems that the alsa defaults are better than what ever fine tuning the code is trying to do. patch: --- /var/tmp/portage/libao-0.8.3/work/libao-0.8.3/src/plugins/alsa09/ ao_alsa09.c 2001-12-19 07:39:24.000000000 +0900 +++ ao_alsa09.c 2003-03-23 17:30:40.000000000 +0900 @@ -192,18 +192,6 @@ if (err < 0) goto error; - cmd = "snd_pcm_hw_params_set_period_size"; - err = snd_pcm_hw_params_set_period_size(internal->pcm_handle, hwparam...
2004 Oct 22
0
libao-0.8.5 patch
...itecture version 0.5.x.", + NULL, AO_FMT_NATIVE, 34, ao_alsa_options, @@ -110,6 +111,8 @@ internal->dev = atoi(value); else if (!strcmp(key, "buf_size")) internal->buf_size = atoi(value); + else + return 0; return 1; } diff -ur libao-0.8.5/src/plugins/alsa09/ao_alsa09.c libao-0.8.5.new/src/plugins/alsa09/ao_alsa09.c --- libao-0.8.5/src/plugins/alsa09/ao_alsa09.c 2003-10-13 04:12:32.000000000 +0200 +++ libao-0.8.5.new/src/plugins/alsa09/ao_alsa09.c 2004-10-22 12:06:26.000000000 +0200 @@ -75,9 +75,10 @@ { AO_TYPE_LIVE, "Advanced Linux Sound Architecture...