update qm-dsp library
[ardour.git] / libs / qm-dsp / dsp / segmentation / Segmenter.h
index fd2f39b85023a1ac490f94708b24282ee0044c13..1ac0679b729587afb386faf87efa47b8362ab635 100644 (file)
@@ -35,7 +35,7 @@ class Segmentation
 public:
        int nsegtypes;          // number of segment types, so possible types are {0,1,...,nsegtypes-1}
        int samplerate;
-       vector<Segment> segments;
+       vector<Segment> segments;       
 };
 
 ostream& operator<<(ostream& os, const Segmentation& s);
@@ -52,7 +52,7 @@ public:
        virtual void segment() = 0;                                             // call once all the features have been extracted
        virtual void segment(int m) = 0;                                // specify desired number of segment-types
        virtual void clear() { features.clear(); }
-       const Segmentation& getSegmentation() const { return segmentation; }
+       const Segmentation& getSegmentation() const { return segmentation; } 
 protected:
        vector<vector<double> > features;
        Segmentation segmentation;