1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-08 12:01:56 +00:00
Christian Weisgerber ffa50ba20a audio/opus: update to 1.4
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
2023-04-25 17:17:15 +02:00

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>