6a961b68
rsimonin
modifications
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#include <iostream>
#include "wavdata.h"
#include "fft.h"
#include <math.h>
#define FREQ 22400
#define AMPLITUDE 10
#define FREQDO 261
#define FREQLA 440
#define SIZE FREQ*2
int main(int argc, char **argv)
{
//Definition variables
int i,j;
float pi=3.141592;
double test[SIZE*2][2];
double test2[SIZE*2][2];
double test1[SIZE*2][2];
double test3[SIZE*2][2];
char *data2 = new char[SIZE];
WavData w;
//Creation de la donnée
printf("===Creation data\n");
for(i=0;i<SIZE;i++){
float wla=2.0*3.14*FREQLA;
float t=(float)i/FREQ;
test[i][0]=AMPLITUDE*(1+sin(wla*t));
test[i][1]=0;
}
//FFT
printf("===fft\n");
fft(32768*2,test,test2);
//Modification dans le domaine fréquentiel
printf("===modif freq\n");
for(i=0;i<SIZE;i++){
|
6a961b68
rsimonin
modifications
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
printf("%d %lf %lf\n ",j,test1[j][0],test[j][0]);
}
//Preapation format final
w.setAudioFormat(1);
w.setNbrChanel(1);
w.setFrequency(FREQ);
w.setBytePerBloc(4);
w.setBytePerSec(FREQ);
w.setBitsPerSample(8);
w.clearData();
w.setDatasize(SIZE);
w.setData(data2);
w.save("lastrech.WAV");
}
|