mirror of
https://github.com/mborgerding/kissfft.git
synced 2025-12-02 07:22:50 -05:00
Fixed -Wmissing-variable-declarations warnings, made globals static
This commit is contained in:
@ -16,15 +16,15 @@
|
|||||||
#include "kiss_fft.h"
|
#include "kiss_fft.h"
|
||||||
#include "kiss_fftr.h"
|
#include "kiss_fftr.h"
|
||||||
|
|
||||||
int nfft=1024;
|
static int nfft=1024;
|
||||||
FILE * fin=NULL;
|
static FILE * fin=NULL;
|
||||||
FILE * fout=NULL;
|
static FILE * fout=NULL;
|
||||||
|
|
||||||
int navg=20;
|
static int navg=20;
|
||||||
int remove_dc=0;
|
static int remove_dc=0;
|
||||||
int nrows=0;
|
static int nrows=0;
|
||||||
float * vals=NULL;
|
static float * vals=NULL;
|
||||||
int stereo=0;
|
static int stereo=0;
|
||||||
|
|
||||||
static
|
static
|
||||||
void config(int argc,char** argv)
|
void config(int argc,char** argv)
|
||||||
|
|||||||
Reference in New Issue
Block a user