File: fft.h

package info (click to toggle)
ocp 1%3A0.1.21-5
  • links: PTS
  • area: main
  • in suites: buster
  • size: 5,528 kB
  • sloc: ansic: 91,461; cpp: 9,729; sh: 3,119; makefile: 2,493
file content (23 lines) | stat: -rw-r--r-- 590 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* OpenCP Module Player
 * copyright (c) '94-'05 Niklas Beisert <nbeisert@physik.tu-muenchen.de>
 *
 * FFT routines for the spectrum analysers
 *
 * revision history: (please note changes here)
 * -doj980928  Dirk Jagdmann <doj@cubic.org>
 *   -initial release
 *
 * -doj981105  Dirk Jagdmann <doj@cubic.org>
 *   - changed paramter declaration of fftanalyseall()
 *   - deletet isqrt() from this file
 */

#ifndef FFT__H
#define FFT__H

void fftanalyseall(uint16_t *ana,
                   const int16_t *samp,
                   const int inc,
                   const int bits);

#endif