Received: by mail.netbsd.org (Postfix, from userid 605) id A8E7384DB9; Sat, 6 May 2023 18:51:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D750384DA9 for ; Sat, 6 May 2023 18:51:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id t54iMa6XQsXI for ; Sat, 6 May 2023 18:51:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2CF1C84D00 for ; Sat, 6 May 2023 18:51:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1F79FFA87; Sat, 6 May 2023 18:51:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1683399076239740" MIME-Version: 1.0 Date: Sat, 6 May 2023 18:51:16 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/audio/libopus To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20230506185116.1F79FFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1683399076239740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sat May 6 18:51:16 UTC 2023 Modified Files: pkgsrc/audio/libopus: Makefile distinfo pkgsrc/audio/libopus/patches: patch-celt_arm_armcpu.c Log Message: libopus; Update to 1.4 Changelog: This Opus 1.4 major release brings the following improvements and fixes: * Improved tuning of the Opus in-band FEC (LBRR). See the issue for details * Added a 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 * Added Meson support, improved CMake support In addition to the improvements above, this release includes many minor bug fixes. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/audio/libopus/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/audio/libopus/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/audio/libopus/patches/patch-celt_arm_armcpu.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1683399076239740 Content-Disposition: inline Content-Length: 3045 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/libopus/Makefile diff -u pkgsrc/audio/libopus/Makefile:1.16 pkgsrc/audio/libopus/Makefile:1.17 --- pkgsrc/audio/libopus/Makefile:1.16 Mon Jul 25 11:12:19 2022 +++ pkgsrc/audio/libopus/Makefile Sat May 6 18:51:15 2023 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.16 2022/07/25 11:12:19 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2023/05/06 18:51:15 ryoon Exp $ -DISTNAME= opus-1.3.1 +DISTNAME= opus-1.4 PKGNAME= lib${DISTNAME} CATEGORIES= audio -MASTER_SITES= https://archive.mozilla.org/pub/opus/ +MASTER_SITES= https://downloads.xiph.org/releases/opus/ MAINTAINER= ryoon@NetBSD.org HOMEPAGE= https://opus-codec.org/ Index: pkgsrc/audio/libopus/distinfo diff -u pkgsrc/audio/libopus/distinfo:1.14 pkgsrc/audio/libopus/distinfo:1.15 --- pkgsrc/audio/libopus/distinfo:1.14 Tue Oct 26 09:59:08 2021 +++ pkgsrc/audio/libopus/distinfo Sat May 6 18:51:15 2023 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2021/10/26 09:59:08 nia Exp $ +$NetBSD: distinfo,v 1.15 2023/05/06 18:51:15 ryoon Exp $ -BLAKE2s (opus-1.3.1.tar.gz) = d6b5d5c8694228154a2b355fbddd720fc6a7cb3ac661e1533b9745529cff4131 -SHA512 (opus-1.3.1.tar.gz) = 6cd5e4d8a0551ed5fb59488c07a5cc18a241d1fde5f9eb9f16cd4e77abcdb4134dd51ad1d737be1e6039bfa56912510b8648152f2478a1f21c7c1d9ce32933cd -Size (opus-1.3.1.tar.gz) = 1040054 bytes -SHA1 (patch-celt_arm_armcpu.c) = 2698814d7f204c8ff82ac86b4b6d54f32ba0afb7 +BLAKE2s (opus-1.4.tar.gz) = b009f1c112a369912eb3929e569ad1134697e612e4082a656ab4d4f68f868d68 +SHA512 (opus-1.4.tar.gz) = 1ecd39e0add24de12823bf7c936bb67441228721e2cdae0edbfcf3cee0894bcc6edf2a1d0ca5cdfdad1565803bf39cc4c985ad32710c2a9582f850adeb5ca631 +Size (opus-1.4.tar.gz) = 1063408 bytes +SHA1 (patch-celt_arm_armcpu.c) = a7cd820bf4d68fb6c146d953b15614e9211b5677 Index: pkgsrc/audio/libopus/patches/patch-celt_arm_armcpu.c diff -u pkgsrc/audio/libopus/patches/patch-celt_arm_armcpu.c:1.1 pkgsrc/audio/libopus/patches/patch-celt_arm_armcpu.c:1.2 --- pkgsrc/audio/libopus/patches/patch-celt_arm_armcpu.c:1.1 Sat May 13 07:51:08 2017 +++ pkgsrc/audio/libopus/patches/patch-celt_arm_armcpu.c Sat May 6 18:51:15 2023 @@ -1,11 +1,11 @@ -$NetBSD: patch-celt_arm_armcpu.c,v 1.1 2017/05/13 07:51:08 maya Exp $ +$NetBSD: patch-celt_arm_armcpu.c,v 1.2 2023/05/06 18:51:15 ryoon Exp $ Don't error on ARM if we're not on linux or MSVC. Currently the code attempts to open /proc/cpuinfo, and tests for failure - if that doesn't contain useful info or doesn't exist, it still behaves correctly. ---- celt/arm/armcpu.c.orig 2017-01-16 20:50:20.000000000 +0000 +--- celt/arm/armcpu.c.orig 2022-08-04 21:54:39.000000000 +0000 +++ celt/arm/armcpu.c @@ -91,7 +91,7 @@ static OPUS_INLINE opus_uint32 opus_cpu_ return flags; @@ -14,9 +14,9 @@ it still behaves correctly. -#elif defined(__linux__) +#else /* Linux based */ - opus_uint32 opus_cpu_capabilities(void) - { -@@ -146,11 +146,12 @@ opus_uint32 opus_cpu_capabilities(void) + #include + +@@ -148,11 +148,12 @@ opus_uint32 opus_cpu_capabilities(void) } return flags; } --_----------=_1683399076239740--