summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorwiz <wiz>2015-12-02 06:57:13 +0000
committerwiz <wiz>2015-12-02 06:57:13 +0000
commitddd2b15eab232c5765d884df6f1e2c6518152801 (patch)
tree6660063475d835fe3970ff1196a00c330d871693 /audio
parentd2ad66c0d3a54ce451c6bca4dee844c33492773b (diff)
downloadpkgsrc-ddd2b15eab232c5765d884df6f1e2c6518152801.tar.gz
Update libopus to 1.1.1:
This Opus 1.1.1 release brings many optimizations to the encoder and decoder, including: * x86 SSE, SSE2 and SSE4.1 intrinsics optimizations with run-time CPU detection contributed by Cisco Systems, * MIPS intrinsics optimizations contributed by Imagination Technologies, * ARM Neon optimizations contributed by Linaro and ARM, * many architecture-independent optimizations and memory footprint reductions that should improve performance on all platforms, and * several minor bug fixes. The quality of the encoder should be mostly unchanged compared to version 1.1.
Diffstat (limited to 'audio')
-rw-r--r--audio/libopus/Makefile5
-rw-r--r--audio/libopus/distinfo10
-rw-r--r--audio/libopus/patches/patch-configure36
3 files changed, 7 insertions, 44 deletions
diff --git a/audio/libopus/Makefile b/audio/libopus/Makefile
index 645c59acc50..63c36d262b6 100644
--- a/audio/libopus/Makefile
+++ b/audio/libopus/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2014/01/05 19:56:50 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2015/12/02 06:57:13 wiz Exp $
-DISTNAME= opus-1.1
+DISTNAME= opus-1.1.1
PKGNAME= lib${DISTNAME}
-PKGREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://downloads.xiph.org/releases/opus/
diff --git a/audio/libopus/distinfo b/audio/libopus/distinfo
index 4c38e8a4fe1..879b0bc908d 100644
--- a/audio/libopus/distinfo
+++ b/audio/libopus/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.4 2015/11/03 01:12:38 agc Exp $
+$NetBSD: distinfo,v 1.5 2015/12/02 06:57:13 wiz Exp $
-SHA1 (opus-1.1.tar.gz) = 35005f5549e2583f5770590135984dcfce6f3d58
-RMD160 (opus-1.1.tar.gz) = 01945dc82b7573f1d8b706bd82a4cb3fda57da35
-SHA512 (opus-1.1.tar.gz) = b603efe66d65ef38dbcd0d2bbf213a1d15fa456aee00eca73e99abe4ec78668ed82e661ca7a69e9af4e0bc39e1aa76c4151b7f9840ff621ddcfd69f596cf2ba9
-Size (opus-1.1.tar.gz) = 850208 bytes
+SHA1 (opus-1.1.1.tar.gz) = 33f83cdccc36e875fea378425003bba448b15b8b
+RMD160 (opus-1.1.1.tar.gz) = f85e4bf9d7fa574ab44c6edd3516218cb9423dc3
+SHA512 (opus-1.1.1.tar.gz) = 1e55ed19f07ed399371aaf92544b3c5fb3d214c8ae67210a709edfede2102a5fa5c6f5b8287d26dcacad62b5c0a591bfe14ee7ae7d846629e5a814a05da4e149
+Size (opus-1.1.1.tar.gz) = 957948 bytes
SHA1 (patch-configure) = 707ab1c9e5a9ad404b822fa7931d57a54568ead9
diff --git a/audio/libopus/patches/patch-configure b/audio/libopus/patches/patch-configure
deleted file mode 100644
index 3a6aa539c83..00000000000
--- a/audio/libopus/patches/patch-configure
+++ /dev/null
@@ -1,36 +0,0 @@
-$NetBSD: patch-configure,v 1.1 2014/01/02 14:43:21 ryoon Exp $
-
-* Fix "Syntax error: Bad substitution" error on NetBSD
- From http://svnweb.freebsd.org/ports/head/audio/opus/files/patch-configure?revision=336843&view=co
---- configure.orig 2014-01-02 13:28:21.000000000 +0000
-+++ configure
-@@ -12774,9 +12774,9 @@ fi
- fi
-
- if test x"$rtcd_support" != x""; then :
-- rtcd_support=ARM"$rtcd_support"
-+ rtcd_support=ARM"$rtcd_support" ;
- else
-- rtcd_support="no"
-+ rtcd_support="no" ;
-
- fi
-
-@@ -12807,7 +12807,7 @@ else
- CPU_ARM_FALSE=
- fi
-
-- if test x"${inline_optimization:0:3}" = x"ARM"; then
-+ if expr x"${inline_optimization}" : x"ARM" >/dev/null; then
- OPUS_ARM_INLINE_ASM_TRUE=
- OPUS_ARM_INLINE_ASM_FALSE='#'
- else
-@@ -12815,7 +12815,7 @@ else
- OPUS_ARM_INLINE_ASM_FALSE=
- fi
-
-- if test x"${asm_optimization:0:3}" = x"ARM"; then
-+ if expr x"${asm_optimization}" : x"ARM" >/dev/null; then
- OPUS_ARM_EXTERNAL_ASM_TRUE=
- OPUS_ARM_EXTERNAL_ASM_FALSE='#'
- else