Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Institute of Technical Acoustics (ITA)
ITACTC
Commits
8a43d8bc
Commit
8a43d8bc
authored
Aug 26, 2016
by
Jonas Stienen
Browse files
Adding optimization enum (empty, only no_opt, for later use)
parent
b23c87dd
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/ITANCTC.h
View file @
8a43d8bc
...
...
@@ -109,6 +109,10 @@ public:
{
public:
enum
{
OPTIMIZATION_NONE
=
0
,
//!< No optimization in filter design
};
int
N
;
//!< Number of loudspeakers
int
iCTCFilterLength
;
//!< CTC filter taps, i.e. 4096
...
...
src/ITANCTC.cpp
View file @
8a43d8bc
...
...
@@ -159,7 +159,7 @@ bool ITANCTC::CalculateFilter( std::vector< ITAHDFTSpectra* >& vpCTCFilter )
switch
(
m_iOptimization
)
{
// Here comes more if ready ... see feature/room_compensation branch
case
0
:
case
Config
::
OPTIMIZATION_NONE
:
default:
if
(
AddHRIR
(
GetLoudspeakerPose
(
n
+
1
),
m_sfCTC_temp
,
bOutOfRange
)
==
false
)
return
false
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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