Skip to content

Commit f123c03

Browse files
committed
daily commit
1 parent afd71a1 commit f123c03

File tree

9 files changed

+7
-12
lines changed

9 files changed

+7
-12
lines changed

TestAudio/respeaker/mic1-4_2/2.wav

97.3 KB
Binary file not shown.

TestAudio/respeaker/mic1-4_2/3.wav

97.3 KB
Binary file not shown.

TestAudio/respeaker/mic1-4_2/4.wav

97.3 KB
Binary file not shown.

TestAudio/respeaker/mic1-4_2/5.wav

97.3 KB
Binary file not shown.

c++/SRP/DelaySum.cpp

+1-6
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,9 @@ int16_t DelaySumURA(float * * x, float * yout,uint16_t fs, uint32_t DataLen, int
125125
//cx_inverse_in[k].i = cx_inverse_in[k].i + xk[k][n].imag;;
126126

127127
}
128-
129-
}
130-
131-
132-
for (uint16_t k = 0; k < half_bin; k++)
133-
{
134128
cx_inverse_in[k].r = xk[k][0].real;
135129
cx_inverse_in[k].i = xk[k][0].imag;
130+
136131
}
137132

138133
kiss_fftri(icfg, cx_inverse_in, cx_out_real);

c++/SRP/Release/SRP.iobj

-18.2 KB
Binary file not shown.

c++/SRP/Release/SRP.ipdb

-4.78 KB
Binary file not shown.

c++/SRP/main.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ int main()
2525
{
2626
Wav wav;
2727

28-
const char *mic1 = "../../TestAudio/respeaker/mic1-4/2.wav";
29-
const char *mic2 = "../../TestAudio/respeaker/mic1-4/3.wav";
30-
const char *mic3 = "../../TestAudio/respeaker/mic1-4/4.wav";
31-
const char *mic4 = "../../TestAudio/respeaker/mic1-4/5.wav";
28+
const char *mic1 = "../../TestAudio/respeaker/mic1-4_2/2.wav";
29+
const char *mic2 = "../../TestAudio/respeaker/mic1-4_2/3.wav";
30+
const char *mic3 = "../../TestAudio/respeaker/mic1-4_2/4.wav";
31+
const char *mic4 = "../../TestAudio/respeaker/mic1-4_2/5.wav";
3232

3333

3434
float *data[Nele];
@@ -75,7 +75,7 @@ int main()
7575

7676
}
7777

78-
Write_File<int>(E, 360, "E2.txt");
78+
//Write_File<int>(E, 360, "E2.txt");
7979

8080
sort_result result = BubbleSort(E, 360);
8181

matlab/SRP-PHAT/SRP_PHAT_URA.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
d = 0.0457;
1111
%%
1212
% more test audio file in ../../TestAudio/ folder
13-
path = '../../TestAudio/respeaker/mic1-4/';
13+
path = '../../TestAudio/respeaker/mic1-4_2/';
1414
[s1,fs] = audioread([path,'Òô¹ì-2.wav']);
1515
s5 = audioread([path,'Òô¹ì-3.wav']);
1616
s4 = audioread([path,'Òô¹ì-4.wav']);

0 commit comments

Comments
 (0)