summaryrefslogtreecommitdiff
path: root/src/signalProcessing/ifft
diff options
context:
space:
mode:
Diffstat (limited to 'src/signalProcessing/ifft')
-rw-r--r--src/signalProcessing/ifft/testDoubleIfft.c2
-rw-r--r--src/signalProcessing/ifft/testFloatIfft.c1
-rw-r--r--src/signalProcessing/ifft/testMatIfft.c12
-rw-r--r--src/signalProcessing/ifft/test_DoubleIfft/testDoubleIfft.vcproj24
-rw-r--r--src/signalProcessing/ifft/test_FloatIfft/testFloatIfft.vcproj24
-rw-r--r--src/signalProcessing/ifft/test_MatIfft/testMatIfft.vcproj24
6 files changed, 80 insertions, 7 deletions
diff --git a/src/signalProcessing/ifft/testDoubleIfft.c b/src/signalProcessing/ifft/testDoubleIfft.c
index 315e6f58..de626fbb 100644
--- a/src/signalProcessing/ifft/testDoubleIfft.c
+++ b/src/signalProcessing/ifft/testDoubleIfft.c
@@ -9,7 +9,7 @@
* http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
*
*/
-
+#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
#include <math.h>
diff --git a/src/signalProcessing/ifft/testFloatIfft.c b/src/signalProcessing/ifft/testFloatIfft.c
index e00d5432..a4424465 100644
--- a/src/signalProcessing/ifft/testFloatIfft.c
+++ b/src/signalProcessing/ifft/testFloatIfft.c
@@ -11,6 +11,7 @@
*
*/
+#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
#include <math.h>
diff --git a/src/signalProcessing/ifft/testMatIfft.c b/src/signalProcessing/ifft/testMatIfft.c
index 33aee9be..2d43267f 100644
--- a/src/signalProcessing/ifft/testMatIfft.c
+++ b/src/signalProcessing/ifft/testMatIfft.c
@@ -198,12 +198,12 @@ static void zifftmaTest(void){
doubleComplex *in1, *in2, *in3, *in4, *in6, *in9, out1[12], out2[12], out3[12], out4[12], out6[12], out9[12];
- in1=malloc((uint)12*sizeof(doubleComplex));
- in2=malloc((uint)12*sizeof(doubleComplex));
- in3=malloc((uint)12*sizeof(doubleComplex));
- in4=malloc((uint)12*sizeof(doubleComplex));
- in6=malloc((uint)12*sizeof(doubleComplex));
- in9=malloc((uint)9*sizeof(doubleComplex));
+ in1=(doubleComplex *)malloc((unsigned int)12*sizeof(doubleComplex));
+ in2=(doubleComplex *)malloc((unsigned int)12*sizeof(doubleComplex));
+ in3=(doubleComplex *)malloc((unsigned int)12*sizeof(doubleComplex));
+ in4=(doubleComplex *)malloc((unsigned int)12*sizeof(doubleComplex));
+ in6=(doubleComplex *)malloc((unsigned int)12*sizeof(doubleComplex));
+ in9=(doubleComplex *)malloc((unsigned int)9*sizeof(doubleComplex));
diff --git a/src/signalProcessing/ifft/test_DoubleIfft/testDoubleIfft.vcproj b/src/signalProcessing/ifft/test_DoubleIfft/testDoubleIfft.vcproj
index 9e70996b..c1022a84 100644
--- a/src/signalProcessing/ifft/test_DoubleIfft/testDoubleIfft.vcproj
+++ b/src/signalProcessing/ifft/test_DoubleIfft/testDoubleIfft.vcproj
@@ -41,6 +41,7 @@
<Tool
Name="VCCLCompilerTool"
Optimization="0"
+ AdditionalIncludeDirectories="../../../includes;../../../type;../../includes;../../../operations/includes"
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
MinimalRebuild="true"
BasicRuntimeChecks="3"
@@ -60,6 +61,7 @@
/>
<Tool
Name="VCLinkerTool"
+ OutputFile="$(SolutionDir)bin\$(ProjectName).exe"
LinkIncremental="2"
GenerateDebugInformation="true"
SubSystem="1"
@@ -114,6 +116,7 @@
Name="VCCLCompilerTool"
Optimization="2"
EnableIntrinsicFunctions="true"
+ AdditionalIncludeDirectories="../../../includes;../../../type;../../includes;../../../operations/includes"
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
@@ -132,6 +135,7 @@
/>
<Tool
Name="VCLinkerTool"
+ OutputFile="$(SolutionDir)bin\$(ProjectName).exe"
LinkIncremental="1"
GenerateDebugInformation="true"
SubSystem="1"
@@ -170,6 +174,26 @@
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
+ <File
+ RelativePath="..\testDoubleIfft.c"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ CompileAs="2"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ CompileAs="2"
+ />
+ </FileConfiguration>
+ </File>
</Filter>
<Filter
Name="Header Files"
diff --git a/src/signalProcessing/ifft/test_FloatIfft/testFloatIfft.vcproj b/src/signalProcessing/ifft/test_FloatIfft/testFloatIfft.vcproj
index 3e036a25..bc9e1f49 100644
--- a/src/signalProcessing/ifft/test_FloatIfft/testFloatIfft.vcproj
+++ b/src/signalProcessing/ifft/test_FloatIfft/testFloatIfft.vcproj
@@ -41,6 +41,7 @@
<Tool
Name="VCCLCompilerTool"
Optimization="0"
+ AdditionalIncludeDirectories="../../../includes;../../../type;../../includes;../../../operations/includes"
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
MinimalRebuild="true"
BasicRuntimeChecks="3"
@@ -60,6 +61,7 @@
/>
<Tool
Name="VCLinkerTool"
+ OutputFile="$(SolutionDir)bin\$(ProjectName).exe"
LinkIncremental="2"
GenerateDebugInformation="true"
SubSystem="1"
@@ -114,6 +116,7 @@
Name="VCCLCompilerTool"
Optimization="2"
EnableIntrinsicFunctions="true"
+ AdditionalIncludeDirectories="../../../includes;../../../type;../../includes;../../../operations/includes"
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
@@ -132,6 +135,7 @@
/>
<Tool
Name="VCLinkerTool"
+ OutputFile="$(SolutionDir)bin\$(ProjectName).exe"
LinkIncremental="1"
GenerateDebugInformation="true"
SubSystem="1"
@@ -170,6 +174,26 @@
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
+ <File
+ RelativePath="..\testFloatIfft.c"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ CompileAs="2"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ CompileAs="2"
+ />
+ </FileConfiguration>
+ </File>
</Filter>
<Filter
Name="Header Files"
diff --git a/src/signalProcessing/ifft/test_MatIfft/testMatIfft.vcproj b/src/signalProcessing/ifft/test_MatIfft/testMatIfft.vcproj
index d844d6dd..9bf0fbd8 100644
--- a/src/signalProcessing/ifft/test_MatIfft/testMatIfft.vcproj
+++ b/src/signalProcessing/ifft/test_MatIfft/testMatIfft.vcproj
@@ -41,6 +41,7 @@
<Tool
Name="VCCLCompilerTool"
Optimization="0"
+ AdditionalIncludeDirectories="../../../includes;../../../type;../../includes;../../../operations/includes"
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
MinimalRebuild="true"
BasicRuntimeChecks="3"
@@ -60,6 +61,7 @@
/>
<Tool
Name="VCLinkerTool"
+ OutputFile="$(SolutionDir)bin\$(ProjectName).exe"
LinkIncremental="2"
GenerateDebugInformation="true"
SubSystem="1"
@@ -114,6 +116,7 @@
Name="VCCLCompilerTool"
Optimization="2"
EnableIntrinsicFunctions="true"
+ AdditionalIncludeDirectories="../../../includes;../../../type;../../includes;../../../operations/includes"
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"
@@ -132,6 +135,7 @@
/>
<Tool
Name="VCLinkerTool"
+ OutputFile="$(SolutionDir)bin\$(ProjectName).exe"
LinkIncremental="1"
GenerateDebugInformation="true"
SubSystem="1"
@@ -170,6 +174,26 @@
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
+ <File
+ RelativePath="..\testMatIfft.c"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ CompileAs="2"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ CompileAs="2"
+ />
+ </FileConfiguration>
+ </File>
</Filter>
<Filter
Name="Header Files"