mega-commit to save state of first "it compilesand links" state for separated disk...
[ardour.git] / libs / ardour / ardour / strip_silence.h
index ff1d1b7f17c4c652b289a149a429ac87d821a99c..59f4ea0a572ce9bfc74efd7677ed199b4dc21592 100644 (file)
@@ -22,7 +22,7 @@
 namespace ARDOUR {
 
 /// A filter to strip silence from regions
-class StripSilence : public Filter 
+class LIBARDOUR_API StripSilence : public Filter
 {
   public:
        StripSilence (Session &, const AudioIntervalMap&, framecnt_t fade_length);
@@ -30,7 +30,7 @@ class StripSilence : public Filter
        int run (boost::shared_ptr<ARDOUR::Region>, Progress* progress = 0);
 
 private:
-        AudioIntervalMap _smap;
+       const AudioIntervalMap& _smap;
        framecnt_t _fade_length; ///< fade in/out to use on trimmed regions, in samples
 };