Mercurial > hg > qm-dsp
comparison dsp/signalconditioning/Filter.cpp @ 441:3994516c1199
Merge from branch msvc
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 08 Feb 2018 15:41:27 +0000 |
parents | 7461bf03194e |
children | fdaa63607c15 |
comparison
equal
deleted
inserted
replaced
432:624ddb622a5d | 441:3994516c1199 |
---|---|
72 | 72 |
73 m_bufb.assign(m_bufb.size(), 0.0); | 73 m_bufb.assign(m_bufb.size(), 0.0); |
74 } | 74 } |
75 | 75 |
76 void | 76 void |
77 Filter::process(const double *const __restrict__ in, | 77 Filter::process(const double *const QM_R__ in, |
78 double *const __restrict__ out, | 78 double *const QM_R__ out, |
79 const int n) | 79 const int n) |
80 { | 80 { |
81 for (int s = 0; s < n; ++s) { | 81 for (int s = 0; s < n; ++s) { |
82 | 82 |
83 if (m_offb > 0) --m_offb; | 83 if (m_offb > 0) --m_offb; |