1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Update to 12.17.8

PR:		ports/86904
Submitted by:	Dan Nelson <dnelson@allantgroup.com> (maintainer)
This commit is contained in:
Michael Johnson 2005-10-05 04:54:17 +00:00
parent 0c0a763338
commit 831d231539
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=144256
3 changed files with 3 additions and 25 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= sox
PORTVERSION= 12.17.7
PORTVERSION= 12.17.8
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= sox

View File

@ -1,2 +1,2 @@
MD5 (sox-12.17.7.tar.gz) = a6876289602c1f2896b39e6a88e2a574
SIZE (sox-12.17.7.tar.gz) = 466570
MD5 (sox-12.17.8.tar.gz) = 735e9add6979bd6308f213abefe389e8
SIZE (sox-12.17.8.tar.gz) = 462079

View File

@ -1,22 +0,0 @@
$FreeBSD$
--- src/noisered.c.orig
+++ src/noisered.c
@@ -126,6 +126,7 @@
* due to overlapping windows. */
static void reduce_noise(chandata_t* chan, float* window, float level)
{
+ int i;
float *inr = (float*)calloc(WINDOWSIZE, sizeof(float));
float *ini = (float*)calloc(WINDOWSIZE, sizeof(float));
float *outr = (float*)calloc(WINDOWSIZE, sizeof(float));
@@ -135,8 +136,6 @@
static int callnum = 0;
callnum ++;
-
- int i;
for (i = 0; i < FREQCOUNT; i ++) {
assert(smoothing[i] >= 0 && smoothing[i] <= 1);