summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcah <cah@ableton.com>2022-01-12 20:55:54 +0100
committercah <cah@ableton.com>2022-01-12 20:55:54 +0100
commita3c16b5598096563589b88099fa9443175456dba (patch)
tree00715b838c2aa6dda975b1b467fe51f933054804 /src
parent93ae9e6e4319a792cbfe5302dddc1b7781c55c76 (diff)
Remove unused variable.
Diffstat (limited to 'src')
-rw-r--r--src/leqm_nrt.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/leqm_nrt.cc b/src/leqm_nrt.cc
index 43c9a81..f0f3d63 100644
--- a/src/leqm_nrt.cc
+++ b/src/leqm_nrt.cc
@@ -57,11 +57,10 @@ namespace leqm_nrt {
class Worker
{
public:
- Worker(std::vector<double> buffer, int nsamples, int nch, int npoints, std::vector<double> const& ir, Sum* sum, std::vector<double> chconf)
+ Worker(std::vector<double> buffer, int nsamples, int nch, std::vector<double> const& ir, Sum* sum, std::vector<double> chconf)
: _buffer(buffer)
, _nsamples(nsamples)
, _nch(nch)
- , _npoints(npoints)
, _ir(ir)
, _sum(sum)
, _chconf(chconf)
@@ -157,7 +156,6 @@ private:
std::vector<double> _buffer;
int _nsamples;
int _nch;
- int _npoints;
std::vector<double> const& _ir;
Sum* _sum;
std::vector<double> _chconf;
@@ -383,7 +381,6 @@ void Calculator::process_buffer()
_buffer,
_buffer_free_offset,
_channels,
- _number_of_filter_interpolation_points,
_ir,
&_sum,
_channel_corrections