diff options
author | bjs <bjs@pkgsrc.org> | 2008-11-08 21:06:46 +0000 |
---|---|---|
committer | bjs <bjs@pkgsrc.org> | 2008-11-08 21:06:46 +0000 |
commit | 89989193cd92d01c87d6ee6dda85a4cf2f49e73a (patch) | |
tree | 71fa8e26ca4a832bcabe4f272d8d3ed9e13fd12e /audio/speex/Makefile | |
parent | e064d69735d308eaffe09dd4684dc6d02ea191b5 (diff) | |
download | pkgsrc-89989193cd92d01c87d6ee6dda85a4cf2f49e73a.tar.gz |
Update to speex-1.2rc1. This should be backward-compatible with
1.0.x versions. Pulseaudio (which I am working on) requires
this version; moreover, the 1.0.x releases are deprecated.
The ChangeLog is not kept up-to-date, but here are some highlights:
1.2rc1
--------
Again, this new releases brings many improvements. The RAM requirement for
wideband has gone down drastically (i.e. more than 2x). A new resampler
module has been added, providing arbitrary sampling rate conversion --
fast. The echo canceller has also been improved. A bug in 1.2beta1 that
made the echo canceller unstable has been fixed. The echo canceller should
now converge faster, be robust and tolerant of incorrect capture-playback
synchronisation. The preprocessor has also been greatly improved. Not only
should the quality be better, but it is now fully converted to
fixed-point. At last, early TriMedia support (incomplete) has been merged.
1.2beta3
--------
The most obvious change in this release is that all the non-codec
components (preprocessor, echo cancellation, jitter buffer) have been
moved to a new libspeexdsp library. Other changes include a new jitter
buffer algorithm and resampler improvements/fixes. This is also the first
release where libspeex can be built without any floating point support. To
do this, the float compatibility API must be disabled (--disable-float-api
or DISABLE_FLOAT_API) and the VBR feature must be disabled (--disable-vbr
or DISABLE_VBR).
1.2beta2
--------
This release adds support for acoustic echo cancellation with multiple
microphones and multiple loudspeakers. It also adds an API to decorrelate
loudspeaker signals to improve multi-channel performance. In the bugfix
department, there are fixes for a few bugs in the echo canceller, jitter
buffer and preprocessor. At this point, the API for 1.2 should be stable
and only a few very minor additions are planned.
Diffstat (limited to 'audio/speex/Makefile')
-rw-r--r-- | audio/speex/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/audio/speex/Makefile b/audio/speex/Makefile index 78e8408aa4b..0adf7e64b6c 100644 --- a/audio/speex/Makefile +++ b/audio/speex/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.26 2008/04/29 20:22:43 wiz Exp $ +# $NetBSD: Makefile,v 1.27 2008/11/08 21:06:46 bjs Exp $ # -DISTNAME= speex-1.0.5 -PKGREVISION= 1 +DISTNAME= speex-1.2rc1 CATEGORIES= audio MASTER_SITES= http://downloads.us.xiph.org/releases/speex/ @@ -15,18 +14,21 @@ PKG_DESTDIR_SUPPORT= user-destdir USE_LIBTOOL= YES GNU_CONFIGURE= YES PKGCONFIG_OVERRIDE= speex.pc.in +PKGCONFIG_OVERRIDE= speexdsp.pc.in USE_TOOLS+= pkg-config # previous versions of the package were called Speex CONFLICTS= Speex-[0-9]* -CONFIGURE_ARGS+= --with-ogg-dir="${BUILDLINK_PREFIX.libogg}" +CONFIGURE_ARGS+= --with-ogg-dir=${BUILDLINK_PREFIX.libogg:Q} # Avoid an ICE in gcc2 on sparc64 CONFIGURE_ENV+= F77=${FALSE:Q} BUILDLINK_TRANSFORM+= l:gnugetopt:getopt +.include "options.mk" + .include "../../devel/libgetopt/buildlink3.mk" .include "../../multimedia/libogg/buildlink3.mk" |