diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-11-27 19:04:04 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-11-27 19:04:04 +0000 |
commit | 56d19553ddd5e8246abebca7384d4df9aafeb9c9 (patch) | |
tree | 5c64d8fa3f4b43412b5a4e4ae50118851d9ccaa6 /media-libs/libao/files/libao-0.8.8-alsa09-buffertime-milliseconds.patch | |
parent | Fixed quoting. (diff) | |
download | gentoo-2-56d19553ddd5e8246abebca7384d4df9aafeb9c9.tar.gz gentoo-2-56d19553ddd5e8246abebca7384d4df9aafeb9c9.tar.bz2 gentoo-2-56d19553ddd5e8246abebca7384d4df9aafeb9c9.zip |
Version bump wrt #200322, thanks to Rafał Mużyło for reporting.
(Portage version: 2.1.4_rc3)
Diffstat (limited to 'media-libs/libao/files/libao-0.8.8-alsa09-buffertime-milliseconds.patch')
-rw-r--r-- | media-libs/libao/files/libao-0.8.8-alsa09-buffertime-milliseconds.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/media-libs/libao/files/libao-0.8.8-alsa09-buffertime-milliseconds.patch b/media-libs/libao/files/libao-0.8.8-alsa09-buffertime-milliseconds.patch new file mode 100644 index 000000000000..34cd5d694859 --- /dev/null +++ b/media-libs/libao/files/libao-0.8.8-alsa09-buffertime-milliseconds.patch @@ -0,0 +1,12 @@ +diff -ur libao-0.8.8.orig/src/plugins/alsa09/ao_alsa09.c libao-0.8.8/src/plugins/alsa09/ao_alsa09.c +--- libao-0.8.8.orig/src/plugins/alsa09/ao_alsa09.c 2007-05-24 12:19:07.000000000 +0300 ++++ libao-0.8.8/src/plugins/alsa09/ao_alsa09.c 2007-11-27 20:12:27.000000000 +0200 +@@ -165,7 +165,7 @@ + return 0; + } + else if (!strcmp(key, "buffer_time")) +- internal->buffer_time = atoi(value); ++ internal->buffer_time = atoi(value) * 1000; + else if (!strcmp(key, "period_time")) + internal->period_time = atoi(value); + else if (!strcmp(key,"use_mmap")) { |