diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-06-19 20:47:23 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-06-19 20:47:23 +0000 |
commit | c9615c3ba00a96e691801b3bdd3dda961052263b (patch) | |
tree | e5c5fc77e964c5ce42319db27955bb59e5f8589d /media-sound/toolame/files | |
parent | x86 stable (diff) | |
download | gentoo-2-c9615c3ba00a96e691801b3bdd3dda961052263b.tar.gz gentoo-2-c9615c3ba00a96e691801b3bdd3dda961052263b.tar.bz2 gentoo-2-c9615c3ba00a96e691801b3bdd3dda961052263b.zip |
Revbump to fix signed/unsigned issue which caused segfault on 64bit archs. Pusing into stable amd64. Closes bug #89751 thanks to Scott Smith <scott-gentoo@gelatinous.com>
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'media-sound/toolame/files')
-rw-r--r-- | media-sound/toolame/files/digest-toolame-02l-r1 | 1 | ||||
-rw-r--r-- | media-sound/toolame/files/toolame-02l-uint.patch | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/media-sound/toolame/files/digest-toolame-02l-r1 b/media-sound/toolame/files/digest-toolame-02l-r1 new file mode 100644 index 000000000000..28158002d0e5 --- /dev/null +++ b/media-sound/toolame/files/digest-toolame-02l-r1 @@ -0,0 +1 @@ +MD5 5946e2dd78fbb57e54386b3b5d873fee toolame-02l.tgz 127493 diff --git a/media-sound/toolame/files/toolame-02l-uint.patch b/media-sound/toolame/files/toolame-02l-uint.patch new file mode 100644 index 000000000000..619c98bb4547 --- /dev/null +++ b/media-sound/toolame/files/toolame-02l-uint.patch @@ -0,0 +1,27 @@ +diff -aur toolame-02l/audio_read.c toolame-02l-fixed/audio_read.c +--- toolame-02l/audio_read.c 2003-03-01 17:18:30.000000000 -0800 ++++ toolame-02l-fixed/audio_read.c 2005-04-19 22:32:41.288998770 -0700 +@@ -436,7 +436,7 @@ + + if (pcm_aiff_data->sampleSize != sizeof (short) * BITS_IN_A_BYTE) { + fprintf (stderr, "Sound data is not %d bits in \"%s\".\n", +- sizeof (short) * BITS_IN_A_BYTE, file_name); ++ (int)(sizeof (short) * BITS_IN_A_BYTE), file_name); + exit (1); + } + +diff -aur toolame-02l/fft.c toolame-02l-fixed/fft.c +--- toolame-02l/fft.c 2003-03-01 23:14:45.000000000 -0800 ++++ toolame-02l-fixed/fft.c 2005-04-19 22:47:49.019986989 -0700 +@@ -1190,9 +1190,9 @@ + static FLOAT atan_t[ATANSIZE]; + + INLINE FLOAT atan_table(FLOAT y, FLOAT x) { +- int index; ++ unsigned int index; + +- index = (int)(ATANSCALE * fabs(y/x)); ++ index = (unsigned int)(ATANSCALE * fabs(y/x)); + if (index>=ATANSIZE) + index = ATANSIZE-1; + |