Optimize automation-event process splitting
[ardour.git] / libs / ardour / ardour / audio_port.h
index 1d107dfe73b59c1e1529c408aecc8dd6305e8740..4f106c5593000328f8f34e2bb5c1e328da5972e5 100644 (file)
 #ifndef __ardour_audio_port_h__
 #define __ardour_audio_port_h__
 
+#include "zita-resampler/vmresampler.h"
+
 #include "ardour/port.h"
 #include "ardour/audio_buffer.h"
 
 namespace ARDOUR {
 
-class AudioPort : public Port
+class LIBARDOUR_API AudioPort : public Port
 {
-   public:
+public:
        ~AudioPort ();
 
        DataType type () const {
@@ -39,21 +41,24 @@ class AudioPort : public Port
        void cycle_end (pframes_t);
        void cycle_split ();
 
-       size_t raw_buffer_size (pframes_t nframes) const;
-
        Buffer& get_buffer (pframes_t nframes) {
                return get_audio_buffer (nframes);
        }
 
        AudioBuffer& get_audio_buffer (pframes_t nframes);
 
-  protected:
-       friend class AudioEngine;
+protected:
+       friend class PortManager;
+       AudioPort (std::string const &, PortFlags);
 
-       AudioPort (std::string const &, Flags);
+       /* special access for PortManager only (hah, C++) */
+       Sample* engine_get_whole_audio_buffer ();
 
-  private:
-       AudioBuffer* _buffer;
+private:
+       AudioBuffer*            _buffer;
+       ArdourZita::VMResampler _src;
+       Sample*                 _data;
+       bool                    _buf_valid;
 };
 
 } // namespace ARDOUR