diff options
Diffstat (limited to 'audio/toolame/files/patch-psycho_4.c')
-rw-r--r-- | audio/toolame/files/patch-psycho_4.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/audio/toolame/files/patch-psycho_4.c b/audio/toolame/files/patch-psycho_4.c deleted file mode 100644 index df557a4cdf30..000000000000 --- a/audio/toolame/files/patch-psycho_4.c +++ /dev/null @@ -1,22 +0,0 @@ ---- psycho_4.c.orig Thu Mar 27 16:58:41 2003 -+++ psycho_4.c Thu Mar 27 16:59:20 2003 -@@ -330,6 +330,8 @@ - void psycho_4_init (double sfreq, options *glopts) - { - int i, j; -+ int partition_count; /* keep a count of the partitions */ -+ int cbase; /* current base index for the bark range calculation */ - - /* Allocate memory for all the static variables */ - psycho_4_allocmem(); -@@ -365,8 +367,8 @@ - Starting from line 0, all lines within 0.33 of the starting - bark are added to the same partition. When a line is greater - by 0.33 of a bark, start a new partition. */ -- int partition_count = 0; /* keep a count of the partitions */ -- int cbase = 0; /* current base index for the bark range calculation */ -+ partition_count = 0; -+ cbase = 0; - for (i=0;i<HBLKSIZE;i++) { - if ((bark[i] - bark[cbase]) > 0.33) { /* 1/3 critical band? */ - /* this frequency line is too different from the starting line, |