summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin V. Arkhipov <voxus@gentoo.org>2005-03-22 13:29:34 +0000
committerKonstantin V. Arkhipov <voxus@gentoo.org>2005-03-22 13:29:34 +0000
commitf652ab9b9d6485440915a1d759b79a837300a7c7 (patch)
tree76154d873f3e9d75c8b7b9f8dd1fc78022548c2d /media-plugins/eq-xmms/files
parentBug 59931 (diff)
downloadgentoo-2-f652ab9b9d6485440915a1d759b79a837300a7c7.tar.gz
gentoo-2-f652ab9b9d6485440915a1d759b79a837300a7c7.tar.bz2
gentoo-2-f652ab9b9d6485440915a1d759b79a837300a7c7.zip
added fix for mono streams playing
(Portage version: 2.0.51.19)
Diffstat (limited to 'media-plugins/eq-xmms/files')
-rw-r--r--media-plugins/eq-xmms/files/digest-eq-xmms-0.6-r2 (renamed from media-plugins/eq-xmms/files/digest-eq-xmms-0.6)0
-rw-r--r--media-plugins/eq-xmms/files/eq-xmms-0.6-mono_fix.patch11
2 files changed, 11 insertions, 0 deletions
diff --git a/media-plugins/eq-xmms/files/digest-eq-xmms-0.6 b/media-plugins/eq-xmms/files/digest-eq-xmms-0.6-r2
index e6b204514b81..e6b204514b81 100644
--- a/media-plugins/eq-xmms/files/digest-eq-xmms-0.6
+++ b/media-plugins/eq-xmms/files/digest-eq-xmms-0.6-r2
diff --git a/media-plugins/eq-xmms/files/eq-xmms-0.6-mono_fix.patch b/media-plugins/eq-xmms/files/eq-xmms-0.6-mono_fix.patch
new file mode 100644
index 000000000000..46c3c4b39023
--- /dev/null
+++ b/media-plugins/eq-xmms/files/eq-xmms-0.6-mono_fix.patch
@@ -0,0 +1,11 @@
+--- eq-xmms-0.6/src/iir.c 2004-05-16 06:24:31.000000000 +0400
++++ eq-xmms/src/iir.c 2005-03-22 16:14:58.000000000 +0300
+@@ -167,7 +167,7 @@
+ * the buffer (length is in bytes)
+ */
+ halflength = (length >> 1);
+- for (index = 0; index < halflength; index+=2)
++ for (index = 0; index < halflength; index+=nch)
+ {
+ /* For each channel */
+ for (channel = 0; channel < nch; channel++)