Fix uninitialised variable and remove bind of shared_ptr to a slot.
[ardour.git] / libs / ardour / ardour / audio_port.h
index b928a3587da4a0f230b5de2edea0f5d16db28bf6..0c08795819099b3000b2f17a061167357f83a277 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2002-2009 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
 
 namespace ARDOUR {
 
-class AudioPort : public Port 
+class AudioPort : public Port
 {
    public:
        ~AudioPort ();
-       
+
        DataType type () const {
                return DataType::AUDIO;
        }
-       
-       void cycle_start (nframes_t, nframes_t);
-       void cycle_end (nframes_t, nframes_t);
 
-       Buffer& get_buffer (nframes_t nframes, nframes_t offset) {
+       void cycle_start (nframes_t);
+       void cycle_end (nframes_t);
+       void cycle_split ();
+
+       size_t raw_buffer_size(jack_nframes_t nframes) const;
+
+       Buffer& get_buffer (nframes_t nframes, nframes_t offset = 0) {
                return get_audio_buffer (nframes, offset);
        }
-       
-       AudioBuffer& get_audio_buffer (nframes_t, nframes_t);
+
+       AudioBuffer& get_audio_buffer (nframes_t nframes, nframes_t offset = 0);
 
   protected:
        friend class AudioEngine;
 
        AudioPort (std::string const &, Flags);
-  
+
   private:
-       bool _buffer_data_set;
        AudioBuffer* _buffer;
+
 };
+
 } // namespace ARDOUR
 
 #endif /* __ardour_audio_port_h__ */