Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
ITABase
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Institute of Technical Acoustics (ITA)
ITABase
Commits
2801056f
Commit
2801056f
authored
Aug 25, 2017
by
Dipl.-Ing. Jonas Stienen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing warning
parent
683aa0ca
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
src/ITAHDFTSpectrum.cpp
src/ITAHDFTSpectrum.cpp
+0
-3
No files found.
src/ITAHDFTSpectrum.cpp
View file @
2801056f
...
@@ -21,7 +21,6 @@ ITAHDFTSpectrum::ITAHDFTSpectrum( const float fSampleRate, const int iDFTSize, c
...
@@ -21,7 +21,6 @@ ITAHDFTSpectrum::ITAHDFTSpectrum( const float fSampleRate, const int iDFTSize, c
:
m_iSize
(
-
1
)
:
m_iSize
(
-
1
)
,
m_iDFTSize
(
iDFTSize
)
,
m_iDFTSize
(
iDFTSize
)
,
m_fSampleRate
(
fSampleRate
)
,
m_fSampleRate
(
fSampleRate
)
,
m_vfData
(
NULL
)
{
{
SetSampleRate
(
fSampleRate
);
SetSampleRate
(
fSampleRate
);
Init
(
iDFTSize
,
bZeroInit
);
// sets size and resolution
Init
(
iDFTSize
,
bZeroInit
);
// sets size and resolution
...
@@ -31,7 +30,6 @@ ITAHDFTSpectrum::ITAHDFTSpectrum( const ITAHDFTSpectrum* pSource )
...
@@ -31,7 +30,6 @@ ITAHDFTSpectrum::ITAHDFTSpectrum( const ITAHDFTSpectrum* pSource )
:
m_iSize
(
0
)
:
m_iSize
(
0
)
,
m_iDFTSize
(
0
)
,
m_iDFTSize
(
0
)
,
m_fSampleRate
(
0
)
,
m_fSampleRate
(
0
)
,
m_vfData
(
NULL
)
{
{
Init
(
pSource
->
GetDFTSize
()
);
Init
(
pSource
->
GetDFTSize
()
);
SetSampleRate
(
pSource
->
GetSampleRate
()
);
SetSampleRate
(
pSource
->
GetSampleRate
()
);
...
@@ -42,7 +40,6 @@ ITAHDFTSpectrum::ITAHDFTSpectrum( const ITAHDFTSpectrum& oSource )
...
@@ -42,7 +40,6 @@ ITAHDFTSpectrum::ITAHDFTSpectrum( const ITAHDFTSpectrum& oSource )
:
m_iSize
(
0
)
:
m_iSize
(
0
)
,
m_iDFTSize
(
0
)
,
m_iDFTSize
(
0
)
,
m_fSampleRate
(
0
)
,
m_fSampleRate
(
0
)
,
m_vfData
(
NULL
)
{
{
Init
(
oSource
.
GetDFTSize
()
);
Init
(
oSource
.
GetDFTSize
()
);
SetSampleRate
(
oSource
.
GetSampleRate
()
);
SetSampleRate
(
oSource
.
GetSampleRate
()
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment