csvorbis.Drft.fdrffti(int, float[], int[])

Here are the examples of the csharp api class csvorbis.Drft.fdrffti(int, float[], int[]) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: csvorbis
Source File: Drft.cs
View license
internal void init(int n)
		{
			this.n=n;
			trigcache=new float[3*n];
			splitcache=new int[32];
			fdrffti(n, trigcache, splitcache);
		}

2. Example

Project: Tachycardia
Source File: Drft.cs
View license
internal void init(int n)
		{
			this.n=n;
			trigcache=new float[3*n];
			splitcache=new int[32];
			fdrffti(n, trigcache, splitcache);
		}