mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-02-23 04:43:58 +01:00
Fixed missing semicolon
This commit is contained in:
parent
a9cb6bfe79
commit
4b0516966d
@ -195,7 +195,7 @@ namespace dsp {
|
|||||||
for (int i = 0; i < toProcess; i++) {
|
for (int i = 0; i < toProcess; i++) {
|
||||||
level = 1e-4;
|
level = 1e-4;
|
||||||
for (int j = 0; j < sampleCount; j++) {
|
for (int j = 0; j < sampleCount; j++) {
|
||||||
val = fabsf(buffer[i + j])
|
val = fabsf(buffer[i + j]);
|
||||||
if (val > level) { level = val; }
|
if (val > level) { level = val; }
|
||||||
}
|
}
|
||||||
out.writeBuf[i] = buffer[i] / level;
|
out.writeBuf[i] = buffer[i] / level;
|
||||||
|
@ -33,6 +33,8 @@ cp build/file_source/Release/file_source.dll sdrpp_windows_x64/modules/
|
|||||||
|
|
||||||
cp build/sdrplay_source/Release/sdrplay_source.dll sdrpp_windows_x64/modules/
|
cp build/sdrplay_source/Release/sdrplay_source.dll sdrpp_windows_x64/modules/
|
||||||
|
|
||||||
|
cp build/meteor_demodulator/Release/meteor_demodulator.dll sdrpp_windows_x64/modules/
|
||||||
|
|
||||||
cp build/audio_sink/Release/audio_sink.dll sdrpp_windows_x64/modules/
|
cp build/audio_sink/Release/audio_sink.dll sdrpp_windows_x64/modules/
|
||||||
cp "C:/Program Files (x86)/RtAudio/bin/rtaudio.dll" sdrpp_windows_x64/
|
cp "C:/Program Files (x86)/RtAudio/bin/rtaudio.dll" sdrpp_windows_x64/
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user