more stuff compiles
[ardour.git] / libs / ardour / ardour / audio_port.h
index 874f842d835e9a346080468b7df58a3387d581bb..f5affb0580af91eed66722cb471b196e3146b52d 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2002 Paul Davis 
+    Copyright (C) 2002-2009 Paul Davis
 
     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
 #ifndef __ardour_audio_port_h__
 #define __ardour_audio_port_h__
 
-#include <ardour/base_audio_port.h>
+#include "ardour/port.h"
+#include "ardour/audio_buffer.h"
 
 namespace ARDOUR {
 
-class AudioPort : public BaseAudioPort, public PortFacade {
-
+class AudioPort : public Port
+{
    public:
-       ~AudioPort();
+       ~AudioPort ();
+
+       DataType type () const {
+               return DataType::AUDIO;
+       }
+
+       void cycle_start (pframes_t);
+       void cycle_end (pframes_t);
+       void cycle_split ();
+
+       Buffer& get_buffer (pframes_t nframes) {
+               return get_audio_buffer (nframes);
+       }
 
-       void reset ();
+       AudioBuffer& get_audio_buffer (pframes_t nframes);
+
+  protected:
+       friend class PortManager;
+       AudioPort (std::string const &, PortFlags);
 
-       void cycle_start (nframes_t nframes, nframes_t offset);
-       void cycle_end (nframes_t nframes, nframes_t offset);
-       
   protected:
        friend class AudioEngine;
+        /* special access for engine only (hah, C++) */
+        Sample* engine_get_whole_audio_buffer ();
 
-       AudioPort (const std::string&, Flags, bool external, nframes_t); 
+  private:
+       AudioBuffer* _buffer;
+        bool         _buf_valid; 
 };
+
 } // namespace ARDOUR
 
 #endif /* __ardour_audio_port_h__ */