mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-08 12:01:56 +00:00
![Christian Weisgerber](/assets/img/avatar_default.png)
This new release brings the following improvements: - Improved tuning of the Opus in-band FEC (LBRR) - Added an OPUS_SET_INBAND_FEC(2) option that turns on FEC, but does not force SILK mode (FEC will be disabled in CELT mode) - Improved tuning and various fixes to DTX PR: 270996
32 lines
685 B
Makefile
32 lines
685 B
Makefile
PORTNAME= opus
|
|
DISTVERSION= 1.4
|
|
CATEGORIES= audio
|
|
MASTER_SITES= https://downloads.xiph.org/releases/opus/ \
|
|
https://github.com/xiph/opus/releases/download/v${DISTVERSION}/
|
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
|
COMMENT= IETF audio codec
|
|
WWW= https://opus-codec.org/
|
|
|
|
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>
|
|
|
|
# drop after FreeBSD 12 EOL
|
|
.if ${ARCH} == "arm"
|
|
CONFIGURE_ARGS+=--enable-fixed-point
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|