blob: 904c9acefe79222173a00ad7350db90a2e8adb49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Copyright (c) 2021, Cesar Torres <shortanemoia@protonmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Complex.h>
#include <AK/Vector.h>
void fft(Vector<Complex<double>>& sample_data, bool invert);
|