SpectMorph
smpolyphaseinter.hh
1 // Licensed GNU LGPL v3 or later: http://www.gnu.org/licenses/lgpl.html
2 
3 #ifndef SPECTMORPH_POLY_PHASE_INTER_HH
4 #define SPECTMORPH_POLY_PHASE_INTER_HH
5 
6 #include <vector>
7 
8 namespace SpectMorph
9 {
10 
12 {
14  ~PolyPhaseInter() {}
15 
16  int filter_center;
17 
18  std::vector<double> x;
19 
20 public:
21  static PolyPhaseInter *the();
22 
23  double get_sample (const std::vector<float>& signal, double pos);
24 };
25 
26 };
27 
28 #endif
Definition: smpolyphaseinter.hh:11
Definition: smaudio.hh:15