summaryrefslogtreecommitdiff
path: root/audio/mpg123/files/patch-ah
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2009-01-30 21:12:16 +0000
committerPav Lucistnik <pav@FreeBSD.org>2009-01-30 21:12:16 +0000
commit3dce9b2db999932f1443da1335434e754d8cce9d (patch)
tree4b85dfc55ff72a0460ebf318353cdc6d253ef9ae /audio/mpg123/files/patch-ah
parentUpdate to 2.2.2 (diff)
- Update to 1.6.4
PR: ports/126537 (based on) Submitted by: Vitaly Magerya <vmagerya@gmail.com> Approved by: maintainer timeout (novel; 6 months)
Notes
Notes: svn path=/head/; revision=227194
Diffstat (limited to 'audio/mpg123/files/patch-ah')
-rw-r--r--audio/mpg123/files/patch-ah56
1 files changed, 0 insertions, 56 deletions
diff --git a/audio/mpg123/files/patch-ah b/audio/mpg123/files/patch-ah
deleted file mode 100644
index a2154c97378f..000000000000
--- a/audio/mpg123/files/patch-ah
+++ /dev/null
@@ -1,56 +0,0 @@
---- layer3.c.xx Wed Oct 22 19:19:01 2003
-+++ layer3.c Wed Oct 22 19:20:30 2003
-@@ -608,7 +608,7 @@
- * Dequantize samples (includes huffman decoding)
- */
- /* 24 is enough because tab13 has max. a 19 bit huffvector */
--#ifdef __alpha
-+#ifndef __i386__
- #define BITSHIFT ((sizeof(int)-1)*8)
- #define REFRESH_MASK \
- while(num < BITSHIFT) { \
-@@ -634,7 +634,7 @@
- int *me;
-
- int num=getbitoffset();
--#ifdef __alpha
-+#ifndef __i386__
- int mask = (int) getbits(num)<<(BITSHIFT+8-num);
- #else
- long mask = (long) getbits(num)<<(BITSHIFT+8-num);
-@@ -722,7 +722,7 @@
- if(x == 15 && h->linbits) {
- max[lwin] = cb;
- REFRESH_MASK;
--#ifdef __alpha
-+#ifndef __i386__
- x += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits);
- #else
- x += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits);
-@@ -750,7 +750,7 @@
- if(y == 15 && h->linbits) {
- max[lwin] = cb;
- REFRESH_MASK;
--#ifdef __alpha
-+#ifndef __i386__
- y += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits);
- #else
- y += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits);
-@@ -904,7 +904,7 @@
- if (x == 15 && h->linbits) {
- max = cb;
- REFRESH_MASK;
--#ifdef __alpha
-+#ifndef __i386__
- x += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits);
- #else
- x += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits);
-@@ -932,7 +932,7 @@
- if (y == 15 && h->linbits) {
- max = cb;
- REFRESH_MASK;
--#ifdef __alpha
-+#ifndef __i386__
- y += ((unsigned int) mask) >> (BITSHIFT+8-h->linbits);
- #else
- y += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits);