Mercurial > hg > qm-dsp
comparison dsp/signalconditioning/Filter.cpp @ 434:7461bf03194e
Some MSVC fixes, including (temporarily, probably) renaming the FFT source file to avoid getting it mixed up with the Vamp SDK one in our object dir
| author | Chris Cannam <c.cannam@qmul.ac.uk> | 
|---|---|
| date | Thu, 01 Feb 2018 16:34:08 +0000 | 
| parents | fa851e147e3f | 
| children | fdaa63607c15 | 
   comparison
  equal
  deleted
  inserted
  replaced
| 433:ecc92deb4c0b | 434:7461bf03194e | 
|---|---|
| 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; | 
