From 69a0543faeb43db025d157b27bf600cc8df57a72 Mon Sep 17 00:00:00 2001 From: Mark Crichton Date: Wed, 15 May 2002 22:51:13 +0000 Subject: [PATCH] Reverted my Drft class changes. I now know where the bug is. Waiting for mcs to be fixed. svn path=/trunk/csvorbis/; revision=4672 --- csvorbis/Drft.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/csvorbis/Drft.cs b/csvorbis/Drft.cs index 697d8b0..6932c4b 100644 --- a/csvorbis/Drft.cs +++ b/csvorbis/Drft.cs @@ -33,22 +33,21 @@ class Drft float[] trigcache; int[] splitcache; - public void backward(float[] data) + internal void backward(float[] data) { if(n==1)return; drftb1(n,data,trigcache,trigcache,n,splitcache); } - public void init(int n) + internal void init(int n) { - Console.Error.WriteLine("Drft.init n: "+n); this.n=n; trigcache=new float[3*n]; splitcache=new int[32]; fdrffti(n, trigcache, splitcache); } - public void clear() + internal void clear() { if(trigcache!=null)trigcache=null; if(splitcache!=null)splitcache=null;