Comment remaining unsolved bug.
[ardour.git] / libs / backends / wavesaudio / waves_audioport.h
index e377760fc439949c49d0c13dab43ae03bf514d91..aebcaf6ce5661ebfc8419cb6dbe9b3ac50077247 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013 Paul Davis
+    Copyright (C) 2013 Waves Audio Ltd.
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
 
 #include "memory.h"
 #include "waves_dataport.h"
-        
+
 namespace ARDOUR {
 
 class WavesAudioPort : public WavesDataPort {
@@ -35,7 +35,7 @@ public:
 
     WavesAudioPort (const std::string& port_name, PortFlags flags);
 
-    virtual ~WavesAudioPort () { };
+    virtual ~WavesAudioPort ();
 
     virtual DataType type () const {    return DataType::AUDIO; };
 
@@ -49,10 +49,10 @@ protected:
 
 private:
 
-    Sample _buffer[MAX_BUFFER_SIZE_SAMPLES];
+    Sample *_buffer;
 };
 
 } // namespace
 
 #endif /* __libardour_waves_audioport_h__ */
-    
+