freebsd-ports/audio/opus/Makefile
Christian Weisgerber ad4837d6cb Update to 1.3.
Changes since 1.2.x include:
- Improvements to the VAD and speech/music classification using an RNN
- Support for ambisonics coding using channel mapping families 2 and 3
- Improvements to stereo speech coding at low bitrate
- Using wideband encoding down to 9 kb/s
- Making it possible to use SILK down to bitrates around 5 kb/s
- Minor quality improvement on tones
- Enabling the spec fixes in RFC 8251 by default
- Security/hardening improvements

Notable bug fixes include:
- Fixes to the CELT PLC
- Bandwidth detection fixes
2018-10-20 18:17:09 +00:00

30 lines
543 B
Makefile

# $FreeBSD$
PORTNAME= opus
PORTVERSION= 1.3
CATEGORIES= audio
MASTER_SITES= MOZILLA/opus
MAINTAINER= naddy@FreeBSD.org
COMMENT= IETF audio codec
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
USES= cpe gmake libtool pathfix
CPE_VENDOR= opus-codec
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-custom-modes \
--disable-doc # requires doxygen
INSTALL_TARGET= install-strip
TEST_TARGET= check
.include <bsd.port.options.mk>
.if ${ARCH} == "arm"
CONFIGURE_ARGS+=--enable-fixed-point
.endif
.include <bsd.port.mk>