diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2001-08-27 01:26:34 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2001-08-27 01:26:34 +0000 |
commit | 9f49d35673785ccc2c8af01b936097cffd49686b (patch) | |
tree | 4e78682eac0541a9134129a1ed96f6eb0d3517c2 /audio/libvorbis/files | |
parent | Update to 1.4 Build 127 (diff) |
Update libao to 0.8.0, which breaks mpg321. Update libogg, libvorbis,
vorbis-tools and the vorbis meta-port to 1.0rc2. This version
supports "channel coupling" for more efficient compression of stereo
material.
Submitted by: Christian Weisgerber (maintainer)
Notes
Notes:
svn path=/head/; revision=46948
Diffstat (limited to 'audio/libvorbis/files')
-rw-r--r-- | audio/libvorbis/files/patch-lib_floor1.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/audio/libvorbis/files/patch-lib_floor1.c b/audio/libvorbis/files/patch-lib_floor1.c new file mode 100644 index 000000000000..94264d168a5e --- /dev/null +++ b/audio/libvorbis/files/patch-lib_floor1.c @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- lib/floor1.c.orig Mon Aug 13 13:33:39 2001 ++++ lib/floor1.c Fri Aug 17 01:09:12 2001 +@@ -226,7 +226,7 @@ + + /* also store a sorted position index */ + for(i=0;i<n;i++)sortpointer[i]=info->postlist+i; +- qsort(sortpointer,n,sizeof(int),icomp); ++ qsort(sortpointer,n,sizeof(int *),icomp); + + /* points from sort order back to range number */ + for(i=0;i<n;i++)look->forward_index[i]=sortpointer[i]-info->postlist; |