mirror of
https://github.com/alexkay/spek.git
synced 2025-04-25 12:22:18 +03:00
17 lines
536 B
Vala
17 lines
536 B
Vala
[CCode (cprefix = "SpekFft", lower_case_cprefix = "spek_fft_", cheader_filename = "spek-fft.h")]
|
|
namespace Spek.Fft {
|
|
[Compact]
|
|
[CCode (free_function = "spek_fft_destroy")]
|
|
public class Plan {
|
|
[CCode (array_length = false)]
|
|
public unowned float[] input;
|
|
[CCode (array_length = false)]
|
|
public unowned float[] output;
|
|
|
|
[CCode (cname = "spek_fft_plan_new")]
|
|
public Plan (int n, int threshold);
|
|
[CCode (cname = "spek_fft_execute")]
|
|
public void execute ();
|
|
}
|
|
}
|