From 5e7a53e69a571f98f455645251d3031244399531 Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 6 Apr 2000 15:42:41 +0000 Subject: Update to ac3dec-0.6.1. Changes since 0.5.6 (from the ChangeLog): -Fix another 2.0 problem (rematrix was wrong). -Fix the never resync on a bad crc bug. -New library interface -Fix bug wrt coupling channels that was causing sound quality problems. -Fix 2.0 mode problems (aka the I forgot to implement the phase flags bug). -All around speed improvements (almost twice as fast) -Improved robustness when fed bad data. The entire frame is checksummed before playback. --- audio/ac3dec/Makefile | 4 ++-- audio/ac3dec/files/md5 | 4 ++-- audio/ac3dec/files/patch-sum | 6 +++--- audio/ac3dec/patches/patch-aa | 13 +++++++------ audio/ac3dec/patches/patch-ab | 10 +++++----- audio/ac3dec/pkg/PLIST | 3 +-- 6 files changed, 20 insertions(+), 20 deletions(-) (limited to 'audio') diff --git a/audio/ac3dec/Makefile b/audio/ac3dec/Makefile index df08ac24fbf..c1771edb431 100644 --- a/audio/ac3dec/Makefile +++ b/audio/ac3dec/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2000/01/07 04:20:49 hubertf Exp $ +# $NetBSD: Makefile,v 1.3 2000/04/06 15:42:41 wiz Exp $ # -DISTNAME= ac3dec-0.5.6 +DISTNAME= ac3dec-0.6.1 CATEGORIES= audio MASTER_SITES= http://ess.engr.uvic.ca/~aholtzma/ac3/ diff --git a/audio/ac3dec/files/md5 b/audio/ac3dec/files/md5 index a87d3e100ef..f8daaeb95fb 100644 --- a/audio/ac3dec/files/md5 +++ b/audio/ac3dec/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.1.1.1 2000/01/06 04:03:16 abs Exp $ +$NetBSD: md5,v 1.2 2000/04/06 15:42:42 wiz Exp $ -MD5 (ac3dec-0.5.6.tar.gz) = 951fac6d6327a5d290d658f36355c417 +MD5 (ac3dec-0.6.1.tar.gz) = 92b8d3af8d0d06318bb2bb04b8093eef diff --git a/audio/ac3dec/files/patch-sum b/audio/ac3dec/files/patch-sum index 72abb41c3f2..e6f9d8ea102 100644 --- a/audio/ac3dec/files/patch-sum +++ b/audio/ac3dec/files/patch-sum @@ -1,4 +1,4 @@ -$NetBSD: patch-sum,v 1.1.1.1 2000/01/06 04:03:16 abs Exp $ +$NetBSD: patch-sum,v 1.2 2000/04/06 15:42:42 wiz Exp $ -MD5 (patch-aa) = 316994c5d8ef2b4b830703a325a3b5f4 -MD5 (patch-ab) = 74d133480be4108640014267e423a491 +MD5 (patch-aa) = 81c61768c7ac13a856079a1cc99ce71b +MD5 (patch-ab) = 8c475b6221cd65061b798e2e7ab58ca1 diff --git a/audio/ac3dec/patches/patch-aa b/audio/ac3dec/patches/patch-aa index d5cfff9fe4c..8e277db66d8 100644 --- a/audio/ac3dec/patches/patch-aa +++ b/audio/ac3dec/patches/patch-aa @@ -1,12 +1,13 @@ -$NetBSD: patch-aa,v 1.1.1.1 2000/01/06 04:03:16 abs Exp $ +$NetBSD: patch-aa,v 1.2 2000/04/06 15:42:42 wiz Exp $ ---- configure.orig Wed Jan 5 20:09:34 2000 -+++ configure Wed Jan 5 20:05:44 2000 -@@ -1255,6 +1255,7 @@ +--- configure.orig Thu Mar 30 02:51:49 2000 ++++ configure Thu Apr 6 17:28:05 2000 +@@ -1254,7 +1254,7 @@ + case "$host" in *-linux*) rm -f output.c; ln -s output_linux.c output.c;; - *-openbsd*) rm -f output.c; ln -s output_linux.c output.c;; -+*-netbsd*) rm -f output.c; ln -s output_linux.c output.c;; +-*-openbsd*|*-freebsd*) rm -f output.c; ln -s output_linux.c output.c;; ++*-openbsd*|*-freebsd*|*-netbsd*) rm -f output.c; ln -s output_linux.c output.c;; *-irix*) rm -f output.c; ln -s output_irix.c output.c;; *-solaris*) rm -f output.c; ln -s output_solaris.c output.c;; *) echo "$host is not currently supported by ac3dec"; exit 1;; diff --git a/audio/ac3dec/patches/patch-ab b/audio/ac3dec/patches/patch-ab index f9dacb1f5cf..42dc6e211ec 100644 --- a/audio/ac3dec/patches/patch-ab +++ b/audio/ac3dec/patches/patch-ab @@ -1,7 +1,7 @@ -$NetBSD: patch-ab,v 1.1.1.1 2000/01/06 04:03:16 abs Exp $ +$NetBSD: patch-ab,v 1.2 2000/04/06 15:42:42 wiz Exp $ ---- output_linux.c.orig Wed Jan 5 20:07:35 2000 -+++ output_linux.c Wed Jan 5 20:08:30 2000 +--- output_linux.c.orig Thu Mar 30 02:51:24 2000 ++++ output_linux.c Thu Apr 6 17:28:05 2000 @@ -33,7 +33,7 @@ #include #include @@ -9,5 +9,5 @@ $NetBSD: patch-ab,v 1.1.1.1 2000/01/06 04:03:16 abs Exp $ -#if defined(__OpenBSD__) +#if defined(__NetBSD__) || defined (__OpenBSD__) #include - #else - #include + #elif defined(__FreeBSD__) + #include diff --git a/audio/ac3dec/pkg/PLIST b/audio/ac3dec/pkg/PLIST index 2d141f3ef59..9be5d5eb446 100644 --- a/audio/ac3dec/pkg/PLIST +++ b/audio/ac3dec/pkg/PLIST @@ -1,7 +1,6 @@ -@comment $NetBSD: PLIST,v 1.2 2000/01/07 04:20:50 hubertf Exp $ +@comment $NetBSD: PLIST,v 1.3 2000/04/06 15:42:42 wiz Exp $ bin/ac3dec bin/extract_ac3 -bin/verify_ac3 share/doc/ac3dec/README share/doc/ac3dec/TODO @dirrm share/doc/ac3dec -- cgit v1.2.3